Lines Matching refs:Method
27 GcRoot<Class> Method::static_class_;
28 GcRoot<Class> Method::array_class_;
32 void Method::SetClass(Class* klass) { in SetClass()
38 void Method::ResetClass() { in ResetClass()
43 void Method::SetArrayClass(Class* klass) { in SetArrayClass()
49 void Method::ResetArrayClass() { in ResetArrayClass()
55 Method* Method::CreateFromArtMethod(Thread* self, ArtMethod* method) { in CreateFromArtMethod()
57 ObjPtr<Method> ret = ObjPtr<Method>::DownCast(StaticClass()->AllocObject(self)); in CreateFromArtMethod()
65 template Method* Method::CreateFromArtMethod<PointerSize::k32, false>(Thread* self,
67 template Method* Method::CreateFromArtMethod<PointerSize::k32, true>(Thread* self,
69 template Method* Method::CreateFromArtMethod<PointerSize::k64, false>(Thread* self,
71 template Method* Method::CreateFromArtMethod<PointerSize::k64, true>(Thread* self,
74 void Method::VisitRoots(RootVisitor* visitor) { in VisitRoots()