Home
last modified time | relevance | path

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

/libcore/tools/openjdk-analyzer/src/libcore/tools/analyzer/openjdk/
DMain.java441 String printedMethod = ""; in printInsn() local
442 printedMethod += (method.access & Opcodes.ACC_PUBLIC) != 0 ? "public " : ""; in printInsn()
443 printedMethod += (method.access & Opcodes.ACC_PROTECTED) != 0 ? "protected " : ""; in printInsn()
444 printedMethod += (method.access & Opcodes.ACC_PRIVATE) != 0 ? "private " : ""; in printInsn()
445 printedMethod += (method.access & Opcodes.ACC_STATIC) != 0 ? "static " : ""; in printInsn()
446 printedMethod += (method.access & Opcodes.ACC_ABSTRACT) != 0 ? "abstract " : ""; in printInsn()
447 printedMethod += (method.access & Opcodes.ACC_NATIVE) != 0 ? "native " : ""; in printInsn()
448 printedMethod += (method.access & Opcodes.ACC_SYNTHETIC) != 0 ? "synthetic " : ""; in printInsn()
449 printedMethod += method.name + method.desc; in printInsn()
450 writer.println(" Method: " + printedMethod); in printInsn()