Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type.cc38 BooleanType* BooleanType::instance = NULL;
101 std::string BooleanType::Dump() { in Dump()
344 BooleanType* BooleanType::CreateInstance(mirror::Class* klass, const std::string& descriptor, in CreateInstance()
346 if (BooleanType::instance == NULL) { in CreateInstance()
347 instance = new BooleanType(klass, descriptor, cache_id); in CreateInstance()
349 return BooleanType::instance; in CreateInstance()
352 BooleanType* BooleanType::GetInstance() { in GetInstance()
353 CHECK(BooleanType::instance != NULL); in GetInstance()
354 return BooleanType::instance; in GetInstance()
357 void BooleanType::Destroy() { in Destroy()
[all …]
Dreg_type.h390 class BooleanType : public Cat1Type {
396 static BooleanType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
399 static BooleanType* GetInstance();
402 BooleanType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id) in BooleanType() function
407 static BooleanType* instance;
Dreg_type_cache.cc50 entries_.push_back(BooleanType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
104 return *BooleanType::GetInstance(); in RegTypeFromPrimitiveType()
263 BooleanType::Destroy(); in ShutDown()
299 CreatePrimitiveTypeInstance<BooleanType>("Z"); in CreatePrimitiveAndSmallConstantTypes()
Dreg_type_cache.h89 return *BooleanType::GetInstance(); in Boolean()