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

<<21222324252627282930>>

  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
RuntimeWorker.java 32 import java.lang.reflect.Method;
52 Method method, Random random, Ticker ticker,
54 super(benchmark, method);
105 @BenchmarkMethod Method method, Random random, Ticker ticker,
107 super(benchmark, method, random, ticker, workerOptions);
131 @BenchmarkMethod Method method, Random random, Ticker ticker,
133 super(benchmark, method, random, ticker, workerOptions)
    [all...]
  /external/dbus-binding-generator/chromeos-dbus-bindings/
proxy_generator.h 66 // Generates ReleaseObjectProxy() method to release ownership
70 // Generates AddGetObjectPath() method.
73 // Generates GetObjectProxy() method.
81 // Generates OnPropertyChanged() method.
101 // Generates a native C++ method which calls a D-Bus method on the proxy.
102 static void AddMethodProxy(const Interface::Method& interface,
107 // Generates a native C++ method which calls a D-Bus method asynchronously.
108 static void AddAsyncMethodProxy(const Interface::Method& interface
    [all...]
  /external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaPersistModule.java 37 import java.lang.reflect.Method;
122 public Object invoke(final Object thisObject, final Method method, final Object[] args)
126 if (!method.isAnnotationPresent(Finder.class)) {
129 return method.invoke(this, args);
133 public Method getMethod() {
134 return method;
142 return method.invoke(thisObject, args);
172 for (Method method : iface.getMethods())
    [all...]
  /external/icu/android_icu4j/runner/src/main/java/android/icu/junit/
TestFmwkUtils.java 23 import java.lang.reflect.Method;
55 private static final Method getTargetsMethod = getTargetsMethod();
88 private static Method getTargetsMethod() {
90 Method method = TestFmwk.class.getDeclaredMethod("getTargets", String.class); local
91 method.setAccessible(true);
92 return method;
103 * A special method to avoid the TestFmwk from throwing an InternalError when an error occurs
104 * during execution of the test but outside the actual test method, e.g. in a
105 * {@link TestFmwk#validate()} method. See http://bugs.icu-project.org/trac/ticket/1218
    [all...]
  /external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
CurrencyNameTest.java 9 import java.lang.reflect.Method;
25 private static final Method GETDISPLAYNAME_METHOD;
28 Method mGetDisplayName = null;
32 Method mGetAvailableCurrencies = Currency.class.getMethod("getAvailableCurrencies", (Class[]) null);
  /external/javassist/src/main/javassist/util/proxy/
FactoryHelper.java 18 import java.lang.reflect.Method;
37 private static java.lang.reflect.Method defineClass1, defineClass2;
102 * is such a method for obtaining an integer value from a
128 * This method uses a default protection domain for the class
150 Method method; local
153 method = defineClass1;
158 method = defineClass2;
163 return toClass2(method, loader, args);
176 private static synchronized Class toClass2(Method method
    [all...]
  /external/javassist/src/test/test/javassist/proxy/
ProxySerializationTest.java 9 import java.lang.reflect.Method;
83 public boolean isHandled(Method m) {
108 public Object invoke(Object self, Method thisMethod, Method proceed, Object[] args) throws Throwable
  /external/libweave/examples/provider/
curl_http_client.h 29 void SendRequest(Method method,
  /external/mockito/src/org/mockito/internal/invocation/
InvocationMatcher.java 9 import java.lang.reflect.Method;
43 public Method getMethod() {
74 * similar means the same method name, same mock, unverified
96 //not using method.equals() for 1 good reason:
98 Method m1 = invocation.getMethod();
99 Method m2 = candidate.getMethod();
  /external/nanohttpd/samples/src/main/java/fi/iki/elonen/
HelloServer.java 61 Method method = session.getMethod(); local
63 HelloServer.LOG.info(method + " '" + uri + "' ");
68 msg += "<form action='?' method='get'>\n" + " <p>Your name: <input type='text' name='username'></p>\n" + "</form>\n";
  /external/proguard/src/proguard/classfile/
ProgramMethod.java 28 * Representation of a method from a program class.
32 public class ProgramMethod extends ProgramMember implements Method
  /external/proguard/src/proguard/classfile/attribute/
EnclosingMethodAttribute.java 28 * This Attribute represents an enclosing method attribute.
46 * An extra field optionally pointing to the referenced Method object.
51 public Method referencedMethod;
85 * Returns the method/field name.
SignatureAttribute.java 105 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
107 attributeVisitor.visitSignatureAttribute(clazz, method, this);
  /external/proguard/src/proguard/classfile/attribute/annotation/
ElementValue.java 50 * An extra field pointing to the referenced <code>Method</code>
54 public Method referencedMethod;
104 * Applies the given visitor to the referenced method.
ParameterAnnotationsAttribute.java 66 public void annotationsAccept(Clazz clazz, Method method, AnnotationVisitor annotationVisitor)
79 annotationVisitor.visitAnnotation(clazz, method, parameterIndex, annotations[index]);
  /external/proguard/src/proguard/classfile/attribute/annotation/target/
CatchTargetInfo.java 70 * Lets the visitor visit, with Method and CodeAttribute null.
78 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, TargetInfoVisitor targetInfoVisitor)
80 targetInfoVisitor.visitCatchTargetInfo(clazz, method, codeAttribute, typeAnnotation, this);
EmptyTargetInfo.java 68 public void accept(Clazz clazz, Method method, TypeAnnotation typeAnnotation, TargetInfoVisitor targetInfoVisitor)
70 targetInfoVisitor.visitEmptyTargetInfo(clazz, method, typeAnnotation, this);
FormalParameterTargetInfo.java 69 * Lets the visitor visit, with Method null.
77 public void accept(Clazz clazz, Method method, TypeAnnotation typeAnnotation, TargetInfoVisitor targetInfoVisitor)
79 targetInfoVisitor.visitFormalParameterTargetInfo(clazz, method, typeAnnotation, this);
OffsetTargetInfo.java 70 * Lets the visitor visit, with Method and CodeAttribute null.
78 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, TargetInfoVisitor targetInfoVisitor)
80 targetInfoVisitor.visitOffsetTargetInfo(clazz, method, codeAttribute, typeAnnotation, this);
ThrowsTargetInfo.java 69 * Lets the visitor visit, with Method null.
77 public void accept(Clazz clazz, Method method, TypeAnnotation typeAnnotation, TargetInfoVisitor targetInfoVisitor)
79 targetInfoVisitor.visitThrowsTargetInfo(clazz, method, typeAnnotation, this);
TypeArgumentTargetInfo.java 73 * Lets the visitor visit, with Method and CodeAttribute null.
81 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, TargetInfoVisitor targetInfoVisitor)
83 targetInfoVisitor.visitTypeArgumentTargetInfo(clazz, method, codeAttribute, typeAnnotation, this);
TypeParameterBoundTargetInfo.java 83 public void accept(Clazz clazz, Method method, TypeAnnotation typeAnnotation, TargetInfoVisitor targetInfoVisitor)
85 targetInfoVisitor.visitTypeParameterBoundTargetInfo(clazz, method, typeAnnotation, this);
TypeParameterTargetInfo.java 75 public void accept(Clazz clazz, Method method, TypeAnnotation typeAnnotation, TargetInfoVisitor targetInfoVisitor)
77 targetInfoVisitor.visitTypeParameterTargetInfo(clazz, method, typeAnnotation, this);
  /external/proguard/src/proguard/classfile/attribute/preverification/
LessZeroFrame.java 71 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor)
73 stackMapFrameVisitor.visitLessZeroFrame(clazz, method, codeAttribute, offset, this);
StackMapFrame.java 74 public abstract void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor);

Completed in 780 milliseconds

<<21222324252627282930>>