Home
last modified time | relevance | path

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

/external/r8/src/main/java/com/android/tools/r8/ir/desugar/
DLambdaBridgeMethodSourceCode.java18 private final DexMethod mainMethod; field in LambdaBridgeMethodSourceCode
20 LambdaBridgeMethodSourceCode(LambdaClass lambda, DexMethod mainMethod, DexMethod bridgeMethod) { in LambdaBridgeMethodSourceCode() argument
22 this.mainMethod = mainMethod; in LambdaBridgeMethodSourceCode()
48 this.mainMethod, this.mainMethod.proto, argMoveTypes, argRegisters)); in prepareInstructions()
DLambdaClass.java143 DexMethod mainMethod = rewriter.factory in synthesizeVirtualMethods() local
146 mainMethod, in synthesizeVirtualMethods()
150 new SynthesizedCode(new LambdaMainMethodSourceCode(this, mainMethod))); in synthesizeVirtualMethods()
162 new LambdaBridgeMethodSourceCode(this, mainMethod, bridgeMethod))); in synthesizeVirtualMethods()
DLambdaMainMethodSourceCode.java27 LambdaMainMethodSourceCode(LambdaClass lambda, DexMethod mainMethod) { in LambdaMainMethodSourceCode() argument
28 super(lambda, mainMethod); in LambdaMainMethodSourceCode()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DThisObjectTest.java172 String mainMethod = "main"; in testThisObjectTest001() local
173 if (mainMethod.equals(methodName)) { in testThisObjectTest001()
174 logWriter.println("==> frame for method: " + mainMethod); in testThisObjectTest001()
177 ("## FAILURE: Returned unexpected ObjectID for method: " + mainMethod); in testThisObjectTest001()
181 fail("Returned unexpected ObjectID for method: " + mainMethod); in testThisObjectTest001()
185 … ("## FAILURE: StackFrame.ThisObject returned not OBJECT_TAG for method: " + mainMethod); in testThisObjectTest001()
187 … fail("StackFrame.ThisObject returned not OBJECT_TAG for method: " + mainMethod); in testThisObjectTest001()
/external/smali/smali/src/test/java/org/jf/smali/
DImplicitReferenceTest.java74 Method mainMethod = null; in testImplicitMethodReference() local
77 mainMethod = method; in testImplicitMethodReference()
80 Assert.assertNotNull(mainMethod); in testImplicitMethodReference()
82 MethodImplementation methodImpl = mainMethod.getImplementation(); in testImplicitMethodReference()
169 Method mainMethod = null; in testImplicitFieldReference() local
172 mainMethod = method; in testImplicitFieldReference()
175 Assert.assertNotNull(mainMethod); in testImplicitFieldReference()
177 MethodImplementation methodImpl = mainMethod.getImplementation(); in testImplicitFieldReference()
/external/jdiff/src/jdiff/
DJDiff.java219 Method mainMethod = c.getMethod("main", methodArgTypes); in runAnt() local
223 Integer res = (Integer)mainMethod.invoke(null, methodArgs); in runAnt()
/external/r8/src/test/java/com/android/tools/r8/smali/
DOutlineTest.java529 DexEncodedMethod mainMethod = getMethod(processedApplication, mainSignature); in invokeStatic() local
530 DexCode mainCode = mainMethod.getCode().asDexCode(); in invokeStatic()