Home
last modified time | relevance | path

Searched refs:className (Results 1 – 8 of 8) sorted by relevance

/art/test/121-modifiers/src/
DMain.java84 private static void check(String className) throws Exception { in check() argument
85 Class<?> clazz = Class.forName(className); in check()
86 if (className.equals("Inf")) { in check()
94 throw new RuntimeException("Undefined bits for an interface: " + className); in check()
104 throw new RuntimeException("Undefined bits for a class: " + className); in check()
/art/runtime/
Dreference_table.cc124 std::string className(PrettyTypeOf(obj)); in DumpSummaryLine() local
128 className = "java.lang.Class"; in DumpSummaryLine()
131 StringAppendF(&className, " (%zd elements)", element_count); in DumpSummaryLine()
135 std::string msg(StringPrintf("%5zd of %s", total, className.c_str())); in DumpSummaryLine()
181 std::string className(PrettyTypeOf(ref)); in Dump() local
196 os << StringPrintf(" %5d: ", idx) << ref << " " << className << extras << "\n"; in Dump()
Djni_internal.h32 #define NATIVE_METHOD(className, functionName, signature) \ argument
33 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) }
Dproxy_test.cc33 const char* className, in GenerateProxyClass() argument
100 soa.Env()->NewStringUTF(className), in GenerateProxyClass()
/art/test/071-dexfile/src/
DMain.java102 String className = e.nextElement(); in testDexFile() local
103 System.out.println(className); in testDexFile()
/art/runtime/native/
Djava_lang_Object.cc23 #define NATIVE_METHOD(className, functionName, signature, identifier) \ argument
24 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## identifier) }
/art/runtime/jdwp/
Djdwp_event.cc117 std::string className; /* ClassMatch/ClassExclude */ member
491 if (!PatternMatch(pMod->classMatch.classPattern, basket.className)) { in ModsMatch()
496 if (PatternMatch(pMod->classMatch.classPattern, basket.className)) { in ModsMatch()
845 basket.className = Dbg::GetClassName(basket.locationClass); in PostLocationEvent()
868 VLOG(jdwp) << "Not checking breakpoints during invoke (" << basket.className << ")"; in PostLocationEvent()
948 basket.className = Dbg::GetClassName(basket.locationClass); in PostFieldEvent()
1154 basket.className = Dbg::GetClassName(basket.locationClass); in PostException()
1161 VLOG(jdwp) << "Not posting exception hit during invoke (" << basket.className << ")"; in PostException()
1242 basket.className = Dbg::GetClassName(basket.locationClass); in PostClassPrepare()
1246 VLOG(jdwp) << "Not posting class prep caused by invoke (" << basket.className << ")"; in PostClassPrepare()
/art/runtime/interpreter/
Dinterpreter_common.cc767 static void UnstartedRuntimeFindClass(Thread* self, Handle<mirror::String> className, in UnstartedRuntimeFindClass() argument
772 CHECK(className.Get() != nullptr); in UnstartedRuntimeFindClass()
773 std::string descriptor(DotToDescriptor(className->ToModifiedUtf8().c_str())); in UnstartedRuntimeFindClass()