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;
996 const NullType* NullType::CreateInstance(ObjPtr<mirror::Class> klass, in CreateInstance()
1000 instance_ = new NullType(klass, descriptor, cache_id); in CreateInstance()
1004 void NullType::Destroy() { in Destroy()
1005 if (NullType::instance_ != nullptr) { in Destroy()
Dreg_type_cache.h52 class NullType; variable
131 const NullType& Null();
Dreg_type.h879 class NullType final : public RegType {
886 static const NullType* GetInstance() PURE;
889 static const NullType* CreateInstance(ObjPtr<mirror::Class> klass,
909 NullType(ObjPtr<mirror::Class> klass, const std::string_view& descriptor, uint16_t cache_id) in NullType() function
915 static const NullType* instance_;
Dreg_type_cache.cc61 entries_.push_back(NullType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
316 NullType::Destroy(); in ShutDown()
364 create_primitive_type_instance(TypeHelper<NullType>("")); in CreatePrimitiveAndSmallConstantTypes()