Lines Matching refs:entry

282       for (auto& entry : storage) {  in HasAssignable()  local
284 verifier_deps_->GetStringFromId(dex_file, entry.GetDestination()); in HasAssignable()
285 std::string actual_source = verifier_deps_->GetStringFromId(dex_file, entry.GetSource()); in HasAssignable()
300 for (auto& entry : dex_dep.second->classes_) { in HasClass() local
301 if (expected_resolved != entry.IsResolved()) { in HasClass()
305 std::string actual_klass = dex_dep.first->StringByTypeIdx(entry.GetDexTypeIndex()); in HasClass()
313 std::string actual_access_flags = PrettyJavaAccessFlags(entry.GetAccessFlags()); in HasClass()
334 for (auto& entry : dex_dep.second->fields_) { in HasField() local
335 if (expected_resolved != entry.IsResolved()) { in HasField()
339 const dex::FieldId& field_id = dex_dep.first->GetFieldId(entry.GetDexFieldIndex()); in HasField()
359 std::string actual_access_flags = PrettyJavaAccessFlags(entry.GetAccessFlags()); in HasField()
365 *dex_dep.first, entry.GetDeclaringClassIndex()); in HasField()
386 for (const VerifierDeps::MethodResolution& entry : dex_dep.second->methods_) { in HasMethod() local
387 if (expect_resolved != entry.IsResolved()) { in HasMethod()
391 const dex::MethodId& method_id = dex_dep.first->GetMethodId(entry.GetDexMethodIndex()); in HasMethod()
411 std::string actual_access_flags = PrettyJavaAccessFlags(entry.GetAccessFlags()); in HasMethod()
417 *dex_dep.first, entry.GetDeclaringClassIndex()); in HasMethod()
448 for (auto& entry : verifier_deps_->dex_deps_) { in HasEachKindOfRecord() local
449 has_strings |= !entry.second->strings_.empty(); in HasEachKindOfRecord()
450 has_assignability |= !entry.second->assignable_types_.empty(); in HasEachKindOfRecord()
451 has_assignability |= !entry.second->unassignable_types_.empty(); in HasEachKindOfRecord()
452 has_classes |= !entry.second->classes_.empty(); in HasEachKindOfRecord()
453 has_fields |= !entry.second->fields_.empty(); in HasEachKindOfRecord()
454 has_methods |= !entry.second->methods_.empty(); in HasEachKindOfRecord()
455 has_verified_classes |= HasBoolValue(entry.second->verified_classes_, true); in HasEachKindOfRecord()
456 has_unverified_classes |= HasBoolValue(entry.second->verified_classes_, false); in HasEachKindOfRecord()
457 has_redefined_classes |= HasBoolValue(entry.second->redefined_classes_, true); in HasEachKindOfRecord()
458 has_not_redefined_classes |= HasBoolValue(entry.second->redefined_classes_, false); in HasEachKindOfRecord()
1276 for (const auto& entry : deps.classes_) { in TEST_F() local
1277 if (entry.IsResolved()) { in TEST_F()
1279 entry.GetDexTypeIndex(), VerifierDeps::kUnresolvedMarker)); in TEST_F()
1287 for (const auto& entry : deps.classes_) { in TEST_F() local
1288 if (!entry.IsResolved()) { in TEST_F()
1290 entry.GetDexTypeIndex(), VerifierDeps::kUnresolvedMarker - 1)); in TEST_F()
1298 for (const auto& entry : deps.classes_) { in TEST_F() local
1299 if (entry.IsResolved()) { in TEST_F()
1301 entry.GetDexTypeIndex(), entry.GetAccessFlags() - 1)); in TEST_F()
1311 for (const auto& entry : deps.fields_) { in TEST_F() local
1312 if (entry.IsResolved()) { in TEST_F()
1313 deps.fields_.insert(VerifierDeps::FieldResolution(entry.GetDexFieldIndex(), in TEST_F()
1315 entry.GetDeclaringClassIndex())); in TEST_F()
1323 for (const auto& entry : deps.fields_) { in TEST_F() local
1324 if (!entry.IsResolved()) { in TEST_F()
1336 for (const auto& entry : deps.fields_) { in TEST_F() local
1337 if (entry.IsResolved()) { in TEST_F()
1338 deps.fields_.insert(VerifierDeps::FieldResolution(entry.GetDexFieldIndex(), in TEST_F()
1339 entry.GetAccessFlags() - 1, in TEST_F()
1340 entry.GetDeclaringClassIndex())); in TEST_F()
1348 for (const auto& entry : deps.fields_) { in TEST_F() local
1350 if (entry.GetDeclaringClassIndex() != kNewTypeIndex) { in TEST_F()
1351 deps.fields_.insert(VerifierDeps::FieldResolution(entry.GetDexFieldIndex(), in TEST_F()
1352 entry.GetAccessFlags(), in TEST_F()
1364 for (const auto& entry : *methods) { in TEST_F()
1365 if (entry.IsResolved()) { in TEST_F()
1366 methods->insert(VerifierDeps::MethodResolution(entry.GetDexMethodIndex(), in TEST_F()
1368 entry.GetDeclaringClassIndex())); in TEST_F()
1377 for (const auto& entry : *methods) { in TEST_F()
1378 if (!entry.IsResolved()) { in TEST_F()
1391 for (const auto& entry : *methods) { in TEST_F()
1392 if (entry.IsResolved()) { in TEST_F()
1393 methods->insert(VerifierDeps::MethodResolution(entry.GetDexMethodIndex(), in TEST_F()
1394 entry.GetAccessFlags() - 1, in TEST_F()
1395 entry.GetDeclaringClassIndex())); in TEST_F()
1404 for (const auto& entry : *methods) { in TEST_F()
1406 if (entry.IsResolved() && entry.GetDeclaringClassIndex() != kNewTypeIndex) { in TEST_F()
1407 methods->insert(VerifierDeps::MethodResolution(entry.GetDexMethodIndex(), in TEST_F()
1408 entry.GetAccessFlags(), in TEST_F()
1446 for (const auto& entry : deps->classes_) { in TEST_F() local
1447 if (entry.IsResolved()) { in TEST_F()
1449 entry.GetDexTypeIndex(), VerifierDeps::kUnresolvedMarker)); in TEST_F()