Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type-inl.h191 inline const BooleanType* BooleanType::GetInstance() { in GetInstance()
192 DCHECK(BooleanType::instance_ != nullptr); in GetInstance()
193 return BooleanType::instance_; in GetInstance()
Dreg_type.cc45 const BooleanType* BooleanType::instance_ = nullptr;
94 std::string BooleanType::Dump() const { in Dump()
288 const BooleanType* BooleanType::CreateInstance(ObjPtr<mirror::Class> klass, in CreateInstance()
291 CHECK(BooleanType::instance_ == nullptr); in CreateInstance()
292 instance_ = new BooleanType(klass, descriptor, cache_id); in CreateInstance()
293 return BooleanType::instance_; in CreateInstance()
296 void BooleanType::Destroy() { in Destroy()
297 if (BooleanType::instance_ != nullptr) { in Destroy()
Dreg_type_cache-inl.h49 inline const BooleanType& RegTypeCache::Boolean() { in Boolean()
50 return *BooleanType::GetInstance(); in Boolean()
Dreg_type_cache.h42 class BooleanType; variable
125 const BooleanType& Boolean() REQUIRES_SHARED(Locks::mutator_lock_);
Dreg_type_cache.cc68 entries_.push_back(BooleanType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
123 return *BooleanType::GetInstance(); in RegTypeFromPrimitiveType()
316 BooleanType::Destroy(); in ShutDown()
376 create_primitive_type_instance(TypeHelper<BooleanType>("Z")); in CreatePrimitiveAndSmallConstantTypes()
703 BooleanType::GetInstance()->VisitRoots(visitor, ri); in VisitStaticRoots()
Dreg_type.h469 class BooleanType final : public Cat1Type {
473 static const BooleanType* CreateInstance(ObjPtr<mirror::Class> klass,
477 static const BooleanType* GetInstance() PURE;
485 BooleanType(ObjPtr<mirror::Class> klass, in BooleanType() function
492 static const BooleanType* instance_;