Searched refs:matched (Results 1 – 10 of 10) sorted by relevance
/art/tools/ahat/src/test/com/android/ahat/ |
D | DiffFieldsTest.java | 48 DiffedFieldValue x = DiffedFieldValue.matched(normal1, normal2); in normalMatchedDiffedFieldValues() 61 DiffedFieldValue x = DiffedFieldValue.matched(normal, nulled); in nulledMatchedDiffedFieldValues() 68 DiffedFieldValue y = DiffedFieldValue.matched(nulled, normal); in nulledMatchedDiffedFieldValues() 144 expected.add(DiffedFieldValue.matched(a.get(0), b.get(0))); in basicDiff() 146 expected.add(DiffedFieldValue.matched(a.get(1), b.get(2))); in basicDiff() 147 expected.add(DiffedFieldValue.matched(a.get(2), b.get(3))); in basicDiff() 149 expected.add(DiffedFieldValue.matched(a.get(4), b.get(4))); in basicDiff() 150 expected.add(DiffedFieldValue.matched(a.get(5), b.get(5))); in basicDiff() 182 expected.add(DiffedFieldValue.matched(a.get(0), b.get(3))); in reorderedDiff() 183 expected.add(DiffedFieldValue.matched(a.get(1), b.get(1))); in reorderedDiff() [all …]
|
/art/tools/checker/ |
D | README | 20 later than lines matched against any preceding checks. Output 24 later than lines matched against any preceding in-order checks. 28 later than lines matched against any preceding checks and 29 earlier than lines matched against any subsequent checks. 33 matched the previous check. Can only be used after a CHECK or
|
/art/tools/ahat/src/main/com/android/ahat/heapdump/ |
D | DiffedFieldValue.java | 81 public static DiffedFieldValue matched(FieldValue current, FieldValue baseline) { in matched() method in DiffedFieldValue
|
D | DiffFields.java | 63 diffed.add(DiffedFieldValue.matched(currentField, baselineField)); in diff()
|
/art/libprofile/profile/ |
D | profile_compilation_info_test.cc | 959 bool matched = false; in TEST_F() local 960 ASSERT_TRUE(info.UpdateProfileKeys(dex_files, &matched)); in TEST_F() 961 ASSERT_TRUE(matched); in TEST_F() 987 bool matched = false; in TEST_F() local 988 ASSERT_TRUE(info.UpdateProfileKeys(dex_files, &matched)); in TEST_F() 989 ASSERT_TRUE(matched); in TEST_F() 1013 bool matched = false; in TEST_F() local 1014 ASSERT_TRUE(info.UpdateProfileKeys(dex_files, &matched)); in TEST_F() 1015 ASSERT_TRUE(matched); in TEST_F() 1042 bool matched = false; in TEST_F() local [all …]
|
D | profile_compilation_info.cc | 2515 const std::vector<std::unique_ptr<const DexFile>>& dex_files, /*out*/ bool* matched) { in UpdateProfileKeys() argument 2522 *matched = false; in UpdateProfileKeys() 2527 *matched = true; in UpdateProfileKeys() 2551 *matched = false; in UpdateProfileKeys()
|
D | profile_compilation_info.h | 654 /*out*/ bool* matched);
|
/art/cmdline/ |
D | cmdline_parser.h | 628 bool matched = false; // At least one argument definition has been matched? in Parse() local 638 matched = true; in Parse() 644 if (matched == false) { in Parse()
|
/art/profman/ |
D | profman.cc | 1927 bool matched = false; in CopyAndUpdateProfileKey() local 1928 if (!profile.UpdateProfileKeys(dex_files, &matched)) { in CopyAndUpdateProfileKey() 1937 return matched ? ProfmanResult::kCopyAndUpdateSuccess : ProfmanResult::kCopyAndUpdateNoMatch; in CopyAndUpdateProfileKey()
|
/art/tools/ahat/etc/ |
D | ahat_api.txt | 147 …method public static com.android.ahat.heapdump.DiffedFieldValue matched(com.android.ahat.heapdump.…
|