Lines Matching refs:type

53   static constexpr Type GetType(char type) {  in GetType()  argument
54 switch (type) { in GetType()
78 static constexpr size_t ComponentSizeShift(Type type) { in ComponentSizeShift() argument
79 switch (type) { in ComponentSizeShift()
91 LOG(FATAL) << "Invalid type " << static_cast<int>(type); in ComponentSizeShift()
95 static constexpr size_t ComponentSize(Type type) { in ComponentSize() argument
96 switch (type) { in ComponentSize()
108 LOG(FATAL) << "Invalid type " << static_cast<int>(type); in ComponentSize()
112 static const char* Descriptor(Type type) { in Descriptor() argument
113 switch (type) { in Descriptor()
133 LOG(FATAL) << "Primitive char conversion on invalid type " << static_cast<int>(type); in Descriptor()
138 static const char* PrettyDescriptor(Type type);
141 static const char* BoxedDescriptor(Type type);
144 static constexpr bool IsNumericType(Type type) { in IsNumericType() argument
145 switch (type) { in IsNumericType()
157 LOG(FATAL) << "Invalid type " << static_cast<int>(type); in IsNumericType()
162 static constexpr bool IsSignedNumericType(Type type) { in IsSignedNumericType() argument
163 switch (type) { in IsSignedNumericType()
175 LOG(FATAL) << "Invalid type " << static_cast<int>(type); in IsSignedNumericType()
181 static constexpr size_t BitsRequiredForLargestValue(Type type) { in BitsRequiredForLargestValue() argument
182 switch (type) { in BitsRequiredForLargestValue()
214 static bool Is64BitType(Type type) { in Is64BitType() argument
215 return type == kPrimLong || type == kPrimDouble; in Is64BitType()