Home
last modified time | relevance | path

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

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DGetValues002Test.java38 MethodInfo methodInfo = tester.addTestMethod("runBreakpointBoolean"); in testGetValues001_Boolean() local
39 methodInfo.addVariable("param", oldValue); in testGetValues001_Boolean()
54 MethodInfo methodInfo = tester.addTestMethod("runBreakpointByte"); in testGetValues002_Byte() local
55 methodInfo.addVariable("param", expectedValue); in testGetValues002_Byte()
70 MethodInfo methodInfo = tester.addTestMethod("runBreakpointChar"); in testGetValues003_Char() local
71 methodInfo.addVariable("param", expectedValue); in testGetValues003_Char()
86 MethodInfo methodInfo = tester.addTestMethod("runBreakpointShort"); in testGetValues004_Short() local
87 methodInfo.addVariable("param", oldValue); in testGetValues004_Short()
102 MethodInfo methodInfo = tester.addTestMethod("runBreakpointInt"); in testGetValues005_Int() local
103 methodInfo.addVariable("param", oldValue); in testGetValues005_Int()
[all …]
DSetValues002Test.java39 MethodInfo methodInfo = tester.addTestMethod("runBreakpointBoolean"); in testSetValues001_Boolean() local
40 methodInfo.addVariable("param", oldValue, newValue); in testSetValues001_Boolean()
56 MethodInfo methodInfo = tester.addTestMethod("runBreakpointByte"); in testSetValues002_Byte() local
57 methodInfo.addVariable("param", oldValue, newValue); in testSetValues002_Byte()
73 MethodInfo methodInfo = tester.addTestMethod("runBreakpointChar"); in testSetValues003_Char() local
74 methodInfo.addVariable("param", oldValue, newValue); in testSetValues003_Char()
90 MethodInfo methodInfo = tester.addTestMethod("runBreakpointShort"); in testSetValues004_Short() local
91 methodInfo.addVariable("param", oldValue, newValue); in testSetValues004_Short()
107 MethodInfo methodInfo = tester.addTestMethod("runBreakpointInt"); in testSetValues005_Int() local
108 methodInfo.addVariable("param", oldValue, newValue); in testSetValues005_Int()
[all …]
DJDWPStackFrameAccessTest.java141 MethodInfo methodInfo = new MethodInfo(methodName); in addTestMethod() local
142 testedMethods.add(methodInfo); in addTestMethod()
143 return methodInfo; in addTestMethod()
232 for (MethodInfo methodInfo : tester.getTestedMethods()) { in checkStackFrame()
233 String testMethodName = methodInfo.getMethodName(); in checkStackFrame()
236 boolean isSuspensionMethod = (methodInfo == suspensionMethodInfo); in checkStackFrame()
247 List<? extends VariableInfo> testedVariables = methodInfo.getVariables(); in checkStackFrame()
/external/javassist/src/main/javassist/
DCtBehavior.java30 protected MethodInfo methodInfo; field in CtBehavior
34 methodInfo = minfo; in CtBehavior()
44 MethodInfo srcInfo = src.methodInfo; in copy()
66 methodInfo = new MethodInfo(cp, srcInfo.getName(), srcInfo, map); in copy()
68 methodInfo.setSuperclass(destSuperName); in copy()
82 buffer.append(methodInfo.getDescriptor()); in extendToString()
99 return methodInfo; in getMethodInfo()
121 public MethodInfo getMethodInfo2() { return methodInfo; } in getMethodInfo2()
131 return AccessFlag.toModifier(methodInfo.getAccessFlags()); in getModifiers()
145 methodInfo.setAccessFlags(AccessFlag.of(mod)); in setModifiers()
[all …]
DCtMethod.java57 methodInfo = new MethodInfo(cp, mname, desc); in CtMethod()
171 cachedStringRep = methodInfo.getName() in getStringRep()
172 + Descriptor.getParamDescriptor(methodInfo.getDescriptor()); in getStringRep()
201 return methodInfo.getName(); in getName()
209 methodInfo.setName(newname); in setName()
254 setBody0(src.declaringClass, src.methodInfo, in setBody()
255 declaringClass, methodInfo, map); in setBody()
291 methodInfo.setCodeAttribute(cattr); in setWrappedBody()
292 methodInfo.setAccessFlags(methodInfo.getAccessFlags() in setWrappedBody()
DCtConstructor.java59 methodInfo = new MethodInfo(cp, "<init>", desc); in CtConstructor()
108 return methodInfo.isConstructor(); in isConstructor()
115 return methodInfo.isStaticInitializer(); in isClassInitializer()
137 if (methodInfo.isStaticInitializer()) in getName()
185 CodeAttribute codeAttr = methodInfo.getCodeAttribute(); in callsSuper()
234 setBody0(src.declaringClass, src.methodInfo, in setBody()
235 declaringClass, methodInfo, map); in setBody()
252 CodeAttribute ca = methodInfo.getCodeAttribute(); in insertBeforeBody()
254 Bytecode b = new Bytecode(methodInfo.getConstPool(), in insertBeforeBody()
266 methodInfo.rebuildStackMapIf6(cc.getClassPool(), cc.getClassFile2()); in insertBeforeBody()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
DIsObsoleteTest.java54 for (MethodInfo methodInfo : methodsInfo) { in testIsObsoleteTest001()
55 logWriter.println(methodInfo.toString()); in testIsObsoleteTest001()
62 packet.setNextValueAsMethodID(methodInfo.getMethodID()); in testIsObsoleteTest001()
DJDWPMethodVariableTableTestCase.java301 for (MethodInfo methodInfo : methodsInfo) { in checkMethodVariableTable()
302 logWriter.println(methodInfo.toString()); in checkMethodVariableTable()
308 packet.setNextValueAsMethodID(methodInfo.getMethodID()); in checkMethodVariableTable()
317 VariableTableChecker checker = getCheckerForMethod(methodInfo.getName()); in checkMethodVariableTable()
/external/proguard/src/proguard/retrace/
DReTrace.java458 MethodInfo methodInfo = (MethodInfo)methodInfoIterator.next(); in originalMethodName() local
459 if (methodInfo.matches(lineNumber, type, arguments)) in originalMethodName()
469 outLine.append(methodInfo.type).append(' '); in originalMethodName()
471 outLine.append(methodInfo.originalName); in originalMethodName()
474 outLine.append('(').append(methodInfo.arguments).append(')'); in originalMethodName()
490 extraBuffer.append(methodInfo.type).append(' '); in originalMethodName()
492 extraBuffer.append(methodInfo.originalName); in originalMethodName()
495 extraBuffer.append('(').append(methodInfo.arguments).append(')'); in originalMethodName()
/external/doclava/src/com/google/doclava/
DConverter.java363 MethodInfo methodInfo = Converter.obtainMethod(method); in getHiddenMethods() local
364 if (methodInfo.isHidden()) { in getHiddenMethods()
365 hiddenMethods.add(methodInfo); in getHiddenMethods()
377 MethodInfo methodInfo = Converter.obtainMethod(method); in getRemovedMethods() local
378 if (methodInfo.isRemoved()) { in getRemovedMethods()
379 removedMethods.add(methodInfo); in getRemovedMethods()
408 MethodInfo methodInfo = Converter.obtainMethod(method); in convertAllMethods() local
409 allMethods.add(methodInfo); in convertAllMethods()
423 MethodInfo methodInfo = Converter.obtainMethod(method); in convertMethods() local
424 if (methodInfo.checkLevel()) { in convertMethods()
[all …]
/external/deqp/modules/glshared/
DglsDrawTest.cpp2416 const MethodInfo methodInfo = getMethodInfo(drawMethod); in getName() local
2417 const bool hasFirst = methodInfo.first; in getName()
2418 const bool instanced = methodInfo.instanced; in getName()
2419 const bool ranged = methodInfo.ranged; in getName()
2420 const bool indexed = methodInfo.indexed; in getName()
2844 const MethodInfo methodInfo = getMethodInfo(drawMethod); in hash() local
2845 const bool arrayed = methodInfo.first; in hash()
2846 const bool instanced = methodInfo.instanced; in hash()
2847 const bool ranged = methodInfo.ranged; in hash()
2848 const bool indexed = methodInfo.indexed; in hash()
[all …]
/external/objenesis/main/src/test/java/org/objenesis/
DClassReader.java319 method_info methodInfo = new method_info(in); in readClass() local
320 System.out.println("for " + methodInfo); in readClass()
/external/javassist/src/main/javassist/bytecode/
DInstructionPrinter.java123 return opstring + " " + methodInfo(pool, iter.u16bitAt(pos + 1)); in instructionString()
207 private static String methodInfo(ConstPool pool, int index) { in methodInfo() method in InstructionPrinter