HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 426 - 450 of 7000) sorted by null

<<11121314151617181920>>

  /external/testng/src/test/java/test/invokedmethodlistener/
InvokedMethodListener.java 15 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
16 m_methods.add(method);
20 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
  /external/wpa_supplicant_8/src/eap_server/
eap_methods.h 2 * EAP server method registration
15 EapType method);
17 EapType method, const char *name);
18 int eap_server_method_register(struct eap_method *method);
24 /* EAP server method registration calls for statically linked in methods */
  /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()));
  /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);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Request.java 30 private final String method; field in class:Request
41 this.method = builder.method;
69 public String method() { method in class:Request
70 return method;
111 return "Request{method="
112 + method
122 private String method; field in class:Request.Builder
128 this.method = "GET";
134 this.method = request.method
248 public Builder method(String method, RequestBody body) { method in class:Request.Builder
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_methods.c 2 * EAP peer: Method registration
21 static void eap_peer_method_free(struct eap_method *method);
25 * eap_peer_get_eap_method - Get EAP method based on type number
27 * @method: EAP type number
28 * Returns: Pointer to EAP method or %NULL if not found
30 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method)
34 if (m->vendor == vendor && m->method == method)
42 * eap_peer_get_type - Get EAP type for the given EAP method name
43 * @name: EAP method name, e.g., TL
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
ModelClass.java 240 * @param name The name of the method to find.
241 * @param args The types that the method should accept.
251 for (ModelMethod method : methods) {
252 if (method.isPublic() && (!staticOnly || method.isStatic()) &&
253 name.equals(method.getName()) && method.acceptsArguments(args)) {
254 matching.add(method);
263 * @param name The name of the method to find.
264 * @param numParameters The number of parameters that the method should tak
    [all...]
  /cts/tests/tests/jni/libjnitest/
macroized_tests.c 23 * This file also defines a static method called runAllTests(), which
50 * how to call a method: (virtual, direct, static) x (standard, array of
132 * Looks up a static method on StaticFromNative.
140 *errorMsg = failure("could not find static test method %s:%s",
148 * Looks up an instance method on InstanceFromNative.
155 *errorMsg = failure("could not find instance test method %s:%s",
163 * Looks up either an instance method on InstanceFromNative or a
164 * static method on StaticFromNative, depending on the given
191 jmethodID method = findAppropriateMethod(env, &msg, ct, local
194 if (method == NULL)
294 jmethodID method = findAppropriateMethod(env, &msg, ct, local
397 jmethodID method = findAppropriateMethod(env, &msg, ct, local
500 jmethodID method = findAppropriateMethod(env, &msg, ct, local
603 jmethodID method = findAppropriateMethod(env, &msg, ct, local
706 jmethodID method = findAppropriateMethod(env, &msg, ct, local
809 jmethodID method = findAppropriateMethod(env, &msg, ct, local
912 jmethodID method = findAppropriateMethod(env, &msg, ct, local
1015 jmethodID method = findAppropriateMethod(env, &msg, ct, local
1118 jmethodID method = findAppropriateMethod(env, &msg, ct, local
1239 jmethodID method = findAppropriateMethod(env, &msg, ct, local
1359 jmethodID method = findAppropriateMethod(env, &msg, ct, local
    [all...]
  /art/test/511-clinit-interface/src/
Main.java 17 import java.lang.reflect.Method;
26 public static void method() { method in class:Main
  /art/test/522-checker-regression-monitor-exit/smali/
Test.smali 28 .method public static synchronizedHashCode(Ljava/lang/Object;)I
40 .end method
  /art/test/595-error-class/smali/
merge.smali 19 # Method that selects between x = new Integer[] or new AnError[],
21 .method public static select(Z)Ljava/lang/Object;
31 .end method
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
InterfaceEnum.java 6 public void method() { throw new RuntimeException("Stub!"); } method in class:InterfaceEnum
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/b/
B.java 23 Parent method(Parent p) { method in class:B
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/d/
T_invoke_static_14.d 19 .method static public <clinit>()V
26 .end method
28 .method static public test()V
30 .end method
37 .method public <init>()V
42 .end method
44 .method public run()V
49 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static_range/d/
T_invoke_static_range_14.d 19 .method static public <clinit>()V
26 .end method
28 .method static public test()V
30 .end method
37 .method public <init>()V
42 .end method
44 .method public run()V
49 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_virtual/d/
T_invoke_virtual_24.d 18 .method public abstract test()V
19 .end method
27 .method public <init>()V
32 .end method
34 .method public test()V
36 .end method
38 .method public run()V
43 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_virtual_range/d/
T_invoke_virtual_range_24.d 18 .method public abstract test()V
19 .end method
27 .method public <init>()V
32 .end method
34 .method public test()V
36 .end method
38 .method public run()V
43 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int/d/
T_rsub_int_2.d 20 .method public <init>()V
25 .end method
27 .method public run(I)I
32 .end method
34 .method public run1(I)I
39 .end method
41 .method public run2(I)I
46 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int_lit8/d/
T_rsub_int_lit8_2.d 20 .method public <init>()V
25 .end method
27 .method public run(I)I
32 .end method
34 .method public run1(I)I
39 .end method
41 .method public run2(I)I
46 .end method
  /dalvik/dx/src/com/android/dx/command/dump/
Args.java 53 /** if non-null, an explicit method to dump */
54 String method; field in class:Args
  /dalvik/dx/tests/097-dex-branch-offset-zero/
run 18 dx --debug --dex --positions=none --no-locals --dump-method=Blort.test'*' \
25 dx --debug --dex --positions=none --no-locals --dump-method=Blort.test'*' \
  /dalvik/dx/tests/112-dex-return-jsr-result/
run 22 dx --debug --dex --dump-to=- --dump-method=blort.zorch --dump-width=200 \
60 # The test failed. Be helpful and print the entire method body.
61 dx --debug --dex --dump-to=- --dump-method=blort.zorch --dump-width=200 \
  /dalvik/dx/tests/115-merge/testdata/
TryCatchFinally.java 5 public static void method() { method in class:TryCatchFinally
  /development/apps/Development/src/com/android/development/
LogTextBox.java 21 import android.text.method.ScrollingMovementMethod;
22 import android.text.method.MovementMethod;
23 import android.text.method.KeyListener;
24 import android.text.method.TransformationMethod;
  /external/apache-http/src/org/apache/http/
HttpRequestFactory.java 53 HttpRequest newHttpRequest(String method, String uri)

Completed in 1548 milliseconds

<<11121314151617181920>>