/external/chromium_org/third_party/WebKit/ManualTests/resources/ |
TestApplet.java | 12 public int method() method in class:TestApplet
|
/external/javassist/src/main/javassist/compiler/ast/ |
CallExpr.java | 23 * Method call expression. 26 private MemberResolver.Method method; // cached result of lookupMethod() field in class:CallExpr 30 method = null; 33 public void setMethod(MemberResolver.Method m) { 34 method = m; 37 public MemberResolver.Method getMethod() { 38 return method;
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_methods.h | 2 * EAP server method registration 15 EapType method); 17 EapType method, const char *name); 18 void eap_server_method_free(struct eap_method *method); 19 int eap_server_method_register(struct eap_method *method); 25 /* EAP server method registration calls for statically linked in methods */
|
/libcore/luni/src/main/java/java/lang/reflect/ |
InvocationHandler.java | 28 * Handles the method which was originally invoked on the proxy instance. A 32 * public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { 33 * //do some processing before the method invocation 35 * //invoke the method 36 * Object result = method.invoke(proxy, args); 38 * //do some processing after the method invocation 43 * the proxy instance on which the method was invoked 44 * @param method 45 * the method invoked on the proxy instanc [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super/d/ |
TSuper.d | 19 .method public <init>()V 24 .end method 26 .method public toInt()I 30 .end method 32 .method public toInt(F)I 36 .end method 38 .method public native toIntNative()I 39 .end method 41 .method public static toIntStatic()I 45 .end method [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super_range/d/ |
TSuper.d | 19 .method public <init>()V 24 .end method 26 .method public toInt()I 30 .end method 32 .method public toInt(F)I 36 .end method 38 .method public native toIntNative()I 39 .end method 41 .method public static toIntStatic()I 45 .end method [all...] |
/external/apache-http/src/org/apache/http/message/ |
BasicHttpRequest.java | 51 private final String method; field in class:BasicHttpRequest 54 public BasicHttpRequest(final String method, final String uri) { 56 if (method == null) { 57 throw new IllegalArgumentException("Method name may not be null"); 62 this.method = method; 67 public BasicHttpRequest(final String method, final String uri, final ProtocolVersion ver) { 68 this(new BasicRequestLine(method, uri, ver)); 77 this.method = requestline.getMethod(); 94 return new BasicRequestLine(this.method, this.uri, ver) [all...] |
/dalvik/vm/interp/ |
Stack.cpp | 18 * Stacks and their uses (e.g. native --> interpreted method calls). 48 * We're calling an interpreted method from an internal VM function or 51 * Push a frame for an interpreted method onto the stack. This is only 63 static bool dvmPushInterpFrame(Thread* self, const Method* method) 70 assert(!dvmIsNativeMethod(method)); 71 assert(!dvmIsAbstractMethod(method)); 73 stackReq = method->registersSize * 4 // params + locals 75 + method->outsSize * 4; // args to other methods 87 self->interpStackSize, method->clazz->descriptor, method->name) [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/dexgen/src/com/android/dexgen/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...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
ParameterAnnotationStruct.java | 28 * Association of a method and its parameter annotations. 32 /** {@code non-null;} the method in question */ 33 private final CstMethodRef method; field in class:ParameterAnnotationStruct 44 * @param method {@code non-null;} the method in question 47 public ParameterAnnotationStruct(CstMethodRef method, 49 if (method == null) { 50 throw new NullPointerException("method == null"); 57 this.method = method; [all...] |
/external/dexmaker/src/dx/java/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/javassist/src/test/test/javassist/bytecode/analysis/ |
AnalyzerTest.java | 31 CtMethod method = clazz.getDeclaredMethod("commonSuperArray"); local 32 verifyArrayLoad(clazz, method, "java.lang.Number"); 38 CtMethod method = clazz.getDeclaredMethod("commonInterfaceArray"); local 39 verifyArrayLoad(clazz, method, "java.io.Serializable"); 43 CtMethod method = ClassPool.getDefault().getMethod( local 45 verifyReturn(method, "java.io.Serializable"); 47 method = ClassPool.getDefault().getMethod( 49 verifyReturn(method, "java.io.Serializable"); 51 method = ClassPool.getDefault().getMethod( 53 verifyReturn(method, getClass().getName() + "$Dummy$A") 57 CtMethod method = ClassPool.getDefault().getMethod( local 67 CtMethod method = ClassPool.getDefault().getMethod( local 149 CtMethod method = generateDeadCode(ClassPool.getDefault()); local 159 CtMethod method = generateInvalidCode(ClassPool.getDefault()); local 171 CtMethod method = generateCodeFalloff(ClassPool.getDefault()); local 183 CtMethod method = generateJsrMerge(ClassPool.getDefault()); local 190 CtMethod method = generateJsrMerge2(ClassPool.getDefault()); local 199 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local 219 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local 236 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local 251 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local 275 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local [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...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/ |
RemoteObject.java | 37 import java.lang.reflect.Method; 54 * Contains {@link MethodDef method definitions} for all exposed 61 * a method ID. 63 HashMap<Method, Integer> methodMap = new HashMap<Method, Integer>(); 81 private boolean methodEquals(MethodDef methodDef, Method method){ 82 Class<?>[] interfaceTypes = method.getParameterTypes(); 103 HashMap<String, ArrayList<Method>> nameToMethods 104 = new HashMap<String, ArrayList<Method>>(); [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-tf/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
|