OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:java_lang_reflect_ArtMethod
(Results
1 - 5
of
5
) sorted by null
/art/runtime/
well_known_classes.h
50
static jclass
java_lang_reflect_ArtMethod
;
well_known_classes.cc
36
jclass WellKnownClasses::
java_lang_reflect_ArtMethod
;
138
java_lang_reflect_ArtMethod
= CacheClass(env, "java/lang/reflect/ArtMethod");
class_linker.cc
298
SirtRef<mirror::Class>
java_lang_reflect_ArtMethod
(self, AllocClass(self, java_lang_Class.get(),
300
CHECK(
java_lang_reflect_ArtMethod
.get() != NULL);
301
java_lang_reflect_ArtMethod
->SetObjectSize(sizeof(mirror::ArtMethod));
302
SetClassRoot(kJavaLangReflectArtMethod,
java_lang_reflect_ArtMethod
.get());
303
java_lang_reflect_ArtMethod
->SetStatus(mirror::Class::kStatusResolved, self);
305
mirror::ArtMethod::SetClass(
java_lang_reflect_ArtMethod
.get());
315
object_array_art_method->SetComponentType(
java_lang_reflect_ArtMethod
.get());
407
java_lang_reflect_ArtMethod
->SetStatus(mirror::Class::kStatusNotReady, self);
409
CHECK_EQ(
java_lang_reflect_ArtMethod
.get(), Art_method_class);
[
all
...]
/art/runtime/mirror/
art_method.cc
56
void ArtMethod::SetClass(Class*
java_lang_reflect_ArtMethod
) {
58
CHECK(
java_lang_reflect_ArtMethod
!= NULL);
59
java_lang_reflect_ArtMethod_ =
java_lang_reflect_ArtMethod
;
art_method.h
370
static void SetClass(Class*
java_lang_reflect_ArtMethod
);
Completed in 106 milliseconds