HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 1 - 25 of 892) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/
Method.java 26 * Representation of a method from a class.
30 public interface Method extends Member
  /external/webkit/Source/WebCore/bridge/
Bridge.h 37 class Method {
38 WTF_MAKE_NONCOPYABLE(Method); WTF_MAKE_FAST_ALLOCATED;
40 Method() { }
43 virtual ~Method() { }
  /external/javassist/src/main/javassist/util/proxy/
MethodHandler.java 18 import java.lang.reflect.Method;
28 * Is called when a method is invoked on a proxy instance associated
29 * with this handler. This method must process that method invocation.
32 * @param thisMethod the overridden method declared in the super
34 * @param proceed the forwarder method for invoking the overridden
35 * method. It is null if the overridden mehtod is
38 * the arguments passed in the method invocation
42 * @return the resulting value of the method invocation.
44 * @throws Throwable if the method invocation fails
    [all...]
MethodFilter.java 18 import java.lang.reflect.Method;
27 * Returns true if the given method is implemented by a handler.
29 boolean isHandled(Method m);
  /libcore/luni/src/main/java/java/lang/annotation/
AnnotationTypeMismatchException.java 20 import java.lang.reflect.Method;
32 private Method element;
46 public AnnotationTypeMismatchException(Method element, String foundType) {
53 * Returns the method object for the invalid type.
55 * @return a {@link Method} instance.
57 public Method element() {
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Method.java 19 * $Id: Method.java 468654 2006-10-28 07:09:23Z minchau $
34 * OutputPropertiesFactory.getDefaultMethodProperties() method to get
44 public final class Method
49 private Method() {
54 * The output method type for XML documents: <tt>xml</tt>.
59 * The output method type for HTML documents: <tt>html</tt>.
64 * The output method for XHTML documents: <tt>xhtml</tt>.
66 * This method type is not currently supported.
71 * The output method type for text documents: <tt>text</tt>.
76 * The "internal" method, just used when no method is
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
LocalObject.java 35 import java.lang.reflect.Method;
63 Method[] methods;
RemoteObject.java 37 import java.lang.reflect.Method;
54 * Contains {@link MethodDef method definitions} for all exposed
61 * a method ID.
63 HashMap<Method, Integer> methodMap = new HashMap<Method, Integer>();
81 private boolean methodEquals(MethodDef methodDef, Method method){
82 Class<?>[] interfaceTypes = method.getParameterTypes();
103 HashMap<String, ArrayList<Method>> nameToMethods
104 = new HashMap<String, ArrayList<Method>>();
    [all...]
  /external/mockito/src/org/mockito/internal/invocation/
MockitoMethod.java 7 import java.lang.reflect.Method;
21 public Method getJavaMethod();
  /dalvik/dx/src/com/android/dx/cf/iface/
StdMethodList.java 23 * an array of {@link Method} objects and can be made immutable.
36 public Method get(int n) {
37 return (Method) get0(n);
41 * Sets the method at the given index.
43 * @param n {@code >= 0, < size();} which method
44 * @param method {@code null-ok;} the method object
46 public void set(int n, Method method) {
47 set0(n, method);
    [all...]
MethodList.java 41 * Get the {@code n}th method.
43 * @param n {@code n >= 0, n < size();} which method
44 * @return {@code non-null;} the method in question
46 public Method get(int n);
  /dalvik/vm/mterp/common/
FindInterface.h 29 INLINE Method* dvmFindInterfaceMethodInCache(ClassObject* thisClass,
30 u4 methodIdx, const Method* method, DvmDex* methodClassDex)
33 dvmInterpFindInterfaceMethod(thisClass, methodIdx, method, methodClassDex)
36 return (Method*) ATOMIC_CACHE_LOOKUP(methodClassDex->pInterfaceCache,
  /external/clang/include/clang/Sema/
ObjCMethodList.h 23 ObjCMethodDecl *Method;
27 Method = 0;
31 Method = M;
  /external/clang/test/CodeGenCXX/
2004-03-08-ReinterpretCastCopy.cpp 4 virtual void Method() = 0;
8 virtual void Method() { }
16 fn_type_a f = reinterpret_cast<fn_type_a>(&B::Method);
  /external/mockito/src/org/mockito/internal/runners/util/
TestMethodsFinder.java 9 import java.lang.reflect.Method;
13 Method[] methods = klass.getMethods();
14 for(Method m:methods) {
  /dalvik/dx/src/com/android/dx/io/
ClassData.java 22 private final Method[] directMethods;
23 private final Method[] virtualMethods;
26 Method[] directMethods, Method[] virtualMethods) {
41 public Method[] getDirectMethods() {
45 public Method[] getVirtualMethods() {
56 public Method[] allMethods() {
57 Method[] result = new Method[directMethods.length + virtualMethods.length];
81 public static class Method {
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
VerificationTypeVisitor.java 36 public void visitIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, IntegerType integerType);
37 public void visitFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FloatType floatType);
38 public void visitLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LongType longType);
39 public void visitDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, DoubleType doubleType);
40 public void visitTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TopType topType)
    [all...]
  /dalvik/vm/oo/
Class.h 149 * Update method's "nativeFunc" and "insns". If "insns" is NULL, the
150 * current method->insns value is not changed.
152 void dvmSetNativeFunc(Method* method, DalvikBridgeFunc func, const u2* insns);
155 * Set the method's "registerMap" field.
157 void dvmSetRegisterMap(Method* method, const RegisterMap* pMap);
160 * Make a method's DexCode (which includes the bytecode) read-write or
165 void dvmMakeCodeReadWrite(Method* meth);
166 void dvmMakeCodeReadOnly(Method* meth)
    [all...]
  /dalvik/vm/analysis/
VerifySubs.h 43 bool dvmComputeCodeWidths(const Method* meth, InsnFlags* insnFlags,
47 bool dvmSetTryFlags(const Method* meth, InsnFlags* insnFlags);
53 /* log verification failure with optional method info */
54 void dvmLogVerifyFailure(const Method* meth, const char* format, ...)
62 const Method* meth);
65 bool dvmGetBranchOffset(const Method* meth, const InsnFlags* insnFlags,
72 bool dvmWantVerboseVerification(const Method* meth);
  /external/proguard/src/proguard/classfile/instruction/visitor/
InstructionVisitor.java 36 public void visitSimpleInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction);
37 public void visitVariableInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction);
38 public void visitConstantInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction);
39 public void visitBranchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction);
40 public void visitTableSwitchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
    [all...]
  /external/apache-http/src/org/apache/http/util/
ExceptionUtils.java 33 import java.lang.reflect.Method;
45 /** A reference to Throwable's initCause method, or null if it's not there in this JVM */
46 static private final Method INIT_CAUSE_METHOD = getInitCauseMethod();
49 * Returns a <code>Method<code> allowing access to
50 * {@link Throwable#initCause(Throwable) initCause} method of {@link Throwable},
51 * or <code>null</code> if the method
54 * @return A <code>Method<code> for <code>Throwable.initCause</code>, or
57 static private Method getInitCauseMethod() {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/internal/
RobolectricTestRunnerInterface.java 6 import java.lang.reflect.Method;
11 void internalBeforeTest(Method method);
13 void internalAfterTest(Method method);
  /dalvik/vm/mterp/
Mterp.h 46 extern "C" void dvmMterpPrintMethod(Method* method);
  /dalvik/vm/native/
InternalNative.h 27 DalvikNativeFunc dvmLookupInternalNativeMethod(const Method* method);
  /external/mockito/src/org/mockito/internal/creation/
DelegatingMethod.java 7 import java.lang.reflect.Method;
13 private final Method method; field in class:DelegatingMethod
15 public DelegatingMethod(Method method) {
16 assert method != null : "Method cannot be null";
17 this.method = method;
21 return method.getExceptionTypes();
    [all...]

Completed in 533 milliseconds

1 2 3 4 5 6 7 8 91011>>