/dalvik/vm/interp/ |
Stack.c | 18 * Stacks and their uses (e.g. native --> interpreted method calls). 44 * We're calling an interpreted method from an internal VM function or 47 * Push a frame for an interpreted method onto the stack. This is only 59 static bool dvmPushInterpFrame(Thread* self, const Method* method) 66 assert(!dvmIsNativeMethod(method)); 67 assert(!dvmIsAbstractMethod(method)); 69 stackReq = method->registersSize * 4 // params + locals 71 + method->outsSize * 4; // args to other methods 83 self->interpStackSize, method->clazz->descriptor, method->name) 1116 const Method* method = saveArea->method; local 1190 const Method* method; local [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
SurfaceTest.java | 44 method = "lockCanvas", 50 method = "unlockCanvas", 56 method = "unlockCanvasAndPost", 62 method = "clear", 68 method = "describeContents", 74 method = "isValid", 80 method = "setLayer", 86 method = "setPosition", 92 method = "setSize", 98 method = "hide" [all...] |
/dalvik/vm/mterp/x86-atom/ |
OP_INVOKE_STATIC.S | 19 * Code: Call static direct method. Provides an "isrange" variable and 25 * Description: invoke-static is used to invoke static direct method. 47 FETCH 1, %eax # %eax<- method index 49 movl (%ecx, %eax, 4), %ecx # %ecx<- resolved method to call 52 jne common_invokeMethod${routine} # invoke method common code 57 movl offGlue_method(%edx), %edx # %edx<- glue->method 58 movl $$METHOD_STATIC, -4(%esp) # resolver method type 59 movl %eax, -8(%esp) # push parameter method index 60 movl offMethod_clazz(%edx), %edx # %edx<- glue->method->clazz 61 movl %edx, -12(%esp) # push parameter method [all...] |
/external/proguard/src/proguard/optimize/ |
ChangedCodePrinter.java | 117 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) 119 attributeVisitor.visitDeprecatedAttribute(clazz, method, deprecatedAttribute); 123 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute) 125 attributeVisitor.visitSyntheticAttribute(clazz, method, syntheticAttribute); 129 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttribute) 131 attributeVisitor.visitSignatureAttribute(clazz, method, syntheticAttribute); 141 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute [all...] |
/dalvik/libcore/sql/src/test/java/tests/sql/ |
ResultSetNotSupportedTests.java | 31 * Test method for {@link java.sql.ResultSet#getArray(int)}. 36 method = "getArray", 45 * Test method for {@link java.sql.ResultSet#getArray(java.lang.String)}. 50 method = "getArray", 60 * Test method for {@link java.sql.ResultSet#getAsciiStream(int)}. 65 method = "getAsciiStream", 74 * Test method for {@link java.sql.ResultSet#getAsciiStream(java.lang.String)}. 79 method = "getAsciiStream", 88 * Test method for {@link java.sql.ResultSet#getBigDecimal(int)}. 93 method = "getBigDecimal" [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
ParameterAnnotationStruct.java | 29 * Association of a method and its parameter annotations. 33 /** {@code non-null;} the method in question */ 34 private final CstMethodRef method; field in class:ParameterAnnotationStruct 45 * @param method {@code non-null;} the method in question 48 public ParameterAnnotationStruct(CstMethodRef method, 50 if (method == null) { 51 throw new NullPointerException("method == null"); 58 this.method = method; [all...] |
/external/proguard/src/proguard/classfile/attribute/visitor/ |
AttributeVisitor.java | 48 public void visitDeprecatedAttribute( Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute); 52 public void visitSyntheticAttribute( Clazz clazz, Method method, SyntheticAttribute syntheticAttribute); 56 public void visitSignatureAttribute( Clazz clazz, Method method, SignatureAttribute signatureAttribute); 64 public void visitExceptionsAttribute( Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute); 65 public void visitCodeAttribute( Clazz clazz, Method method, CodeAttribute codeAttribute) [all...] |
/external/proguard/src/proguard/optimize/info/ |
AccessMethodMarker.java | 45 private Method invokingMethod; 50 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} 53 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) 55 invokingMethod = method; 128 private static void setAccessesPrivateCode(Method method) 130 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); 139 * Returns whether the given method accesses private class members [all...] |
/dalvik/libcore/sql/src/test/java/tests/javax/sql/ |
RowSetTest.java | 38 method = "addRowSetListener", 51 method = "clearParameters", 64 method = "execute", 78 method = "setCommand", 84 method = "getCommand", 99 method = "setDataSourceName", 105 method = "getDataSourceName", 116 method = "getEscapeProcessing", 126 method = "getMaxFieldSize", 137 method = "getMaxRows" [all...] |
/cts/tests/tests/telephony/src/android/telephony/cts/ |
ServiceStateTest.java | 35 method = "describeContents", 40 method = "equals", 45 method = "getIsManualSelection", 50 method = "getOperatorAlphaLong", 55 method = "getOperatorAlphaShort", 60 method = "getOperatorNumeric", 65 method = "getRoaming", 70 method = "getState", 75 method = "hashCode", 80 method = "ServiceState" [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
DebugTest.java | 46 method = "changeDebugPort", 54 method = "enableEmulatorTraceOutput", 62 method = "isDebuggerConnected", 70 method = "printLoadedClasses", 81 method = "setAllocationLimit", 89 method = "setGlobalAllocationLimit", 98 method = "startMethodTracing", 103 method = "startMethodTracing", 108 method = "startMethodTracing", 113 method = "startMethodTracing" [all...] |
/build/tools/droiddoc/test/stubs/src/com/android/stubs/a/ |
A.java | 30 public void method() { method in class:A 35 int method() { method in class:A.Inner
|
/cts/tools/vm-tests/src/dot/junit/opcodes/if_eq/d/ |
T_if_eq_1.d | 6 .method public <init>()V 11 .end method 13 .method public run(II)I 24 .end method
|
T_if_eq_10.d | 6 .method public <init>()V 11 .end method 13 .method public run(II)Z 23 .end method
|
T_if_eq_11.d | 6 .method public <init>()V 11 .end method 13 .method public run(Ljava/lang/String;Ljava/lang/String;)V 26 .end method
|
T_if_eq_12.d | 6 .method public <init>()V 11 .end method 13 .method public run(II)I 24 .end method
|
T_if_eq_2.d | 6 .method public <init>()V 11 .end method 13 .method public run(Ljava/lang/String;Ljava/lang/String;)I 24 .end method
|
T_if_eq_4.d | 6 .method public <init>()V 11 .end method 13 .method public run(FI)I 24 .end method
|
T_if_eq_5.d | 6 .method public <init>()V 11 .end method 13 .method public run(II)I 24 .end method
|
T_if_eq_7.d | 6 .method public <init>()V 11 .end method 13 .method public run(ID)I 24 .end method
|
T_if_eq_8.d | 6 .method public <init>()V 11 .end method 13 .method public run(JI)I 24 .end method
|
T_if_eq_9.d | 6 .method public <init>()V 11 .end method 13 .method public run(ILjava/lang/String;)I 24 .end method
|
/cts/tools/vm-tests/src/dot/junit/opcodes/if_eqz/d/ |
T_if_eqz_1.d | 6 .method public <init>()V 11 .end method 13 .method public run(I)I 23 .end method
|
T_if_eqz_10.d | 6 .method public <init>()V 11 .end method 13 .method public run(I)Z 24 .end method
|
T_if_eqz_11.d | 6 .method public <init>()V 11 .end method 13 .method public run(I)Z 23 .end method
|