Home
last modified time | relevance | path

Searched refs:shorthand (Results 1 – 3 of 3) sorted by relevance

/art/runtime/mirror/
Dmethod_type_test.cc37 static std::string FullyQualifiedType(const std::string& shorthand) { in FullyQualifiedType() argument
38 return "Ljava/lang/" + shorthand + ";"; in FullyQualifiedType()
41 ObjPtr<mirror::Class> FindClass(Thread* self, ClassLinker* const cl, const std::string& shorthand) in FindClass() argument
45 if (shorthand.size() == 1) { in FindClass()
46 return cl->FindSystemClass(self, shorthand.c_str()); in FindClass()
47 } else if (shorthand.find('/') == std::string::npos) { in FindClass()
48 return cl->FindClass(self, FullyQualifiedType(shorthand).c_str(), boot_class_loader); in FindClass()
50 return cl->FindClass(self, shorthand.c_str(), boot_class_loader); in FindClass()
/art/runtime/
Dmethod_handles.cc104 #define CASE_PRIMITIVE(primitive, abbrev, _, shorthand) \ in GetUnboxedTypeAndValue() argument
107 value->Set ## shorthand(primitive_field->Get ## abbrev(o)); \ in GetUnboxedTypeAndValue()
/art/cmdline/
DREADME.md116 This is meant to be another shorthand (like `WithRange`) to avoid writing a custom type parser. In