Home
last modified time | relevance | path

Searched refs:GetDexFieldIndex (Results 1 – 15 of 15) sorted by relevance

/art/runtime/mirror/
Dfield.cc33 if (GetDexFieldIndex() == 0) { in GetArtField()
36 DCHECK_EQ(GetDexFieldIndex(), 1U); in GetArtField()
41 ArtField* art_field = dex_cache->GetResolvedField(GetDexFieldIndex(), kRuntimePointerSize); in GetArtField()
44 art_field = declaring_class->FindDeclaredStaticField(dex_cache, GetDexFieldIndex()); in GetArtField()
46 art_field = declaring_class->FindInstanceField(dex_cache, GetDexFieldIndex()); in GetArtField()
49 dex_cache->SetResolvedField(GetDexFieldIndex(), art_field, kRuntimePointerSize); in GetArtField()
Dfield-inl.h72 auto dex_field_index = field->GetDexFieldIndex(); in CreateFromArtField()
Dfield.h41 ALWAYS_INLINE uint32_t GetDexFieldIndex() REQUIRES_SHARED(Locks::mutator_lock_) { in GetDexFieldIndex() function
Ddex_cache_test.cc115 field.GetDexFieldIndex())); in TEST_F()
Dclass.cc865 if (field.GetDexFieldIndex() == dex_field_idx) { in FindDeclaredInstanceField()
905 if (field.GetDexFieldIndex() == dex_field_idx) { in FindDeclaredStaticField()
/art/runtime/arch/
Dstub_test.cc1187 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetBooleanStatic()
1194 size_t res = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetBooleanStatic()
1217 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetByteStatic()
1224 size_t res = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetByteStatic()
1248 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetBooleanInstance()
1260 size_t res2 = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetBooleanInstance()
1283 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetByteInstance()
1294 size_t res2 = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetByteInstance()
1318 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetCharStatic()
1325 size_t res = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetCharStatic()
[all …]
/art/runtime/
Dart_field-inl.h277 uint32_t field_index = GetDexFieldIndex(); in GetName()
288 uint32_t field_index = GetDexFieldIndex(); in GetTypeDescriptor()
315 GetDexFile()->GetFieldId(GetDexFieldIndex()).type_idx_, this); in LookupResolvedType()
325 GetDexFile()->GetFieldId(GetDexFieldIndex()).type_idx_, this); in ResolveType()
345 uint32_t dex_field_index = GetDexFieldIndex(); in ResolveNameString()
Dart_field.h79 uint32_t GetDexFieldIndex() { in GetDexFieldIndex() function
Dhidden_api.cc321 return field->GetDexFieldIndex(); in GetMemberDexIndex()
Dclass_linker.cc5334 const uint32_t field_idx = field->GetDexFieldIndex(); in InitializeClass()
8174 return field1->GetDexFieldIndex() < field2->GetDexFieldIndex(); in operator ()()
/art/runtime/verifier/
Dverifier_deps.cc871 const dex::FieldId& field_id = dex_file.GetFieldId(entry.GetDexFieldIndex()); in Dump()
1030 const dex::FieldId& field_id = dex_file.GetFieldId(entry.GetDexFieldIndex()); in VerifyFields()
1052 GetFieldDescription(dex_file, entry.GetDexFieldIndex()); in VerifyFields()
1056 + GetFieldDescription(dex_file, entry.GetDexFieldIndex()) in VerifyFields()
1062 + GetFieldDescription(dex_file, entry.GetDexFieldIndex()) in VerifyFields()
1069 + GetFieldDescription(dex_file, entry.GetDexFieldIndex()); in VerifyFields()
Dverifier_deps.h177 uint32_t GetDexFieldIndex() const { return std::get<0>(*this); } in GetDexFieldIndex() function
/art/dex2oat/
Dverifier_deps_test.cc339 const dex::FieldId& field_id = dex_dep.first->GetFieldId(entry.GetDexFieldIndex()); in HasField()
1307 deps.fields_.insert(VerifierDeps::FieldResolution(entry.GetDexFieldIndex(), in TEST_F()
1332 deps.fields_.insert(VerifierDeps::FieldResolution(entry.GetDexFieldIndex(), in TEST_F()
1345 deps.fields_.insert(VerifierDeps::FieldResolution(entry.GetDexFieldIndex(), in TEST_F()
/art/compiler/optimizing/
Dinliner.cc799 field->GetDexFieldIndex(), in BuildGetReceiverClass()
/art/runtime/dex/
Ddex_file_annotations.cc180 return FindAnnotationSetForField(*field->GetDexFile(), *class_def, field->GetDexFieldIndex()); in FindAnnotationSetForField()