Searched refs:methodName (Results 1 - 15 of 15) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/mutators/
H A DNewMethodCaller.java49 public String methodName; field in class:NewMethodCaller.AssociatedMutation
67 methodName,
79 methodName = elements[5];
130 mutation.methodName = "gc";
169 mutation.methodName, mutation.signature);
180 mutation.className, mutation.methodName, mutation.signature, insertionPoint));
/art/tools/checker/file_format/c1visualizer/
H A Dparser.py58 methodName = line.split("\"")[1].strip()
59 if not methodName:
61 state.lastMethodName = methodName
/art/tools/dmtracedump/
H A Dtracedump.cc166 const char* methodName; member in struct:MethodEntry
297 const char* methodName, const char* signature, const char* fileName,
301 method->methodName = methodName;
336 if (methodA->methodName == nullptr || methodB->methodName == nullptr) {
343 result = strcmp(methodA->methodName, methodB->methodName);
366 if (methodA->methodName == nullptr || methodB->methodName
296 initMethodEntry(MethodEntry* method, int64_t methodId, const char* className, const char* methodName, const char* signature, const char* fileName, const char* lineNumStr) argument
1262 const char* methodName = relative->methodName; local
1387 const char* methodName = method->methodName; local
1521 const char* methodName = method->methodName; local
1773 const char* methodName = method->methodName; local
1943 const char* methodName = pUnique->methods[0]->methodName; local
2310 char* methodName = htmlEscape(method->methodName, methodBuf, HTML_BUFSIZE); local
2409 char* methodName = htmlEscape(ptr->method1->methodName, methodBuf, HTML_BUFSIZE); local
2452 char* methodName = htmlEscape(ptr->method1->methodName, methodBuf, HTML_BUFSIZE); local
[all...]
H A Dcreatetesttrace.cc67 char* methodName; member in struct:dataRecord
212 records[nextRecord].methodName = nullptr;
223 records[nextRecord].methodName = strndup(save_cp, len);
370 if (pRecord->className == nullptr || pRecord->methodName == nullptr) {
375 pRecord->className, pRecord->methodName);
378 pRecord->className, pRecord->methodName, pRecord->signature);
/art/test/570-checker-osr/src/
H A DMain.java299 public static native boolean isInOsrCode(String methodName); argument
300 public static native boolean isInInterpreter(String methodName); argument
301 public static native void ensureHasProfilingInfo(String methodName); argument
302 public static native void ensureHasOsrCode(String methodName); argument
/art/test/048-reflect-v8/src/
H A DAnnotationTest.java193 // "annotationUseClass" method methodName.
195 String methodName, Class<?> annotationUseClass) {
198 m = annotationUseClass.getDeclaredMethod(methodName);
233 // methodName in annotationUseClass.
235 String methodName, Class<?> annotationUseClass) {
238 m = annotationUseClass.getDeclaredMethod(methodName);
274 // methodName in annotationUseClass.
276 Class<A> annotationClass, String methodName, Class<?> annotationUseClass) {
279 m = annotationUseClass.getDeclaredMethod(methodName);
194 printMethodAnnotationsByType(Class<A> annotationClass, String methodName, Class<?> annotationUseClass) argument
234 printMethodDeclaredAnnotation(Class<A> annotationClass, String methodName, Class<?> annotationUseClass) argument
275 printMethodDeclaredAnnotationByType( Class<A> annotationClass, String methodName, Class<?> annotationUseClass) argument
/art/test/439-npe/src/
H A DMain.java214 static void check(NullPointerException npe, int mainLine, int medthodLine, String methodName) { argument
215 System.out.println(methodName);
217 checkElement(trace[0], "Main", methodName, "Main.java", medthodLine);
222 String declaringClass, String methodName,
225 assertEquals(methodName, element.getMethodName());
221 checkElement(StackTraceElement element, String declaringClass, String methodName, String fileName, int lineNumber) argument
/art/tools/dexfuzz/src/dexfuzz/program/
H A DIdCreator.java86 private int findMethodIdInsertionPoint(String className, String methodName, String signature) { argument
88 int nameIdx = findString(methodName);
169 private int createMethodId(String className, String methodName, String signature) { argument
185 int methodNameStringIdx = findOrCreateString(methodName);
194 int newMethodIdIdx = findMethodIdInsertionPoint(className, methodName, signature);
208 className, methodName, signature, newMethodIdIdx));
218 private int findMethodId(String className, String methodName, String signature) { argument
223 int nameIdx = findString(methodName);
248 public int findOrCreateMethodId(String className, String methodName, String shorty) { argument
249 int methodIdIdx = findMethodId(className, methodName, short
[all...]
H A DProgram.java306 String methodName = className
312 codeItem.meta.methodName = methodName;
334 if (codeItem.meta.methodName.endsWith("_MUTATE")) {
H A DCodeTranslator.java53 + " (" + codeItem.meta.methodName + ") to MutatableCode");
59 mutatableCode.name = codeItem.meta.methodName;
/art/test/595-profile-saving/src/
H A DMain.java55 public static native int ensureProfilingInfo(String methodName); argument
/art/dexlist/
H A Ddexlist.cc104 const char* methodName = pDexFile->StringDataByIdx(pMethodId.name_idx_); local
112 strcmp(gOptions.methodToFind, methodName) != 0)) {
133 className, methodName, typeDesc, fileName, firstLine);
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DCodeItem.java40 public String methodName; field in class:CodeItem.MethodMetaInfo
/art/test/122-npe/src/
H A DMain.java566 String declaringClass, String methodName,
569 assertEquals(methodName, element.getMethodName());
565 checkElement(StackTraceElement element, String declaringClass, String methodName, String fileName, int lineNumber) argument
/art/runtime/
H A Dcheck_jni.cc484 std::string methodName(PrettyMethod(traceMethod, false));
485 LOG(INFO) << "JNI: " << methodName << " -> " << function_name_ << "(" << msg << ")";
486 indent_ = methodName.size() + 1;
535 std::string methodName(PrettyMethod(traceMethod, false));
536 LOG(INFO) << "JNI: " << methodName << " -> " << function_name_ << "(" << msg << ")";
537 indent_ = methodName.size() + 1;

Completed in 2230 milliseconds