Searched defs:method (Results 1 - 25 of 107) sorted by relevance

12345

/dalvik/dx/tests/115-merge/testdata/
H A DBasic.java7 String method() { method in class:Basic
8 return "this is a method result";
H A DTryCatchFinally.java5 public static void method() { method in class:TryCatchFinally
H A DAnnotated.java14 @Annotated.Marker(a="on method")
15 public void method(String a, @Annotated.Marker(a="on parameter") String b) {} method in class:Annotated
/dalvik/vm/mterp/common/
H A DFindInterface.h30 u4 methodIdx, const Method* method, DvmDex* methodClassDex)
33 dvmInterpFindInterfaceMethod(thisClass, methodIdx, method, methodClassDex)
29 dvmFindInterfaceMethodInCache(ClassObject* thisClass, u4 methodIdx, const Method* method, DvmDex* methodClassDex) argument
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DBlockAddresses.java27 * the blocks of a particular method. Each block has a corresponding
47 * @param method {@code non-null;} the method to have block addresses for
49 public BlockAddresses(RopMethod method) { argument
50 BasicBlockList blocks = method.getBlocks();
57 setupArrays(method);
126 private void setupArrays(RopMethod method) { argument
127 BasicBlockList blocks = method.getBlocks();
H A DStdCatchBuilder.java38 /** {@code non-null;} method to build the list for */
39 private final RopMethod method; field in class:StdCatchBuilder
51 * @param method {@code non-null;} method to build the list for
55 public StdCatchBuilder(RopMethod method, int[] order, argument
57 if (method == null) {
58 throw new NullPointerException("method == null");
69 this.method = method;
76 return build(method, orde
122 build(RopMethod method, int[] order, BlockAddresses addresses) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DMethodIdItem.java22 * Representation of a method reference inside a Dalvik file.
28 * @param method {@code non-null;} the constant for the method
30 public MethodIdItem(CstBaseMethodRef method) { argument
31 super(method);
50 * Gets the method constant.
H A DMethodAnnotationStruct.java26 * Association of a method and its annotations.
30 /** {@code non-null;} the method in question */
31 private final CstMethodRef method; field in class:MethodAnnotationStruct
39 * @param method {@code non-null;} the method in question
42 public MethodAnnotationStruct(CstMethodRef method, argument
44 if (method == null) {
45 throw new NullPointerException("method == null");
52 this.method = method;
[all...]
H A DMethodIdsSection.java32 * {@code non-null;} map from method constants to {@link
95 * @param method {@code non-null;} the reference to intern
98 public MethodIdItem intern(CstBaseMethodRef method) { argument
99 if (method == null) {
100 throw new NullPointerException("method == null");
105 MethodIdItem result = methodIds.get(method);
108 result = new MethodIdItem(method);
109 methodIds.put(method, result);
H A DParameterAnnotationStruct.java29 * 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, argument
50 if (method == null) {
51 throw new NullPointerException("method == null");
58 this.method = method;
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DLocalVariableExtractor.java24 * a method.
27 /** {@code non-null;} method being extracted from */
28 private final RopMethod method; field in class:LocalVariableExtractor
30 /** {@code non-null;} block list for the method */
40 * Extracts out all the local variable information from the given method.
42 * @param method {@code non-null;} the method to extract from
45 public static LocalVariableInfo extract(RopMethod method) { argument
46 LocalVariableExtractor lve = new LocalVariableExtractor(method);
51 * Constructs an instance. This method i
55 LocalVariableExtractor(RopMethod method) argument
[all...]
/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttEnclosingMethod.java33 /** {@code null-ok;} the name-and-type of the innermost enclosing method, if any */
34 private final CstNat method; field in class:AttEnclosingMethod
40 * @param method {@code null-ok;} the name-and-type of the innermost enclosing
41 * method, if any
43 public AttEnclosingMethod(CstType type, CstNat method) { argument
51 this.method = method;
69 * Gets the name-and-type of the innermost enclosing method, if
73 * method, if any
76 return method;
[all...]
/dalvik/dx/src/com/android/dx/cf/iface/
H A DStdMethodList.java41 * Sets the method at the given index.
43 * @param n {@code >= 0, < size();} which method
44 * @param method {@code null-ok;} the method object
46 public void set(int n, Method method) { argument
47 set0(n, method);
/dalvik/dx/src/com/android/dx/dex/code/
H A DBlockAddresses.java27 * the blocks of a particular method. Each block has a corresponding
47 * @param method {@code non-null;} the method to have block addresses for
49 public BlockAddresses(RopMethod method) { argument
50 BasicBlockList blocks = method.getBlocks();
57 setupArrays(method);
126 private void setupArrays(RopMethod method) { argument
127 BasicBlockList blocks = method.getBlocks();
H A DStdCatchBuilder.java37 /** {@code non-null;} method to build the list for */
38 private final RopMethod method; field in class:StdCatchBuilder
50 * @param method {@code non-null;} method to build the list for
54 public StdCatchBuilder(RopMethod method, int[] order, argument
56 if (method == null) {
57 throw new NullPointerException("method == null");
68 this.method = method;
75 return build(method, orde
121 build(RopMethod method, int[] order, BlockAddresses addresses) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DMethodIdItem.java22 * Representation of a method reference inside a Dalvik file.
28 * @param method {@code non-null;} the constant for the method
30 public MethodIdItem(CstBaseMethodRef method) { argument
31 super(method);
50 * Gets the method constant.
/dalvik/dx/src/com/android/dx/rop/code/
H A DLocalVariableExtractor.java24 * a method.
27 /** {@code non-null;} method being extracted from */
28 private final RopMethod method; field in class:LocalVariableExtractor
30 /** {@code non-null;} block list for the method */
40 * Extracts out all the local variable information from the given method.
42 * @param method {@code non-null;} the method to extract from
45 public static LocalVariableInfo extract(RopMethod method) { argument
46 LocalVariableExtractor lve = new LocalVariableExtractor(method);
51 * Constructs an instance. This method i
55 LocalVariableExtractor(RopMethod method) argument
[all...]
/dalvik/dx/src/com/android/dx/ssa/
H A DLocalVariableExtractor.java28 * a method. Stolen and retrofitted from
35 /** {@code non-null;} method being extracted from */
36 private final SsaMethod method; field in class:LocalVariableExtractor
38 /** {@code non-null;} block list for the method */
48 * Extracts out all the local variable information from the given method.
50 * @param method {@code non-null;} the method to extract from
53 public static LocalVariableInfo extract(SsaMethod method) { argument
54 LocalVariableExtractor lve = new LocalVariableExtractor(method);
59 * Constructs an instance. This method i
63 LocalVariableExtractor(SsaMethod method) argument
[all...]
/dalvik/tests/044-proxy/src/
H A DClash.java65 public Object invoke(Object proxy, Method method, Object[] args) argument
H A DClash2.java55 public Object invoke(Object proxy, Method method, Object[] args) argument
/dalvik/vm/mterp/armv5te/
H A Ddebug.cpp32 //const Method* method = self->method;
35 // method->clazz->descriptor, method->name, method->shorty);
51 saveArea->method, saveArea->xtra.currentPc);
55 saveArea->method, saveArea->xtra.currentPc,
63 void dvmMterpPrintMethod(Method* method) argument
66 * It is a direct (non-virtual) method if it is static, private,
70 ((method
[all...]
/dalvik/vm/mterp/mips/
H A Ddebug.cpp42 //const Method* method = self->method;
45 // method->clazz->descriptor, method->name, method->signature);
61 saveArea->method, saveArea->xtra.currentPc);
65 saveArea->method, saveArea->xtra.currentPc,
73 void dvmMterpPrintMethod(Method* method) argument
76 * It is a direct (non-virtual) method if it is static, private,
80 ((method
[all...]
/dalvik/vm/native/
H A Djava_lang_Object.cpp64 const Method* method, Thread* self)
76 const Method* method, Thread* self)
88 const Method* method, Thread* self)
63 Dalvik_java_lang_Object_notify(const u4* args, JValue* pResult, const Method* method, Thread* self) argument
75 Dalvik_java_lang_Object_notifyAll(const u4* args, JValue* pResult, const Method* method, Thread* self) argument
87 Dalvik_java_lang_Object_wait(const u4* args, JValue* pResult, const Method* method, Thread* self) argument
/dalvik/vm/reflect/
H A DReflect.h54 * Get the named method.
99 * Return the class object that matches the method's signature. For
110 Object* dvmCreateReflectObjForMethod(const ClassObject* clazz, Method* method);
113 * Quick test to determine if the method in question is a reflection call.
114 * Used for some stack parsing. Currently defined as "the method's declaring
117 INLINE bool dvmIsReflectionMethod(const Method* method) argument
119 return (method->clazz == gDvm.classJavaLangReflectMethod);
134 * Return an array of Annotation objects for the specified piece. For method
140 ArrayObject* dvmGetMethodAnnotations(const Method* method);
142 ArrayObject* dvmGetParameterAnnotations(const Method* method);
[all...]
/dalvik/dx/src/com/android/dx/command/dump/
H A DArgs.java53 /** if non-null, an explicit method to dump */
54 String method; field in class:Args

Completed in 560 milliseconds

12345