HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 26 - 50 of 680) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
StackMapFrameVisitor.java 35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame);
36 public void visitSameOneFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame);
37 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame);
38 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame);
39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame)
    [all...]
  /dalvik/vm/oo/
Object.h 33 struct Method;
52 const Method* method, struct Thread* self);
58 ACC_MIRANDA = 0x8000, // method (internal to VM)
105 * Use the top 16 bits of the access flags field for other method flags.
109 METHOD_ISWRITABLE = (1<<31), // the method's code is writable
113 * Get/set method flags.
115 #define SET_METHOD_FLAG(method, flag) \
116 do { (method)->accessFlags |= (flag); } while (0)
118 #define CLEAR_METHOD_FLAG(method, flag)
    [all...]
  /dalvik/vm/analysis/
Optimize.h 31 void dvmUpdateCodeUnit(const Method* meth, u2* ptr, u2 newVal);
39 Method* dvmOptResolveMethod(ClassObject* referrer, u4 methodIdx,
41 Method* dvmOptResolveInterfaceMethod(ClassObject* referrer, u4 methodIdx);
  /external/apache-harmony/annotation/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
AnnotationTypeMismatchExceptionTest.java 21 import java.lang.reflect.Method;
33 * @tests java.lang.annotation.AnnotationTypeMismatchException#AnnotationTypeMismatchException(Method,
38 Method[] methods = Class.forName("java.lang.String").getMethods();
39 Method m = methods[0];
43 assertSame("wrong method name", m, e.element());
  /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/proguard/src/proguard/evaluation/
InvocationUnit.java 29 * This interface sets up the variables for entering a method,
37 * Sets up the given variables for entering the given method.
40 Method method,
45 * Exits the given method with the given return value.
48 Method method,
54 * field or method reference instruction.
57 Method method,
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
BoundedGenericMethodsTests.java 19 import java.lang.reflect.Method;
47 * @param method
48 * the declaring method
50 private void checkBoundedTypeParameter(Method method) {
51 TypeVariable<Method> typeParameter = getTypeParameter(method);
53 assertEquals(method, typeParameter.getGenericDeclaration());
62 * Tests whether the specified method declares a parameter with the type of
65 * @param method
108 Method method = clazz.getMethod("noParamNoReturn"); local
112 Method method = clazz.getMethod("paramNoReturn", BoundedGenericMethods.class); local
117 Method method = clazz.getMethod("noParamReturn"); local
123 Method method = clazz.getMethod("paramReturn", BoundedGenericMethods.class); local
    [all...]
  /packages/apps/Music/src/com/android/music/
SharedPreferencesCompat.java 22 import java.lang.reflect.Method;
29 private static final Method sApplyMethod = findApplyMethod();
31 private static Method findApplyMethod() {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
SharedPreferencesCompat.java 22 import java.lang.reflect.Method;
29 private static final Method sApplyMethod = findApplyMethod();
31 private static Method findApplyMethod() {
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MethodOverridesTest.java 19 import java.lang.reflect.Method;
30 Method method = StringBuilder.class.getMethod("append", char.class); local
31 assertEquals("append", method.getName());
35 Method method = StringBuilder.class.getMethod("append", char.class); local
37 Arrays.asList(method.getParameterTypes()));
41 Method method = StringBuilder.class.getMethod("append", char.class); local
42 assertEquals(StringBuilder.class, method.getDeclaringClass())
46 Method method = StringBuilder.class.getMethod("append", char.class); local
51 Method method = StringBuilder.class.getMethod("append", char.class); local
82 Method method = Sub.class.getMethod("returner"); local
92 Method method = Sub.class.getMethod("returner"); local
109 Method method = Sub.class.getMethod("visibility"); local
126 Method method = PublicSub.class.getMethod("unchanged"); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
Method.java 24 public interface Method
28 * Get the <i>effective</i> method descriptor, which includes, if
31 * @return {@code non-null;} the effective method descriptor
  /dalvik/vm/interp/
InterpDefs.h 51 Object* dvmGetThisPtr(const Method* method, const u4* fp);
56 void dvmInterpCheckTrackedRefs(Thread* self, const Method* method,
72 * Find an interface method.
74 Method* dvmInterpFindInterfaceMethod(ClassObject* thisClass, u4 methodIdx,
75 const Method* method, DvmDex* methodClassDex);
Stack.h 36 (method arguments) and "locals" (local variables). The "outs" (arguments
76 become the parameters to the called method. The VM guarantees that there
78 into a method.
86 We push two stack frames on when calling an interpreted or native method
90 stack might look like an uninterrupted series of interpreted method calls.
91 The second frame is for the method itself.
95 NULL method pointer.
97 When calling a native method from interpreted code, the stack setup is
98 essentially identical to calling an interpreted method. Because it's a
99 native method, though, there are never any "locals" or "outs"
137 const Method* method; member in struct:StackSaveArea
    [all...]
Interp.h 41 void dvmInterpret(Thread* thread, const Method* method, JValue* pResult);
47 * instruction. "method" is the method currently being executed.
49 extern "C" void dvmThrowVerificationError(const Method* method,
63 void dvmAddBreakAddr(Method* method, unsigned int instrOffset);
64 void dvmClearBreakAddr(Method* method, unsigned int instrOffset)
    [all...]
  /external/proguard/src/proguard/classfile/attribute/visitor/
ExceptionInfoVisitor.java 36 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo);
LineNumberInfoVisitor.java 37 public void visitLineNumberInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfo lineNumberInfo);
LocalVariableInfoVisitor.java 37 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo);
LocalVariableTypeInfoVisitor.java 37 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo);
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AnnotationVisitor.java 38 public void visitAnnotation(Clazz clazz, Method method, Annotation annotation);
39 public void visitAnnotation(Clazz clazz, Method method, int parameterIndex, Annotation annotation);
  /libcore/luni/src/main/java/java/lang/
Void.java 20 import java.lang.reflect.Method;
40 Method method = Runnable.class.getMethod("run", EmptyArray.CLASS); local
41 return (Class<Void>) method.getReturnType();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/compat/
VoiceInputLoggerCompatUtils.java 22 import java.lang.reflect.Method;
28 private static final Method METHOD_UserHappinessSignals_setHasVoiceLoggingInfo =
  /external/proguard/src/proguard/optimize/info/
BackwardBranchMarker.java 41 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
44 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
46 markBackwardBranch(method, branchInstruction.branchOffset);
50 public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction)
52 markBackwardBranch(method, switchInstruction.defaultOffset);
56 markBackwardBranch(method, switchInstruction.jumpOffsets[index]);
64 * Marks the given method if the given branch offset is negative
    [all...]
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/vm/reflect/
Reflect.h 54 * Get the named method.
69 Method* dvmSlotToMethod(ClassObject* clazz, int slot);
99 * Return the class object that matches the method's signature. For
102 ClassObject* dvmGetBoxedReturnType(const Method* meth);
108 Method* dvmGetMethodFromReflectObj(Object* obj);
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
115 * class is java.lang.reflect.Method"
    [all...]
  /external/chromium/base/
observer_list_threadsafe.h 141 template <class Method>
142 void Notify(Method m) {
143 UnboundMethod<ObserverType, Method, Tuple0> method(m, MakeTuple());
144 Notify<Method, Tuple0>(method);
147 template <class Method, class A>
148 void Notify(Method m, const A &a) {
149 UnboundMethod<ObserverType, Method, Tuple1<A> > method(m, MakeTuple(a))
    [all...]

Completed in 494 milliseconds

12 3 4 5 6 7 8 91011>>