OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetDirectInterface
(Results
1 - 8
of
8
) sorted by null
/art/runtime/
proxy_test.cc
134
EXPECT_EQ(I.Get(), mirror::Class::
GetDirectInterface
(soa.Self(), proxy_class, 0));
135
EXPECT_EQ(J.Get(), mirror::Class::
GetDirectInterface
(soa.Self(), proxy_class, 1));
class_linker.cc
442
CHECK_EQ(java_lang_Cloneable, mirror::Class::
GetDirectInterface
(self, class_array_class, 0));
443
CHECK_EQ(java_io_Serializable, mirror::Class::
GetDirectInterface
(self, class_array_class, 1));
444
CHECK_EQ(java_lang_Cloneable, mirror::Class::
GetDirectInterface
(self, object_array_class, 0));
445
CHECK_EQ(java_io_Serializable, mirror::Class::
GetDirectInterface
(self, object_array_class, 1));
[
all
...]
class_linker_test.cc
152
mirror::Class* direct_interface0 = mirror::Class::
GetDirectInterface
(self, array, 0);
155
mirror::Class* direct_interface1 = mirror::Class::
GetDirectInterface
(self, array, 1);
[
all
...]
debugger.cc
[
all
...]
/art/runtime/mirror/
class.cc
237
Class* interface =
GetDirectInterface
(self, h_this, i);
245
// After this point, this may have moved due to
GetDirectInterface
.
635
// Wrap k incase it moves during
GetDirectInterface
.
641
Handle<mirror::Class> interface(hs.NewHandle(
GetDirectInterface
(self, h_k, i)));
659
// Wrap k incase it moves during
GetDirectInterface
.
665
Handle<mirror::Class> interface(hs.NewHandle(
GetDirectInterface
(self, h_k, i)));
693
Handle<mirror::Class> interface(hs.NewHandle(
GetDirectInterface
(self, h_k, i)));
759
mirror::Class* Class::
GetDirectInterface
(Thread* self, Handle<mirror::Class> klass, uint32_t idx) {
object_test.cc
159
mirror::Class::
GetDirectInterface
(soa.Self(), klass, 0));
161
mirror::Class::
GetDirectInterface
(soa.Self(), klass, 1));
class.h
[
all
...]
/art/compiler/driver/
compiler_driver.cc
793
MaybeAddToImageClasses(hs.NewHandle(mirror::Class::
GetDirectInterface
(self, klass, i)),
[
all
...]
Completed in 1155 milliseconds