/art/tools/dmtracedump/ |
D | tracedump.cc | 166 const char* methodName; member 297 const char* methodName, const char* signature, const char* fileName, in initMethodEntry() argument 301 method->methodName = methodName; in initMethodEntry() 336 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareElapsedExclusive() 343 result = strcmp(methodA->methodName, methodB->methodName); in compareElapsedExclusive() 366 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareElapsedInclusive() 373 result = strcmp(methodA->methodName, methodB->methodName); in compareElapsedInclusive() 398 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareTimedMethod() 405 result = strcmp(methodA->methodName, methodB->methodName); in compareTimedMethod() 466 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareMethodNames() [all …]
|
D | createtesttrace.cc | 67 char* methodName; member 212 records[nextRecord].methodName = nullptr; in parseInputFile() 223 records[nextRecord].methodName = strndup(save_cp, len); in parseInputFile() 370 if (pRecord->className == nullptr || pRecord->methodName == nullptr) { in writeKeyMethods() 375 pRecord->className, pRecord->methodName); in writeKeyMethods() 378 pRecord->className, pRecord->methodName, pRecord->signature); in writeKeyMethods()
|
/art/tools/dexfuzz/src/dexfuzz/program/mutators/ |
D | NewMethodCaller.java | 49 public String methodName; field in NewMethodCaller.AssociatedMutation 67 methodName, in getString() 79 methodName = elements[5]; in parseString() 130 mutation.methodName = "gc"; in generateMutation() 169 mutation.methodName, mutation.signature); in applyMutation() 180 mutation.className, mutation.methodName, mutation.signature, insertionPoint)); in applyMutation()
|
/art/tools/checker/file_format/c1visualizer/ |
D | parser.py | 58 methodName = line.split("\"")[1].strip() 59 if not methodName: 61 state.lastMethodName = methodName
|
/art/test/048-reflect-v8/src/ |
D | AnnotationTest.java | 195 String methodName, Class<?> annotationUseClass) { in printMethodAnnotationsByType() argument 198 m = annotationUseClass.getDeclaredMethod(methodName); in printMethodAnnotationsByType() 235 String methodName, Class<?> annotationUseClass) { in printMethodDeclaredAnnotation() argument 238 m = annotationUseClass.getDeclaredMethod(methodName); in printMethodDeclaredAnnotation() 276 Class<A> annotationClass, String methodName, Class<?> annotationUseClass) { in printMethodDeclaredAnnotationByType() argument 279 m = annotationUseClass.getDeclaredMethod(methodName); in printMethodDeclaredAnnotationByType()
|
/art/test/439-npe/src/ |
D | Main.java | 214 static void check(NullPointerException npe, int mainLine, int medthodLine, String methodName) { in check() argument 215 System.out.println(methodName); in check() 217 checkElement(trace[0], "Main", methodName, "Main.java", medthodLine); in check() 222 String declaringClass, String methodName, in checkElement() argument 225 assertEquals(methodName, element.getMethodName()); in checkElement()
|
/art/test/570-checker-osr/src/ |
D | Main.java | 299 public static native boolean isInOsrCode(String methodName); in isInOsrCode() argument 300 public static native boolean isInInterpreter(String methodName); in isInInterpreter() argument 301 public static native void ensureHasProfilingInfo(String methodName); in ensureHasProfilingInfo() argument 302 public static native void ensureHasOsrCode(String methodName); in ensureHasOsrCode() argument
|
/art/tools/dexfuzz/src/dexfuzz/program/ |
D | IdCreator.java | 86 private int findMethodIdInsertionPoint(String className, String methodName, String signature) { in findMethodIdInsertionPoint() argument 88 int nameIdx = findString(methodName); in findMethodIdInsertionPoint() 169 private int createMethodId(String className, String methodName, String signature) { in createMethodId() argument 185 int methodNameStringIdx = findOrCreateString(methodName); in createMethodId() 194 int newMethodIdIdx = findMethodIdInsertionPoint(className, methodName, signature); in createMethodId() 208 className, methodName, signature, newMethodIdIdx)); in createMethodId() 218 private int findMethodId(String className, String methodName, String signature) { in findMethodId() argument 223 int nameIdx = findString(methodName); in findMethodId() 248 public int findOrCreateMethodId(String className, String methodName, String shorty) { in findOrCreateMethodId() argument 249 int methodIdIdx = findMethodId(className, methodName, shorty); in findOrCreateMethodId() [all …]
|
D | Program.java | 306 String methodName = className in associateMethod() local 312 codeItem.meta.methodName = methodName; in associateMethod() 334 if (codeItem.meta.methodName.endsWith("_MUTATE")) { in legalToMutate()
|
D | CodeTranslator.java | 53 + " (" + codeItem.meta.methodName + ") to MutatableCode"); in codeItemToMutatableCode() 59 mutatableCode.name = codeItem.meta.methodName; in codeItemToMutatableCode()
|
/art/dexlist/ |
D | dexlist.cc | 104 const char* methodName = pDexFile->StringDataByIdx(pMethodId.name_idx_); in dumpMethod() local 112 strcmp(gOptions.methodToFind, methodName) != 0)) { in dumpMethod() 133 className, methodName, typeDesc, fileName, firstLine); in dumpMethod()
|
/art/test/595-profile-saving/src/ |
D | Main.java | 55 public static native int ensureProfilingInfo(String methodName); in ensureProfilingInfo() argument
|
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
D | CodeItem.java | 40 public String methodName; field in CodeItem.MethodMetaInfo
|
/art/test/122-npe/src/ |
D | Main.java | 566 String declaringClass, String methodName, in checkElement() argument 569 assertEquals(methodName, element.getMethodName()); in checkElement()
|
/art/runtime/ |
D | check_jni.cc | 484 std::string methodName(PrettyMethod(traceMethod, false)); in Check() local 485 LOG(INFO) << "JNI: " << methodName << " -> " << function_name_ << "(" << msg << ")"; in Check() 486 indent_ = methodName.size() + 1; in Check() 535 std::string methodName(PrettyMethod(traceMethod, false)); in CheckNonHeap() local 536 LOG(INFO) << "JNI: " << methodName << " -> " << function_name_ << "(" << msg << ")"; in CheckNonHeap() 537 indent_ = methodName.size() + 1; in CheckNonHeap()
|