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

1 2 3 4 5 6 7 891011>>

  /external/proguard/src/proguard/classfile/visitor/
ExceptionExcludedOffsetFilter.java 57 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
61 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
ExceptionHandlerConstantVisitor.java 54 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
ExceptionHandlerFilter.java 61 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
67 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
ExceptionOffsetFilter.java 57 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
61 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
ExceptionRangeFilter.java 61 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
65 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
  /external/proguard/src/proguard/optimize/info/
ExceptionInstructionChecker.java 50 public boolean mayThrowExceptions(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
54 instruction.accept(clazz, method, codeAttribute, offset, this);
62 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
65 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
103 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
130 // // Check if the invoking the method may throw an exception
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
WebCoreObjCExtras.mm 46 // This method relies on threading being initialized by the caller, otherwise
56 static inline IMP method_getImplementation(Method method)
58 return method->method_imp;
68 Method method = class_getInstanceMethod(pair->first, @selector(dealloc));
70 IMP imp = method_getImplementation(method);
  /external/webkit/Source/WebKit/mac/Misc/
WebNSObjectExtras.h 47 static inline IMP method_setImplementation(Method m, IMP i)
  /libcore/dom/src/test/java/org/w3c/domts/
DOM4JTestDocumentBuilderFactory.java 27 import java.lang.reflect.Method;
44 private final Method readMethod;
71 Method getInstance = domFactoryClass.getMethod("getInstance", new Class[] {});
79 Method getReaderMethod = saxReaderClass.getMethod("getXMLReader",
LSDocumentBuilderFactory.java 16 import java.lang.reflect.Method;
33 private final Method parseURIMethod;
136 Method domConfigMethod = parser.getClass().getMethod("getDomConfig",
139 Method setParameterMethod = domConfig.getClass().getMethod(
154 Method domConfigMethod = parser.getClass().getMethod("getDomConfig",
157 Method getParameterMethod = domConfig.getClass().getMethod("getParameter",
275 Method newInstanceMethod = domImplRegistryClass.getMethod("newInstance", (Class<?>) null);
277 Method getDOMImplementationMethod = domImplRegistryClass.getMethod(
281 Method createLSParserMethod = impl.getClass().getMethod("createLSParser",
  /libcore/luni/src/main/java/java/lang/reflect/
Constructor.java 105 Object[] annotation = Method.getSignatureAnnotation(declaringClass, slot);
203 return Method.getDeclaredAnnotations(declaringClass, slot);
210 return Method.getAnnotation(declaringClass, slot, annotationType);
217 return Method.isAnnotationPresent(declaringClass, slot, annotationType);
230 = Method.getParameterAnnotations(declaringClass, slot);
232 return Method.noAnnotations(parameterTypes.length);
245 int mods = Method.getMethodModifiers(declaringClass, slot);
257 int mods = Method.getMethodModifiers(declaringClass, slot);
312 return Method.getMethodModifiers(declaringClass, slot);
357 * equal return the same value for this method. The hash code for
    [all...]
Method.java 44 * This class represents a method. Information about the method can be accessed,
45 * and the method can be invoked dynamically.
47 public final class Method extends AccessibleObject implements GenericDeclaration, Member {
54 public static final Comparator<Method> ORDER_BY_SIGNATURE = new Comparator<Method>() {
55 public int compare(Method a, Method b) {
95 private TypeVariable<Method>[] formalTypeParameters;
117 /*package*/ Method(Method orig)
    [all...]
  /libcore/support/src/test/java/tests/io/
MockOs.java 21 import java.lang.reflect.Method;
46 @Override public Object invoke(Object o, Method method, Object[] args) throws Throwable {
48 return method.invoke(delegate, args);
56 @Override public Object invoke(Object proxy, Method method, Object[] args)
58 InvocationHandler handler = getHandlers(method.getName()).poll();
62 return handler.invoke(proxy, method, args);
115 @Override public Object invoke(Object proxy, Method method, Object[] args) throws ErrnoException
    [all...]
  /external/proguard/src/proguard/classfile/io/
ProgramClassWriter.java 137 // Write the general method information.
142 // Write the method attributes.
248 // accept method with two dummy null arguments never throws
337 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
349 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
363 codeAttribute.exceptionsAccept(clazz, method, this);
368 codeAttribute.attributesAccept(clazz, method, ProgramClassWriter.this);
372 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute
    [all...]
  /external/proguard/src/proguard/classfile/editor/
AttributeAdder.java 141 // TODO: Implement method.
219 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
234 // Add it to the target method.
239 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
263 method,
272 method,
280 method,
288 (Method)targetMember
    [all...]
  /external/proguard/src/proguard/obfuscate/
Utf8UsageMarker.java 181 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
187 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
192 codeAttribute.attributesAccept(clazz, method, this);
196 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
202 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
208 public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberTableAttribute lineNumberTableAttribute
    [all...]
  /external/proguard/src/proguard/shrink/
UsageMarker.java 110 // Explicitly mark the <clinit> method.
115 // Explicitly mark the parameterless <init> method.
198 // Has the method already been referenced?
218 // Has the method already been referenced?
223 // Mark the method body.
226 // Note that, if the method has been marked as possibly used,
227 // the method hierarchy has already been marked (cfr. below).
263 // Is the method's class used?
268 // Mark the method body.
271 // Mark the method hierarchy
    [all...]
  /cts/tools/signature-tools/src/signature/model/impl/
Uninitialized.java 20 import java.lang.reflect.Method;
48 public Object invoke(Object proxy, Method method, Object[] args)
50 if (method.getName().equals("toString")) {
  /dalvik/tests/044-proxy/src/
Clash4.java 19 import java.lang.reflect.Method;
72 public Object invoke(Object proxy, Method method, Object[] args)
  /dalvik/vm/compiler/codegen/arm/
CalloutHelper.h 84 const Method *dvmJitToPatchPredictedChain(const Method *method,
102 * INLINE Method* dvmFindInterfaceMethodInCache(ClassObject* thisClass,
103 * u4 methodIdx, const Method* method, DvmDex* methodClassDex)
  /dalvik/vm/mterp/x86-atom/
OP_THROW_VERIFICATION_ERROR.S 32 movl offGlue_method(%edx), %ecx # %ecx<- glue->method
37 movl %ecx, -12(%esp) # push parameter glue->method
39 call dvmThrowVerificationError # call: (const Method* method, int kind, int ref)
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationMemberValue.java 20 import java.lang.reflect.Method;
47 Object getValue(ClassLoader cl, ClassPool cp, Method m)
ClassMemberValue.java 22 import java.lang.reflect.Method;
63 Object getValue(ClassLoader cl, ClassPool cp, Method m)
EnumMemberValue.java 19 import java.lang.reflect.Method;
58 Object getValue(ClassLoader cl, ClassPool cp, Method m)
MemberValue.java 24 import java.lang.reflect.Method;
46 abstract Object getValue(ClassLoader cl, ClassPool cp, Method m)

Completed in 1071 milliseconds

1 2 3 4 5 6 7 891011>>