Home
last modified time | relevance | path

Searched refs:matched (Results 1 – 10 of 10) sorted by relevance

/art/tools/ahat/src/test/com/android/ahat/
DDiffFieldsTest.java48 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/
DREADME20 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/
DDiffedFieldValue.java81 public static DiffedFieldValue matched(FieldValue current, FieldValue baseline) { in matched() method in DiffedFieldValue
DDiffFields.java63 diffed.add(DiffedFieldValue.matched(currentField, baselineField)); in diff()
/art/libprofile/profile/
Dprofile_compilation_info_test.cc959 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 …]
Dprofile_compilation_info.cc2515 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()
Dprofile_compilation_info.h654 /*out*/ bool* matched);
/art/cmdline/
Dcmdline_parser.h628 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/
Dprofman.cc1927 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/
Dahat_api.txt147 …method public static com.android.ahat.heapdump.DiffedFieldValue matched(com.android.ahat.heapdump.…