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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServices/src/com/android/framework/multidexlegacytestservices/
ReflectIntermediateClass.java 20 import java.lang.reflect.Method;
35 Method get = bigClass.getMethod("get" + i);
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/util/
SystemProperties.java 21 import java.lang.reflect.Method;
40 final Method get = systemProperties.getMethod("get", String.class, String.class);
  /frameworks/ex/common/java/com/android/common/
SharedPreferencesCompat.java 22 import java.lang.reflect.Method;
29 private static Method sApplyMethod; // final
  /frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
MenuBuilderTest.java 24 import java.lang.reflect.Method;
36 // Manufacturer has modified ROM and added a public method setOptionalIconsVisible
38 // because it had no such public method (it was package local)
39 Method method = MenuBuilder.class local
41 assertNotNull(method);
42 assertTrue(Modifier.isPublic(method.getModifiers()));
  /frameworks/volley/src/test/java/com/android/volley/mock/
TestRequest.java 36 public Base(int method, String url, Response.ErrorListener listener) {
37 super(method, url, listener);
76 super(Method.GET, TEST_URL, null);
86 super(Method.POST, TEST_URL, null);
111 super(Method.PUT, TEST_URL, null);
133 super(Method.DELETE, TEST_URL, null);
140 super(Method.HEAD, TEST_URL, null);
147 super(Method.OPTIONS, TEST_URL, null);
154 super(Method.TRACE, TEST_URL, null);
161 super(Method.PATCH, TEST_URL, null)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/sms/
SystemProperties.java 19 import java.lang.reflect.Method;
25 private static Method sSystemPropertiesGetMethod = null;
  /packages/apps/TV/src/com/android/tv/ui/
ViewUtils.java 23 import java.lang.reflect.Method;
36 Method method; local
38 method = View.class.getDeclaredMethod("setTransitionAlpha", Float.TYPE);
39 method.invoke(v, alpha);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
ActivityManagerCompatUtils.java 22 import java.lang.reflect.Method;
27 private static final Method METHOD_isLowRamDevice = CompatUtils.getMethod(
TextViewCompatUtils.java 22 import java.lang.reflect.Method;
27 private static final Method METHOD_setCompoundDrawablesRelativeWithIntrinsicBounds =
  /external/jetty/src/java/org/eclipse/jetty/util/log/
LoggerLog.java 21 import java.lang.reflect.Method;
29 private final Method _debugMT;
30 private final Method _debugMAA;
31 private final Method _infoMT;
32 private final Method _infoMAA;
33 private final Method _warnMT;
34 private final Method _warnMAA;
35 private final Method _setDebugEnabledE;
36 private final Method _getLoggerN;
37 private final Method _getName
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
api.pb.h 43 class Method;
115 // repeated .google.protobuf.Method methods = 2;
119 const ::google::protobuf::Method& methods(int index) const;
120 ::google::protobuf::Method* mutable_methods(int index);
121 ::google::protobuf::Method* add_methods();
122 ::google::protobuf::RepeatedPtrField< ::google::protobuf::Method >*
124 const ::google::protobuf::RepeatedPtrField< ::google::protobuf::Method >&
183 ::google::protobuf::RepeatedPtrField< ::google::protobuf::Method > methods_;
199 class LIBPROTOBUF_EXPORT Method : public ::google::protobuf::Message {
201 Method();
    [all...]
  /external/proguard/src/proguard/optimize/
ChangedCodePrinter.java 122 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
124 attributeVisitor.visitDeprecatedAttribute(clazz, method, deprecatedAttribute);
128 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
130 attributeVisitor.visitSyntheticAttribute(clazz, method, syntheticAttribute);
134 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttribute)
136 attributeVisitor.visitSignatureAttribute(clazz, method, syntheticAttribute);
146 public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute exceptionsAttribute
    [all...]
  /art/test/118-noimage-dex2oat/src/
Main.java 18 import java.lang.reflect.Method;
50 private static final Method getCurrentInstructionSetMethod;
51 private static final Method isBootClassPathOnDiskMethod;
74 Method m = k.getDeclaredMethod("run");
  /art/test/517-checker-builder-fallthrough/src/
Main.java 23 Method m = c.getMethod("testCase", new Class[] { int.class });
  /art/test/541-regression-inlined-deopt/src/
Main.java 27 Method m = c.getMethod("foo");
  /art/test/591-new-instance-string/src/
Main.java 23 Method m = c.getMethod("multipleInit", int.class);
  /art/test/595-error-class/src/
Main.java 23 Method m = c.getMethod("select", boolean.class);
  /art/test/600-verifier-fails/src/
Main.java 17 import java.lang.reflect.Method;
  /art/test/973-default-multidex/src/
Main.java 23 Method m = c.getMethod("callMethod");
27 System.out.println("FAILED: Could not call method");
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
ContainsPoolIndex.java 32 Method,
  /cts/tests/tests/security/src/android/security/cts/
NetdTest.java 26 import java.lang.reflect.Method;
49 Method mSMMethod = mSMClass.getDeclaredMethod("getService", String.class);
50 Method mStubMethod = mDeclaredClasses[0].getDeclaredMethod("asInterface", IBinder.class);
51 Method mINMSMethod = mINMSClass.getDeclaredMethod("setInterfaceThrottle", String.class, int.class, int.class);
68 /* Underlying method has been changed. */
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
SingleStepThroughReflectionDebuggee.java 25 import java.lang.reflect.Method;
36 public static void breakpointTest(Method m, Object receiver)
39 m.invoke(receiver); // method is void: ignore result.
54 Method m = getMethod("methodCalledThroughReflection");
68 private static Method getMethod(String name) throws NoSuchMethodException {
  /external/guava/guava/src/com/google/common/eventbus/
EventSubscriber.java 24 import java.lang.reflect.Method;
29 * Wraps a single-argument subscriber method on a specific object.
31 * <p>This class only verifies the suitability of the method and event type if
34 * <p>Two EventSubscribers are equivalent when they refer to the same method on the
36 * method is registered more than once.
42 /** Object sporting the subscriber method. */
44 /** Subscriber method. */
45 private final Method method; field in class:EventSubscriber
48 * Creates a new EventSubscriber to wrap {@code method} on @{code target}
    [all...]
  /external/guava/guava-testlib/test/com/google/common/collect/testing/
OpenJdk6ListTests.java 32 import java.lang.reflect.Method;
48 @Override protected Collection<Method> suppressForArraysAsList() {
53 @Override protected Collection<Method> suppressForCopyOnWriteArrayList() {
61 @Override protected Collection<Method> suppressForCheckedList() {
OpenJdk6MapTests.java 31 import java.lang.reflect.Method;
51 @Override protected Collection<Method> suppressForTreeMapNatural() {
62 protected Collection<Method> suppressForConcurrentHashMap() {
81 protected Collection<Method> suppressForConcurrentSkipListMap() {

Completed in 756 milliseconds

1 2 3 4 5 6 7 8 91011>>