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

1 2 3 4 56 7 8 91011>>

  /external/proguard/src/proguard/classfile/attribute/
LineNumberTableAttribute.java 82 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
84 attributeVisitor.visitLineNumberTableAttribute(clazz, method, codeAttribute, this);
91 public void lineNumbersAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfoVisitor lineNumberInfoVisitor)
97 lineNumberInfoVisitor.visitLineNumberInfo(clazz, method, codeAttribute, lineNumberTable[index]);
LocalVariableTableAttribute.java 61 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
63 attributeVisitor.visitLocalVariableTableAttribute(clazz, method, codeAttribute, this);
70 public void localVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfoVisitor localVariableInfoVisitor)
76 localVariableInfoVisitor.visitLocalVariableInfo(clazz, method, codeAttribute, localVariableTable[index]);
LocalVariableTypeTableAttribute.java 61 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
63 attributeVisitor.visitLocalVariableTypeTableAttribute(clazz, method, codeAttribute, this);
70 public void localVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfoVisitor localVariableTypeInfoVisitor)
76 localVariableTypeInfoVisitor.visitLocalVariableTypeInfo(clazz, method, codeAttribute, localVariableTypeTable[index]);
UnknownAttribute.java 73 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
78 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
  /external/proguard/src/proguard/classfile/attribute/preverification/
StackMapAttribute.java 71 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
73 attributeVisitor.visitStackMapAttribute(clazz, method, codeAttribute, this);
80 public void stackMapFramesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapFrameVisitor stackMapFrameVisitor)
88 stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, stackMapFrame.getOffsetDelta(), stackMapFrame);
  /external/proguard/src/proguard/classfile/editor/
InstructionAdder.java 58 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
65 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
  /external/proguard/src/proguard/optimize/info/
NoSideEffectMethodMarker.java 66 private static void markNoSideEffects(Method method)
68 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
75 MethodLinker.lastMember(method).setVisitorInfo(KEPT_BUT_NO_SIDE_EFFECTS);
80 public static boolean hasNoSideEffects(Method method)
82 if (MethodLinker.lastVisitorAccepter(method).getVisitorInfo() == KEPT_BUT_NO_SIDE_EFFECTS)
87 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
SideEffectInstructionChecker.java 59 public boolean hasSideEffects(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
63 instruction.accept(clazz, method, codeAttribute, offset, this);
71 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
74 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
105 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
118 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction
    [all...]
SideEffectMethodMarker.java 91 // Look further if the method hasn't been marked yet.
98 // Mark the method depending on the return value.
114 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
117 hasSideEffects = hasSideEffects(clazz, method, codeAttribute);
127 Method method,
142 method,
159 private static void markSideEffects(Method method)
    [all...]
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/annotation/
HasClassAnnotationTest.java 22 import java.lang.reflect.Method;
39 Method method = aClass.getMethod("testSomeTest"); local
41 TestMethod testMethod = new TestMethod(method, aClass);
HasMethodAnnotationTest.java 23 import java.lang.reflect.Method;
42 Method method = aClass.getMethod(methodName); local
43 TestMethod testMethod = new TestMethod(method, aClass);
  /frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
DynamicProxy.java 21 import java.lang.reflect.Method;
25 * Contains a utility method for adapting a given interface against a real implementation.
34 * proxy object implementing that interface, which will forward all method calls made on the
50 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
53 .getMethod(method.getName(), method.getParameterTypes())
  /libcore/luni/src/main/java/org/xml/sax/helpers/
NewInstance.java 11 import java.lang.reflect.Method;
23 * <p>This class contains a static method for creating an instance of a
60 Method m = null;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
ArraysCompatUtils.java 19 import java.lang.reflect.Method;
23 private static final Method METHOD_Arrays_binarySearch = CompatUtils
  /dalvik/vm/
JniInternal.h 63 * This is part of Method.jniArgInfo, and must fit in 3 bits.
86 * Pop the JNI local stack when we return from a native method. "saveArea"
87 * points to the StackSaveArea for the method we're leaving.
107 const Method* method, Thread* self);
109 const Method* method, Thread* self);
112 * Configure "method" to use the JNI bridge to call "func".
114 void dvmUseJNIBridge(Method* method, void* func)
    [all...]
Profile.h 18 * Android's method call profiling goodies.
35 * Method trace state. This is currently global. In theory we could make
83 * Start/stop method tracing.
111 * Call these when a method enters or exits.
135 void dvmMethodTraceAdd(struct Thread* self, const Method* method, int action);
136 void dvmEmitEmulatorTrace(const Method* method, int action);
143 extern "C" void dvmFastMethodTraceEnter(const Method* method, struct Thread* self)
    [all...]
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 19 import java.lang.reflect.Method;
47 public MethodSerializationWrapper(Method m) {
60 public Method getMethod() throws ClassNotFoundException,
77 Method m = clazz.getMethod(methodName, parameterTypes);
  /external/proguard/src/proguard/classfile/attribute/annotation/
RuntimeInvisibleParameterAnnotationsAttribute.java 58 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
60 attributeVisitor.visitRuntimeInvisibleParameterAnnotationsAttribute(clazz, method, this);
RuntimeVisibleParameterAnnotationsAttribute.java 58 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
60 attributeVisitor.visitRuntimeVisibleParameterAnnotationsAttribute(clazz, method, this);
  /external/proguard/src/proguard/classfile/attribute/visitor/
AllExceptionInfoVisitor.java 51 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
53 codeAttribute.exceptionsAccept(clazz, method, exceptionInfoVisitor);
  /external/proguard/src/proguard/classfile/instruction/visitor/
InstructionCounter.java 52 Method method,
  /external/webkit/Source/WebCore/bridge/c/
c_runtime.h 51 class CMethod : public Method
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConfigurationException.java 26 import java.lang.reflect.Method;
144 Method m = this.getClass().getMethod("initCause", new Class[] {Throwable.class});
156 Method m1 = this.getClass().getMethod("getCause", new Class[] {});
162 Method m2 = this.getClass().getMethod("initCause", new Class[] {Throwable.class});
  /dalvik/vm/mterp/portable/
entry.cpp 15 const Method* curMethod; // method we're interpreting
22 /* method call setup */
23 const Method* methodToCall;
32 curMethod = self->interpSave.method;
53 methodToCall = (const Method*) -1;
  /dalvik/vm/native/
java_lang_Object.cpp 64 const Method* method, Thread* self)
76 const Method* method, Thread* self)
88 const Method* method, Thread* self)

Completed in 544 milliseconds

1 2 3 4 56 7 8 91011>>