Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type-inl.h145 inline const DoubleHiType* DoubleHiType::GetInstance() { in GetInstance() function
150 inline const DoubleLoType* DoubleLoType::GetInstance() { in GetInstance() function
155 inline const LongHiType* LongHiType::GetInstance() { in GetInstance() function
160 inline const LongLoType* LongLoType::GetInstance() { in GetInstance() function
165 inline const FloatType* FloatType::GetInstance() { in GetInstance() function
170 inline const CharType* CharType::GetInstance() { in GetInstance() function
175 inline const ShortType* ShortType::GetInstance() { in GetInstance() function
180 inline const ByteType* ByteType::GetInstance() { in GetInstance() function
186 inline const IntegerType* IntegerType::GetInstance() { in GetInstance() function
191 inline const BooleanType* BooleanType::GetInstance() { in GetInstance() function
[all …]
Dreg_type_cache-inl.h50 return *BooleanType::GetInstance(); in Boolean()
53 return *ByteType::GetInstance(); in Byte()
56 return *CharType::GetInstance(); in Char()
59 return *ShortType::GetInstance(); in Short()
62 return *IntegerType::GetInstance(); in Integer()
65 return *FloatType::GetInstance(); in Float()
68 return *LongLoType::GetInstance(); in LongLo()
71 return *LongHiType::GetInstance(); in LongHi()
74 return *DoubleLoType::GetInstance(); in DoubleLo()
77 return *DoubleHiType::GetInstance(); in DoubleHi()
[all …]
Dreg_type_cache.cc59 entries_.push_back(UndefinedType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
60 entries_.push_back(ConflictType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
61 entries_.push_back(NullType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
62 entries_.push_back(BooleanType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
63 entries_.push_back(ByteType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
64 entries_.push_back(ShortType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
65 entries_.push_back(CharType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
66 entries_.push_back(IntegerType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
67 entries_.push_back(LongLoType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
68 entries_.push_back(LongHiType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
[all …]
/art/libartbase/base/
Dmem_map_test.cc906 testing::UnitTest::GetInstance()->listeners().Append(new DumpMapsOnFailListener()); in ArtTestGlobalInit()