OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FindInstanceField
(Results
1 - 8
of
8
) sorted by null
/art/runtime/mirror/
object_test.cc
652
TEST_F(ObjectTest,
FindInstanceField
) {
662
EXPECT_TRUE(c->
FindInstanceField
("count", "J") == NULL);
666
EXPECT_TRUE(c->
FindInstanceField
("Count", "I") == NULL);
670
ArtField* f2 = c->
FindInstanceField
("count", "I");
683
EXPECT_TRUE(c->
FindInstanceField
("count", "I") != NULL);
class.cc
578
ArtField* Class::
FindInstanceField
(const StringPiece& name, const StringPiece& type) {
590
ArtField* Class::
FindInstanceField
(const DexCache* dex_cache, uint32_t dex_field_idx) {
class.h
[
all
...]
/art/runtime/native/
dalvik_system_VMRuntime.cc
291
field = klass->
FindInstanceField
(dex_cache.Get(), field_idx);
/art/runtime/
debugger.cc
[
all
...]
check_jni.cc
262
if (c->
FindInstanceField
(f->GetName(), f->GetTypeDescriptor()) == nullptr) {
[
all
...]
class_linker.cc
546
// Note: we hard code the field indexes here rather than using
FindInstanceField
[
all
...]
jni_internal.cc
233
field = c->
FindInstanceField
(name, field_type->GetDescriptor(&temp));
[
all
...]
Completed in 277 milliseconds