Searched defs:ShortyFieldType (Results 1 - 1 of 1) sorted by relevance

/art/runtime/lambda/
H A Dshorty_field_type.h39 // The short form of a field type descriptor. Corresponds to ShortyFieldType in dex specification.
44 struct ShortyFieldType : ValueObject { struct in namespace:art::lambda
45 // Use as if this was an enum class, e.g. 'ShortyFieldType::kBoolean'.
64 inline constexpr ShortyFieldType(decltype(kByte) c) : value_(c) {
69 explicit ShortyFieldType() : value_(StaticCastValue(0)) { function in namespace:art::lambda
74 explicit inline ShortyFieldType(char c) : value_(StaticCastValue(c)) { function in namespace:art::lambda
77 ShortyFieldType ignored;
84 static bool MaybeCreate(char shorty_field_type, ShortyFieldType* out) {
97 *out = ShortyFieldType(static_cast<decltype(kByte)>(shorty_field_type));
109 static ShortyFieldType CreateFromFieldTypeDescripto
[all...]

Completed in 124 milliseconds