Searched refs:Method (Results 1 - 25 of 622) 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/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/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DInvocationHandler.java18 import java.lang.reflect.Method;
31 * @see java.lang.reflect.InvocationHandler#invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object)
33 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable;
H A DCallbackFilter.java18 import java.lang.reflect.Method;
35 int accept(Method method, List<Method> allMethods);
/external/mockito/src/org/mockito/internal/invocation/
H A DMockitoMethod.java7 import java.lang.reflect.Method;
21 public Method getJavaMethod();
/external/clang/test/CodeGenCXX/
H A D2004-03-08-ReinterpretCastCopy.cpp5 virtual void Method() = 0;
9 virtual void Method() { } function in struct:B
17 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...]
H A DStackMapFrameVisitor.java35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame);
36 public void visitSameOneFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame);
37 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame);
38 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame);
39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame);
/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;
51 static private final Method INIT_CAUSE_METHOD = getInitCauseMethod();
54 * Returns a <code>Method<code> allowing access to
59 * @return A <code>Method<code> for <code>Throwable.initCause</code>, or
62 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/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/cglib-and-asm/src/org/mockito/cglib/core/
H A DDuplicatesPredicate.java18 import java.lang.reflect.Method;
25 return unique.add(MethodWrapper.create((Method)arg));
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DFastMethod.java19 import java.lang.reflect.Method;
23 FastMethod(FastClass fc, Method method) {
27 private static int helper(FastClass fc, Method method) {
41 return ((Method)member).getReturnType();
45 return ((Method)member).getParameterTypes();
49 return ((Method)member).getExceptionTypes();
56 public Method getJavaMethod() {
57 return (Method)member;
/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...]
/external/mockito/src/org/mockito/internal/util/
H A DObjectMethodsGuru.java11 import java.lang.reflect.Method;
17 public boolean isToString(Method method) {
27 public boolean isEqualsMethod(Method method) {
33 public boolean isHashCodeMethod(Method method) {
38 public boolean isCompareToMethod(Method method) {

Completed in 567 milliseconds

1234567891011>>