Searched refs:Method (Results 1 - 25 of 519) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/classfile/
H A DMethod.java30 public interface Method extends Member interface in inherits:Member
/external/javassist/src/main/javassist/util/proxy/
H A DMethodHandler.java18 import java.lang.reflect.Method;
46 Object invoke(Object self, Method thisMethod, Method proceed,
H A DMethodFilter.java18 import java.lang.reflect.Method;
29 boolean isHandled(Method m);
/external/webkit/Source/WebCore/bridge/
H A DBridge.h37 class Method { class in namespace:JSC::Bindings
38 WTF_MAKE_NONCOPYABLE(Method); WTF_MAKE_FAST_ALLOCATED;
40 Method() { } function in class:JSC::Bindings::Method
43 virtual ~Method() { }
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DMethod.java19 * $Id: Method.java 468654 2006-10-28 07:09:23Z minchau $
44 public final class Method class
49 private Method() { method in class:Method
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
H A DLocalObject.java35 import java.lang.reflect.Method;
63 Method[] methods;
H A DRemoteObject.java37 import java.lang.reflect.Method;
63 HashMap<Method, Integer> methodMap = new HashMap<Method, Integer>();
81 private boolean methodEquals(MethodDef methodDef, Method method){
103 HashMap<String, ArrayList<Method>> nameToMethods
104 = new HashMap<String, ArrayList<Method>>();
106 for (Method method : interfaceClass.getDeclaredMethods()){
107 ArrayList<Method> list = nameToMethods.get(method.getName());
109 list = new ArrayList<Method>();
117 ArrayList<Method> method
[all...]
H A DObjectDef.java37 import java.lang.reflect.Method;
56 public Method[] methods;
59 * Method definitions of the implementation. Set to null on
/external/mockito/src/org/mockito/internal/invocation/
H A DMockitoMethod.java7 import java.lang.reflect.Method;
21 public Method getJavaMethod();
/external/clang/include/clang/Sema/
H A DObjCMethodList.h23 ObjCMethodDecl *Method; member in struct:clang::ObjCMethodList
27 Method = 0;
31 Method = M;
/external/clang/test/CodeGenCXX/
H A D2004-03-08-ReinterpretCastCopy.cpp4 virtual void Method() = 0;
8 virtual void Method() { } function in struct:B
16 fn_type_a f = reinterpret_cast<fn_type_a>(&B::Method);
/external/mockito/src/org/mockito/internal/runners/util/
H A DTestMethodsFinder.java9 import java.lang.reflect.Method;
13 Method[] methods = klass.getMethods();
14 for(Method m:methods) {
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
H A DVerificationTypeVisitor.java36 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);
41 public void visitObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType);
42 public void visitNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, NullType nullType);
43 public void visitUninitializedType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, UninitializedType uninitializedType);
44 public void visitUninitializedThisType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, UninitializedThisType uninitializedThisType);
46 public void visitStackIntegerType( Clazz clazz, Method metho
[all...]
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DInstructionVisitor.java36 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);
41 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction);
/external/apache-http/src/org/apache/http/util/
H A DExceptionUtils.java33 import java.lang.reflect.Method;
46 static private final Method INIT_CAUSE_METHOD = getInitCauseMethod();
49 * Returns a <code>Method<code> allowing access to
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/
H A DRobolectricTestRunnerInterface.java6 import java.lang.reflect.Method;
11 void internalBeforeTest(Method method);
13 void internalAfterTest(Method method);
/external/mockito/src/org/mockito/internal/creation/
H A DDelegatingMethod.java7 import java.lang.reflect.Method;
13 private final Method method;
15 public DelegatingMethod(Method method) {
16 assert method != null : "Method cannot be null";
24 public Method getJavaMethod() {
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DAttributeVisitor.java48 public void visitDeprecatedAttribute( Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute);
52 public void visitSyntheticAttribute( Clazz clazz, Method method, SyntheticAttribute syntheticAttribute);
56 public void visitSignatureAttribute( Clazz clazz, Method method, SignatureAttribute signatureAttribute);
64 public void visitExceptionsAttribute( Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute);
65 public void visitCodeAttribute( Clazz clazz, Method method, CodeAttribute codeAttribute);
69 public void visitStackMapAttribute( Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute);
70 public void visitStackMapTableAttribute( Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute);
71 public void visitLineNumberTableAttribute( Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberTableAttribute lineNumberTableAttribute);
72 public void visitLocalVariableTableAttribute( Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute);
73 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method metho
[all...]
/external/guava/guava-tests/test/com/google/common/eventbus/
H A DEventHandlerTest.java20 import java.lang.reflect.Method;
48 Method method = getRecordingMethod();
75 Method method = getRecordingMethod();
85 Method method = getExceptionThrowingMethod();
98 Method method = getErrorThrowingMethod();
112 * @return a Method wrapping {@link #recordingMethod(Object)}.
118 private Method getRecordingMethod() {
119 Method method;
135 * @return a Method wrapping {@link #exceptionThrowingMethod(Object)}.
141 private Method getExceptionThrowingMetho
[all...]
/external/easymock/src/org/easymock/internal/
H A DILegacyMatcherMethods.java18 import java.lang.reflect.Method;
26 void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher);
/external/guava/guava/src/com/google/common/eventbus/
H A DSynchronizedEventHandler.java20 import java.lang.reflect.Method;
39 public SynchronizedEventHandler(Object target, Method method) {
/external/mockito/src/org/mockito/invocation/
H A DInvocationOnMock.java9 import java.lang.reflect.Method;
30 Method getMethod();
/external/replicaisland/src/com/replica/replicaisland/
H A DUIConstants.java20 import java.lang.reflect.Method;
29 public static Method mOverridePendingTransition;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/
H A DWithoutTestDefaultsRunner.java5 import java.lang.reflect.Method;
12 @Override public void internalBeforeTest(Method method) {
/external/junit/src/org/junit/internal/runners/
H A DTestClass.java5 import java.lang.reflect.Method;
29 public List<Method> getTestMethods() {
33 List<Method> getBefores() {
37 List<Method> getAfters() {
41 public List<Method> getAnnotatedMethods(Class<? extends Annotation> annotationClass) {
42 List<Method> results= new ArrayList<Method>();
44 Method[] methods= eachClass.getDeclaredMethods();
45 for (Method eachMethod : methods) {
60 private boolean isShadowed(Method metho
[all...]

Completed in 9107 milliseconds

1234567891011>>