Home
last modified time | relevance | path

Searched refs:NullType (Results 1 – 6 of 6) sorted by relevance

/art/runtime/verifier/
Dreg_type-inl.h206 inline const NullType* NullType::GetInstance() { in GetInstance()
Dreg_type_cache-inl.h85 inline const NullType& RegTypeCache::Null() { in Null()
86 return *NullType::GetInstance(); in Null()
Dreg_type.cc55 const NullType* NullType::instance_ = nullptr;
1082 const NullType* NullType::CreateInstance(ObjPtr<mirror::Class> klass, in CreateInstance()
1086 instance_ = new NullType(klass, descriptor, cache_id); in CreateInstance()
1090 void NullType::Destroy() { in Destroy()
1091 if (NullType::instance_ != nullptr) { in Destroy()
Dreg_type_cache.h55 class NullType; variable
137 const NullType& Null();
Dreg_type.h857 class NullType final : public RegType {
864 static const NullType* GetInstance() PURE;
867 static const NullType* CreateInstance(ObjPtr<mirror::Class> klass,
887 NullType(ObjPtr<mirror::Class> klass, const std::string_view& descriptor, uint16_t cache_id) in NullType() function
893 static const NullType* instance_;
Dreg_type_cache.cc67 entries_.push_back(NullType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
326 NullType::Destroy(); in ShutDown()
375 create_primitive_type_instance(TypeHelper<NullType>("")); in CreatePrimitiveAndSmallConstantTypes()