Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type_cache.h89 return *BooleanType::GetInstance(); in Boolean()
92 return *ByteType::GetInstance(); in Byte()
95 return *CharType::GetInstance(); in Char()
98 return *ShortType::GetInstance(); in Short()
101 return *IntegerType::GetInstance(); in Integer()
104 return *FloatType::GetInstance(); in Float()
107 return *LongLoType::GetInstance(); in LongLo()
110 return *LongHiType::GetInstance(); in LongHi()
113 return *DoubleLoType::GetInstance(); in DoubleLo()
116 return *DoubleHiType::GetInstance(); in DoubleHi()
[all …]
Dreg_type_cache.cc48 entries_.push_back(UndefinedType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
49 entries_.push_back(ConflictType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
50 entries_.push_back(BooleanType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
51 entries_.push_back(ByteType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
52 entries_.push_back(ShortType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
53 entries_.push_back(CharType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
54 entries_.push_back(IntegerType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
55 entries_.push_back(LongLoType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
56 entries_.push_back(LongHiType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
57 entries_.push_back(FloatType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
[all …]
Dreg_type.h307 static ConflictType* GetInstance();
337 static UndefinedType* GetInstance();
380 static IntegerType* GetInstance();
399 static BooleanType* GetInstance();
419 static ByteType* GetInstance();
438 static ShortType* GetInstance();
457 static CharType* GetInstance();
476 static FloatType* GetInstance();
504 static LongLoType* GetInstance();
523 static LongHiType* GetInstance();
[all …]
Dreg_type.cc153 DoubleHiType* DoubleHiType::GetInstance() { in GetInstance() function in art::verifier::DoubleHiType
173 DoubleLoType* DoubleLoType::GetInstance() { in GetInstance() function in art::verifier::DoubleLoType
201 LongHiType* LongHiType::GetInstance() { in GetInstance() function in art::verifier::LongHiType
213 LongLoType* LongLoType::GetInstance() { in GetInstance() function in art::verifier::LongLoType
232 FloatType* FloatType::GetInstance() { in GetInstance() function in art::verifier::FloatType
252 CharType* CharType::GetInstance() { in GetInstance() function in art::verifier::CharType
272 ShortType* ShortType::GetInstance() { in GetInstance() function in art::verifier::ShortType
292 ByteType* ByteType::GetInstance() { in GetInstance() function in art::verifier::ByteType
312 IntegerType* IntegerType::GetInstance() { in GetInstance() function in art::verifier::IntegerType
332 ConflictType* ConflictType::GetInstance() { in GetInstance() function in art::verifier::ConflictType
[all …]