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

1 2 3 4 5 6 78 91011>>

  /external/proguard/src/proguard/classfile/editor/
ClassEditor.java 188 * Adds the given method.
190 public void addMethod(Method method)
193 Method[] methods = targetClass.methods;
195 // Make sure there is enough space for the new method.
207 System.out.println(targetClass.getName()+": adding method ["+method.getName(targetClass)+method.getDescriptor(targetClass)+"]");
210 // Add the method.
211 methods[targetClass.u2methodsCount++] = method;
    [all...]
InstructionWriter.java 66 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
74 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
99 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
124 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
202 public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction
    [all...]
VariableCleaner.java 49 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
52 variableUsageMarker.visitCodeAttribute(clazz, method, codeAttribute);
55 codeAttribute.attributesAccept(clazz, method, this);
59 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute)
69 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute)
CodeAttributeEditorResetter.java 56 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
LineNumberInfoAdder.java 49 public void visitLineNumberInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfo lineNumberInfo)
StackSizeUpdater.java 46 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
49 stackSizeComputer.visitCodeAttribute(clazz, method, codeAttribute);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
GenericExceptionsTest.java 21 import java.lang.reflect.Method;
31 Method method = Thrower.class.getMethod("parameterizedMethod"); local
33 Arrays.asList(method.getGenericExceptionTypes()));
37 Method method = Thrower.class.getMethod("genericParameters", List.class); local
39 Arrays.asList(method.getGenericExceptionTypes()));
63 Method method = ThrowerT.class.getMethod("throwsTypeVariable"); local
64 TypeVariable typeVariable = getOnlyValue(method.getGenericExceptionTypes()
71 Method method = ThrowerT.class.getMethod("throwsMethodTypeParameter"); local
79 Method method = ThrowerT.class.getMethod("throwsEverything"); local
    [all...]
  /dalvik/tests/087-gc-after-link/src/
Main.java 18 import java.lang.reflect.Method;
86 Method meth = dexClass.getMethod("loadClass",
97 Method meth = dexClass.getMethod("close", (Class[]) null);
118 * otherwise invoke the super's loadClass method.
  /external/proguard/src/proguard/classfile/util/
MemberFinder.java 57 * Finds the method with the given name and descriptor in the given
60 public Method findMethod(Clazz referencingClass,
65 return (Method)findMember(referencingClass, clazz, name, descriptor, false);
112 * Returns whether the given method is overridden anywhere down the class
116 Method method)
118 String name = method.getName(clazz);
119 String descriptor = method.getDescriptor(clazz);
121 // Go looking for the method down the class hierarchy.
133 // We've found an overriding method
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
UnreachableCodeRemover.java 79 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
83 // method.getName(clazz).equals("abc");
86 // Catch any unexpected exceptions from the actual visiting method.
90 visitCodeAttribute0(clazz, method, codeAttribute);
96 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
104 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute
    [all...]
UnreachableExceptionRemover.java 72 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
75 codeAttribute.exceptionsAccept(clazz, method, this);
86 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
89 method,
99 extraExceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
111 Method method,
127 method,
    [all...]
  /dalvik/vm/
DvmDex.h 30 struct Method;
51 struct Method** pResMethods;
57 /* interface method lookup cache */
119 INLINE struct Method* dvmDexGetResolvedMethod(const DvmDex* pDvmDex,
149 struct Method* method)
152 pDvmDex->pResMethods[methodIdx] = method;
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p6.cpp 22 void Method(const T& x) { h(x); }
  /external/javassist/src/main/javassist/tools/reflect/
ClassMetaobject.java 52 private Method[] methods;
159 * This method simply returns the value of the field.
161 * <p>Every subclass of this class should redefine this method.
179 * This method simply sets the field to the given value.
181 * <p>Every subclass of this class should redefine this method.
197 * Invokes a method whose name begins with
205 Method[] allmethods = target.getClass().getMethods();
219 throw new CannotInvokeException("cannot find a method");
225 * This method simply executes the intercepted method invocatio
    [all...]
  /external/javassist/src/test/test/javassist/proxy/
ProxyFactoryCompatibilityTest.java 10 import java.lang.reflect.Method;
28 public boolean isHandled(Method m) {
34 public Object invoke(Object self, Method m, Method proceed,
37 return proceed.invoke(self, args); // execute the original method.
  /external/proguard/src/proguard/classfile/
LibraryMethod.java 26 * Representation of a method from a class-file.
30 public class LibraryMethod extends LibraryMember implements Method
  /external/proguard/src/proguard/classfile/attribute/
DeprecatedAttribute.java 62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
64 attributeVisitor.visitDeprecatedAttribute(clazz, method, this);
ExceptionsAttribute.java 62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
64 attributeVisitor.visitExceptionsAttribute(clazz, method, this);
SyntheticAttribute.java 62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
64 attributeVisitor.visitSyntheticAttribute(clazz, method, this);
  /external/proguard/src/proguard/classfile/attribute/annotation/
AnnotationDefaultAttribute.java 69 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
71 attributeVisitor.visitAnnotationDefaultAttribute(clazz, method, this);
RuntimeInvisibleAnnotationsAttribute.java 66 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
68 attributeVisitor.visitRuntimeInvisibleAnnotationsAttribute(clazz, method, this);
RuntimeVisibleAnnotationsAttribute.java 66 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
68 attributeVisitor.visitRuntimeVisibleAnnotationsAttribute(clazz, method, this);
  /external/proguard/src/proguard/classfile/attribute/preverification/
SameZeroFrame.java 62 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor)
64 stackMapFrameVisitor.visitSameZeroFrame(clazz, method, codeAttribute, offset, this);
  /external/proguard/src/proguard/classfile/attribute/visitor/
StackSizeComputer.java 97 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
101 // method.getName(clazz).equals("abc");
104 // Catch any unexpected exceptions from the actual visiting method.
108 visitCodeAttribute0(clazz, method, codeAttribute);
114 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
119 method.accept(clazz, new ClassPrinter());
127 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute
    [all...]
  /external/proguard/src/proguard/classfile/instruction/visitor/
AllInstructionVisitor.java 52 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
54 codeAttribute.instructionsAccept(clazz, method, instructionVisitor);

Completed in 485 milliseconds

1 2 3 4 5 6 78 91011>>