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

<<11121314151617181920>>

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
InvocationTargetExceptionTest.java 25 import java.lang.reflect.Method;
114 // Test for method
117 Method mth = TestMethod.class.getDeclaredMethod(
135 // Test for method
139 Method mth = TestMethod.class.getDeclaredMethod(
157 // Test for method java.lang.Throwable
160 Method mth = TestMethod.class.getDeclaredMethod(
178 // Test for method void
198 // Test for method void
215 // Test for method voi
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
FactoryHelper.java 18 import java.lang.reflect.Method;
37 private static java.lang.reflect.Method defineClass1, defineClass2;
102 * is such a method for obtaining an integer value from a
128 * This method uses a default protection domain for the class
150 Method method; local
153 method = defineClass1;
158 method = defineClass2;
163 return toClass2(method, loader, args);
176 private static synchronized Class toClass2(Method method
    [all...]
  /external/javassist/src/test/test/javassist/proxy/
ProxySerializationTest.java 9 import java.lang.reflect.Method;
83 public boolean isHandled(Method m) {
108 public Object invoke(Object self, Method thisMethod, Method proceed, Object[] args) throws Throwable
ProxySimpleTest.java 10 import java.lang.reflect.Method;
52 Method meth = data2.getClass().getDeclaredMethod("writeReplace", new Class[0]);
  /external/proguard/src/proguard/classfile/
ProgramMethod.java 28 * Representation of a method from a program class.
32 public class ProgramMethod extends ProgramMember implements Method
  /external/proguard/src/proguard/classfile/attribute/
EnclosingMethodAttribute.java 28 * This Attribute represents an enclosing method attribute.
46 * An extra field optionally pointing to the referenced Method object.
51 public Method referencedMethod;
85 * Returns the method/field name.
SignatureAttribute.java 96 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
98 attributeVisitor.visitSignatureAttribute(clazz, method, this);
  /external/proguard/src/proguard/classfile/attribute/annotation/
AnnotationsAttribute.java 89 * Applies the given visitor to all method annotations.
91 public void annotationsAccept(Clazz clazz, Method method, AnnotationVisitor annotationVisitor)
97 annotationVisitor.visitAnnotation(clazz, method, annotations[index]);
ElementValue.java 50 * An extra field pointing to the referenced <code>Method</code>
54 public Method referencedMethod;
104 * Applies the given visitor to the referenced method.
ParameterAnnotationsAttribute.java 66 public void annotationsAccept(Clazz clazz, Method method, AnnotationVisitor annotationVisitor)
79 annotationVisitor.visitAnnotation(clazz, method, parameterIndex, annotations[index]);
  /external/proguard/src/proguard/classfile/attribute/preverification/
LessZeroFrame.java 71 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor)
73 stackMapFrameVisitor.visitLessZeroFrame(clazz, method, codeAttribute, offset, this);
StackMapFrame.java 74 public abstract void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor);
MoreZeroFrame.java 78 public void additionalVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VerificationTypeVisitor verificationTypeVisitor)
82 additionalVariables[index].accept(clazz, method, codeAttribute, offset, verificationTypeVisitor);
95 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor)
97 stackMapFrameVisitor.visitMoreZeroFrame(clazz, method, codeAttribute, offset, this);
  /external/proguard/src/proguard/classfile/editor/
ExceptionInfoAdder.java 54 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
LocalVariableInfoAdder.java 52 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo)
LocalVariableTypeInfoAdder.java 52 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo)
MethodInvocationFixer.java 63 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
69 codeAttribute.instructionsAccept(clazz, method, this);
72 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute);
78 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
81 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
85 // Get information on the called class and method, if present.
90 // Did we find the called class and method
    [all...]
  /external/proguard/src/proguard/optimize/
DuplicateInitializerFixer.java 85 Method similarMethod = programClass.findMethod(name, descriptor);
118 // Fix the local variable frame size, the method
149 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
153 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
154 method.getAccessFlags());
163 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute)
165 String descriptor = method.getDescriptor(clazz);
180 public void visitAnyParameterAnnotationsAttribute(Clazz clazz, Method method, ParameterAnnotationsAttribute parameterAnnotationsAttribute
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGTextPathElement.h 76 DECLARE_ANIMATED_ENUMERATION(Method, method)
  /dalvik/tests/086-null-super/src/
Main.java 18 import java.lang.reflect.Method;
83 Method meth = mDexClass.
109 * otherwise invoke the super's loadClass method.
  /dalvik/vm/mterp/common/
asm-constants.h 96 MTERP_OFFSET(offStackSaveArea_method, StackSaveArea, method, 12)
105 MTERP_OFFSET(offStackSaveArea_method, StackSaveArea, method, 8)
117 MTERP_OFFSET(offShadowSpace_method, ShadowSpace, method, 8)
135 /* Method fields */
136 MTERP_OFFSET(offMethod_clazz, Method, clazz, 0)
137 MTERP_OFFSET(offMethod_accessFlags, Method, accessFlags, 4)
138 MTERP_OFFSET(offMethod_methodIndex, Method, methodIndex, 8)
139 MTERP_OFFSET(offMethod_registersSize, Method, registersSize, 10)
140 MTERP_OFFSET(offMethod_outsSize, Method, outsSize, 12)
141 MTERP_OFFSET(offMethod_name, Method, name, 16
    [all...]
  /external/easymock/src/org/easymock/internal/
ReplayState.java 19 import java.lang.reflect.Method;
136 public void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher) {
159 "This method must not be called in replay state."));
  /external/proguard/src/proguard/optimize/evaluation/
LoadingInvocationUnit.java 124 Method method,
131 // Retrieve the stored method parameter value.
132 Value value = StoringInvocationUnit.getMethodParameterValue(method, parameterIndex);
143 method,
156 // Do we know this method?
160 // Retrieve the stored method return value.
161 Value value = StoringInvocationUnit.getMethodReturnValue((Method)referencedMember);
  /external/proguard/src/proguard/optimize/peephole/
TargetClassChanger.java 110 // TODO: Maybe restore private method references.
217 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
220 codeAttribute.attributesAccept(clazz, method, this);
224 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute)
227 localVariableTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this);
231 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute)
234 localVariableTypeTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this)
    [all...]
  /frameworks/base/core/java/android/util/
DebugUtils.java 19 import java.lang.reflect.Method;
55 * <p><strong>NOTE</strong>: This method is very expensive as it relies
56 * heavily on regular expressions and reflection. Calls to this method
77 Method declaredMethod = null;

Completed in 923 milliseconds

<<11121314151617181920>>