/aosp_15_r20/art/tools/ahat/src/main/com/android/ahat/heapdump/ |
H A D | DiffedFieldValue.java | 60 ADDED, enumConstant 96 return new DiffedFieldValue(current.name, current.type, current.value, null, Status.ADDED); in added() 137 case ADDED: in toString()
|
/aosp_15_r20/external/python/google-api-python-client/scripts/ |
D | changesummary.py | 44 ADDED = 2 variable in ChangeType 272 np.where(added_condition, ChangeType.ADDED, ChangeType.CHANGED), 372 dataframe["ChangeType"] == ChangeType.ADDED 481 elif currentType == ChangeType.ADDED:
|
D | changesummary_test.py | 108 df[df["Key"] == "schemas.FileList"].ChangeType.iloc[0], ChangeType.ADDED 150 self.assertEqual(len(df[df["ChangeType"] == ChangeType.ADDED]), 1)
|
/aosp_15_r20/development/tools/winscope/src/viewers/common/ |
H A D | properties_presenter_test.ts | 81 expect(getDiff(formattedTree, 'setProp')).toEqual(DiffType.ADDED); 82 expect(getDiff(formattedTree, 'otherProp')).toEqual(DiffType.ADDED); 87 expect(getDiff(formattedTree, 'otherProp')).toEqual(DiffType.ADDED);
|
H A D | diff_type.ts | 19 ADDED = 'added', enumerator
|
H A D | add_diffs_test_utils.ts | 59 expectedChild.setDiff(DiffType.ADDED);
|
/aosp_15_r20/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
D | DefaultPackageStatusNotifier.java | 99 mListener.onPackageChanged(packageName, PackageStatus.ADDED); in onPackageAdded() 116 replacing ? PackageStatus.CHANGED : PackageStatus.ADDED); in onPackagesAvailable() 144 mListener.onPackageChanged(packageName, PackageStatus.ADDED); in onPackagesUnsuspended()
|
D | PackageStatusNotifier.java | 31 PackageStatus.ADDED, 36 int ADDED = 1; field
|
/aosp_15_r20/external/sdk-platform-java/java-common-protos/proto-google-common-protos/src/main/proto/google/api/ |
H A D | config_change.proto | 44 // in JSON format. This field will not be populated if ChangeType == ADDED. 51 // The type for this change, either ADDED, REMOVED, or MODIFIED. 75 ADDED = 1; enumerator
|
/aosp_15_r20/external/googleapis/google/api/ |
H A D | config_change.proto | 44 // in JSON format. This field will not be populated if ChangeType == ADDED. 51 // The type for this change, either ADDED, REMOVED, or MODIFIED. 75 ADDED = 1; enumerator
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-cppstream-protos/gen/gensrcs/frameworks/base/core/proto/android/view/ |
D | viewrootimpl.proto.h | 37 const uint64_t ADDED = 0x0000010800000009LL; variable 92 ADDED,
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-cppstream-protos/gen/5/frameworks/base/core/proto/android/view/ |
D | viewrootimpl.proto.h | 37 const uint64_t ADDED = 0x0000010800000009LL; variable 92 ADDED,
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-cppstream-protos/gen/gensrcs/frameworks/base/core/proto/android/os/ |
D | cpu_usage.proto.h | 49 const uint64_t ADDED = 0x0000010800000004LL; variable 90 ADDED,
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-cppstream-protos/gen/3/frameworks/base/core/proto/android/os/ |
D | cpu_usage.proto.h | 49 const uint64_t ADDED = 0x0000010800000004LL; variable 90 ADDED,
|
/aosp_15_r20/external/sdk-platform-java/java-common-protos/proto-google-common-protos/src/main/java/com/google/api/ |
H A D | ChangeType.java | 52 ADDED(1), enumConstant 149 return ADDED; in forNumber()
|
/aosp_15_r20/external/truth/extensions/proto/src/main/java/com/google/common/truth/extensions/proto/ |
H A D | RecursableDiffEntity.java | 171 ADDED, enumConstant 212 setIf(condition, Result.ADDED); in markAddedIf()
|
/aosp_15_r20/libcore/tools/upstream/ |
H A D | pkg-status | 95 ADDED = 'Added' variable in MergeStatus 227 (self.check_for_added_upstream, MergeStatus.ADDED), 235 MergeStatus.ADDED: self.calculate_added_work_status,
|
/aosp_15_r20/packages/modules/Bluetooth/system/bta/le_audio/ |
D | le_audio_client_test.cc | 1823 OnGroupNodeStatus(addr, group_id, GroupNodeStatus::ADDED)) in ConnectCsisDevice() 4488 OnGroupNodeStatus(test_address1, _, GroupNodeStatus::ADDED)) in TEST_F() 4530 OnGroupNodeStatus(test_address0, _, GroupNodeStatus::ADDED)) in TEST_F() 4594 OnGroupNodeStatus(test_address0, _, GroupNodeStatus::ADDED)) in TEST_F() 4660 OnGroupNodeStatus(test_address0, _, GroupNodeStatus::ADDED)) in TEST_F() 4730 OnGroupNodeStatus(test_address0, _, GroupNodeStatus::ADDED)) in TEST_F() 4781 OnGroupNodeStatus(test_address0, _, GroupNodeStatus::ADDED)) in TEST_F() 4831 OnGroupNodeStatus(test_address0, _, GroupNodeStatus::ADDED)) in TEST_F() 4879 OnGroupNodeStatus(test_address0, _, GroupNodeStatus::ADDED)) in TEST_F() 4927 OnGroupNodeStatus(test_address0, _, GroupNodeStatus::ADDED)) in TEST_F() [all …]
|
/aosp_15_r20/development/tools/winscope/src/viewers/components/ |
H A D | tree_node_component_test.ts | 134 component.node.getChildByName('Child 1')?.setDiff(DiffType.ADDED); 148 child1.setDiff(DiffType.ADDED);
|
/aosp_15_r20/frameworks/base/core/java/android/service/notification/ |
H A D | ZenModeDiff.java | 50 ADDED, 57 public static final int ADDED = 1; field in ZenModeDiff 164 mExists = ADDED; in BaseDiff() 190 return mExists == ADDED; in wasAdded()
|
/aosp_15_r20/art/tools/ahat/src/test/com/android/ahat/ |
H A D | DiffFieldsTest.java | 84 assertEquals(DiffedFieldValue.Status.ADDED, x.status); in normalAddedDiffedFieldValues() 95 assertEquals(DiffedFieldValue.Status.ADDED, x.status); in nulledAddedDiffedFieldValues()
|
/aosp_15_r20/frameworks/layoutlib/bridge/bridge_client/src/com/android/ide/common/resources/deprecated/ |
H A D | ResourceDeltaKind.java | 25 CHANGED, ADDED, REMOVED enumConstant
|
/aosp_15_r20/platform_testing/libraries/screenshot/deviceless/layoutlib/tests/src/com/android/ide/common/resources/deprecated/ |
H A D | ResourceDeltaKind.java | 25 CHANGED, ADDED, REMOVED enumConstant
|
/aosp_15_r20/external/google-cloud-java/java-securitycenter/proto-google-cloud-securitycenter-v1p1beta1/src/main/proto/google/cloud/securitycenter/v1p1beta1/ |
H A D | securitycenter_service.proto | 563 // * "ADDED": indicates that the asset was not present at the start of 723 // * "ADDED": indicates that the finding did not match the given filter or 956 // * "ADDED": indicates that the asset was not present at the start of 991 // the change between the two points: ADDED, REMOVED, or ACTIVE. 999 ADDED = 1; enumerator 1143 // * "ADDED": indicates that the finding did not match the given filter or 1202 // ADDED, or REMOVED. Findings can not be deleted, so REMOVED implies that 1219 ADDED = 3; enumerator
|
/aosp_15_r20/external/googleapis/google/cloud/securitycenter/v1p1beta1/ |
H A D | securitycenter_service.proto | 563 // * "ADDED": indicates that the asset was not present at the start of 723 // * "ADDED": indicates that the finding did not match the given filter or 956 // * "ADDED": indicates that the asset was not present at the start of 991 // the change between the two points: ADDED, REMOVED, or ACTIVE. 999 ADDED = 1; enumerator 1143 // * "ADDED": indicates that the finding did not match the given filter or 1202 // ADDED, or REMOVED. Findings can not be deleted, so REMOVED implies that 1219 ADDED = 3; enumerator
|