Home
last modified time | relevance | path

Searched refs:GetInstance (Results 1 – 5 of 5) 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.cc65 entries_.push_back(UndefinedType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
66 entries_.push_back(ConflictType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
67 entries_.push_back(NullType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
68 entries_.push_back(BooleanType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
69 entries_.push_back(ByteType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
70 entries_.push_back(ShortType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
71 entries_.push_back(CharType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
72 entries_.push_back(IntegerType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
73 entries_.push_back(LongLoType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
74 entries_.push_back(LongHiType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
[all …]
Dreg_type.h366 static const ConflictType* GetInstance() PURE;
402 static const UndefinedType* GetInstance() PURE;
452 static const IntegerType* GetInstance() PURE;
477 static const BooleanType* GetInstance() PURE;
503 static const ByteType* GetInstance() PURE;
528 static const ShortType* GetInstance() PURE;
552 static const CharType* GetInstance() PURE;
577 static const FloatType* GetInstance() PURE;
610 static const LongLoType* GetInstance() PURE;
635 static const LongHiType* GetInstance() PURE;
[all …]
/art/libartbase/base/
Dmem_map_test.cc901 testing::UnitTest::GetInstance()->listeners().Append(new DumpMapsOnFailListener()); in ArtTestGlobalInit()