HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 476 - 500 of 1620) sorted by null

<<11121314151617181920>>

  /external/proguard/src/proguard/classfile/util/
MemberFinder.java 57 * Finds the method with the given name and descriptor in the given
60 public Method findMethod(Clazz referencingClass,
65 return (Method)findMember(referencingClass, clazz, name, descriptor, false);
112 * Returns whether the given method is overridden anywhere down the class
116 Method method)
118 String name = method.getName(clazz);
119 String descriptor = method.getDescriptor(clazz);
121 // Go looking for the method down the class hierarchy.
133 // We've found an overriding method
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
UnreachableCodeRemover.java 79 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
83 // method.getName(clazz).equals("abc");
86 // Catch any unexpected exceptions from the actual visiting method.
90 visitCodeAttribute0(clazz, method, codeAttribute);
96 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
104 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute
    [all...]
UnreachableExceptionRemover.java 69 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
72 codeAttribute.exceptionsAccept(clazz, method, this);
83 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
86 method,
96 extraExceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
108 Method method,
  /external/vogar/src/vogar/target/junit/
Junit4.java 22 import java.lang.reflect.Method;
49 * @param methodNames if non-empty, this is the list of test method names.
65 for (Method m : testClass.getMethods()) {
100 for (Method m : testClass.getMethods()) {
114 private static void addAllParameterizedTests(List<VogarTest> out, Class<?> testClass, Method m,
158 for (Method m : klass.getDeclaredMethods()) {
200 protected final Method method; field in class:Junit4.VogarJUnitTest
202 protected VogarJUnitTest(Class<?> testClass, Method method) {
    [all...]
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
JavaMethod.java 23 import java.lang.reflect.Method;
28 public final Method mMethod;
30 public JavaMethod(Method method) {
31 mMethod = method;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
ActivityTransitionBitmapHelper.java 25 import java.lang.reflect.Method;
34 private static Method sPutBinder;
35 private static Method sGetBinder;
  /art/test/044-proxy/src/
FloatSelect.java 25 public float method(float a, float b); method in interface:FloatSelect.FloatSelectI
29 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
40 float floatResult = proxyObject.method(2.1f, 5.8f);
  /art/test/127-checker-secondarydex/src/
Main.java 19 import java.lang.reflect.Method;
  /art/test/506-verify-aput/src/
Main.java 17 import java.lang.reflect.Method;
  /art/test/523-checker-can-throw-regression/src/
Main.java 17 import java.lang.reflect.Method;
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p6.cpp 23 void Method(const T& x) { h(x); }
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionAddTester.java 32 import java.lang.reflect.Method;
112 * Returns the {@link Method} instance for {@link #testAdd_nullSupported()} so
124 public static Method getAddNullSupportedMethod() {
129 * Returns the {@link Method} instance for {@link #testAdd_nullSupported()}
136 public static Method getAddNullUnsupportedMethod() {
141 * Returns the {@link Method} instance for {@link
148 public static Method getAddUnsupportedNotPresentMethod() {
  /external/guava/guava-tests/test/com/google/common/io/
ByteSinkTester.java 31 import java.lang.reflect.Method;
43 private static final ImmutableList<Method> testMethods
69 for (final Method method : testMethods) {
70 suite.addTest(new ByteSinkTester(factory, bytes, name, desc, method));
78 String caseDesc, Method method) {
79 super(factory, data, suiteName, caseDesc, method);
CharSinkTester.java 28 import java.lang.reflect.Method;
39 private static final ImmutableList<Method> testMethods
55 for (final Method method : testMethods) {
56 stringSuite.addTest(new CharSinkTester(factory, string, name, desc, method));
67 String suiteName, String caseDesc, Method method) {
68 super(factory, string, suiteName, caseDesc, method);
  /external/guice/core/src/com/google/inject/internal/
SingleMethodInjector.java 24 import java.lang.reflect.Method;
28 * Invokes an injectable method.
38 final Method method = (Method) injectionPoint.getMember(); local
39 methodInvoker = createMethodInvoker(method);
43 private MethodInvoker createMethodInvoker(final Method method) {
45 // We can't use FastMethod if the method is private.
46 int modifiers = method.getModifiers()
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/
MainUtil.java 21 import java.lang.reflect.Method;
30 Method[] methods = main.getClass().getMethods();
32 Method method = methods[i]; local
33 if (method.getName().equals(command)) {
37 method.invoke(main, bindParameters(method, remaining));
56 private static Object[] bindParameters(Method method, String[] args) {
58 Class[] parameterTypes = method.getParameterTypes()
    [all...]
  /external/javassist/src/test/test/javassist/proxy/
ProxyFactoryCompatibilityTest.java 10 import java.lang.reflect.Method;
28 public boolean isHandled(Method m) {
34 public Object invoke(Object self, Method m, Method proceed,
37 return proceed.invoke(self, args); // execute the original method.
  /external/junit/src/org/junit/runners/model/
FrameworkMethod.java 5 import java.lang.reflect.Method;
13 * Represents a method on a test class to be invoked at the appropriate point in
19 final Method fMethod;
22 * Returns a new {@code FrameworkMethod} for {@code method}
24 public FrameworkMethod(Method method) {
25 fMethod= method;
29 * Returns the underlying Java method
31 public Method getMethod() {
36 * Returns the result of invoking this method on {@code target} wit
    [all...]
  /external/proguard/src/proguard/classfile/
LibraryMethod.java 26 * Representation of a method from a class-file.
30 public class LibraryMethod extends LibraryMember implements Method
  /external/proguard/src/proguard/classfile/attribute/
DeprecatedAttribute.java 62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
64 attributeVisitor.visitDeprecatedAttribute(clazz, method, this);
ExceptionsAttribute.java 62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
64 attributeVisitor.visitExceptionsAttribute(clazz, method, this);
SyntheticAttribute.java 62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
64 attributeVisitor.visitSyntheticAttribute(clazz, method, this);
  /external/proguard/src/proguard/classfile/attribute/annotation/
AnnotationDefaultAttribute.java 69 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
71 attributeVisitor.visitAnnotationDefaultAttribute(clazz, method, this);
RuntimeInvisibleAnnotationsAttribute.java 66 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
68 attributeVisitor.visitRuntimeInvisibleAnnotationsAttribute(clazz, method, this);
RuntimeVisibleAnnotationsAttribute.java 66 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
68 attributeVisitor.visitRuntimeVisibleAnnotationsAttribute(clazz, method, this);

Completed in 383 milliseconds

<<11121314151617181920>>