Home
last modified time | relevance | path

Searched refs:RawPTypesAccessor (Results 1 – 3 of 3) sorted by relevance

/art/runtime/mirror/
Dmethod_type-inl.h99 inline MethodType::RawPTypesAccessor::RawPTypesAccessor(RawMethodType method_type) in RawPTypesAccessor() function
104 inline int32_t MethodType::RawPTypesAccessor::GetLength() const { in GetLength()
108 inline ObjPtr<mirror::Class> MethodType::RawPTypesAccessor::Get(int32_t i) const { in Get()
120 inline MethodType::RawPTypesAccessor MethodType::NewHandlePTypes( in NewHandlePTypes()
122 return RawPTypesAccessor(method_type); in NewHandlePTypes()
133 inline MethodType::RawPTypesAccessor MethodType::GetPTypes(RawMethodType method_type) { in GetPTypes()
134 return RawPTypesAccessor(method_type); in GetPTypes()
Dmethod_type.h125 class RawPTypesAccessor {
127 explicit RawPTypesAccessor(RawMethodType method_type);
140 static RawPTypesAccessor NewHandlePTypes(RawMethodType method_type, HandleScopeType* hs)
147 static RawPTypesAccessor GetPTypes(RawMethodType method_type)
Dmethod_type.cc59 RawPTypesAccessor p_types(method_type); in Create()