HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 1 - 25 of 5141) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestMediaQueryListListener.idl 29 void method(MediaQueryListListener listener);
  /external/clang/test/Modules/Inputs/
lookup_left.h 2 - (int)method;
lookup_right.h 3 - (double)method;
  /ndk/tests/build/issue41387-uniform-initialized-rvalue/jni/
issue41387-uniform-initialized-rvalue.cpp 3 void method() const {} function in struct:pair
7 (pair { 0, 0 }).method();
  /external/mockito/src/org/mockito/internal/util/
ObjectMethodsGuru.java 11 import java.lang.reflect.Method;
17 public boolean isToString(Method method) {
18 return isToString(new DelegatingMethod(method));
21 public boolean isToString(MockitoMethod method) {
22 return method.getReturnType() == String.class
23 && method.getParameterTypes().length == 0
24 && method.getName().equals("toString");
27 public boolean isEqualsMethod(Method method) {
    [all...]
  /external/mockito/src/org/mockito/internal/creation/
DelegatingMethod.java 7 import java.lang.reflect.Method;
13 private final Method method; field in class:DelegatingMethod
15 public DelegatingMethod(Method method) {
16 assert method != null : "Method cannot be null";
17 this.method = method;
21 return method.getExceptionTypes();
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
fakewebrtccommon.h 35 #define WEBRTC_STUB(method, args) \
36 virtual int method args OVERRIDE { return 0; }
38 #define WEBRTC_STUB_CONST(method, args) \
39 virtual int method args const OVERRIDE { return 0; }
41 #define WEBRTC_BOOL_STUB(method, args) \
42 virtual bool method args OVERRIDE { return true; }
44 #define WEBRTC_VOID_STUB(method, args) \
45 virtual void method args OVERRIDE {}
47 #define WEBRTC_FUNC(method, args) \
48 virtual int method args OVERRID
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Allow.java 47 /** method field
49 protected String method; field in class:Allow
62 method = m;
65 /** get the method field
69 return method;
73 * Set the method member
74 * @param method method to set.
76 public void setMethod(String method) throws ParseException {
77 if (method == null
    [all...]
  /external/chromium_org/base/android/
jni_registrar.cc 15 const RegistrationMethod* method,
18 const RegistrationMethod* end = method + count;
19 while (method != end) {
20 if (!method->func(env)) {
21 DLOG(ERROR) << method->name << " failed registration!";
24 method++;
  /external/clang/test/Index/
complete-recovery.m 4 - (void)method:(int)x;
8 - (void)method:(int)x {
9 A *a = [A method:1];
12 z = [a2 method:1];
13 blah ? blech : [a2 method:1];
14 (a * a2)([a2 method:1]);
15 B *a = [a2 method:1];
35 // CHECK-CC3: ObjCInstanceMethodDecl:{ResultType void}{TypedText method:}{Placeholder (int)} (32)
  /art/runtime/mirror/
dex_cache-inl.h 27 ArtMethod* method = GetResolvedMethods()->Get(method_idx); local
29 if (method != NULL && method->IsRuntimeMethod()) {
30 DCHECK(method == Runtime::Current()->GetResolutionMethod());
33 return method;
  /dalvik/dx/tests/098-dex-jsr-ret-throw/
run 17 dx --debug --dump --method=run --rop-blocks 'ViewDebug$ViewServer.class'
  /cts/tests/tests/text/src/android/text/method/cts/
ReplacementTransformationMethodTest.java 17 package android.text.method.cts;
22 import android.text.method.ReplacementTransformationMethod;
50 MyReplacementTransformationMethod method = local
52 CharSequence result = method.getTransformation("010101", null);
55 mEditText.setTransformationMethod(method);
61 ReplacementTransformationMethod method = new MyReplacementTransformationMethod(ORIGINAL, local
65 method.getTransformation(null, null);
66 fail("The method should check whether the char sequence is null.");
71 assertEquals("", method.getTransformation("", null).toString());
76 ReplacementTransformationMethod method local
95 ReplacementTransformationMethod method = local
114 ReplacementTransformationMethod method = new MyReplacementTransformationMethod(ORIGINAL, local
    [all...]
HideReturnsTransformationMethodTest.java 17 package android.text.method.cts;
20 import android.text.method.HideReturnsTransformationMethod;
33 MyHideReturnsTranformationMethod method = new MyHideReturnsTranformationMethod(); local
34 TextMethodUtils.assertEquals(new char[] { '\r' }, method.getOriginal());
46 MyHideReturnsTranformationMethod method = new MyHideReturnsTranformationMethod(); local
47 TextMethodUtils.assertEquals(new char[] { '\uFEFF' }, method.getReplacement());
  /external/wpa_supplicant_8/src/eap_server/
eap_server_methods.c 2 * EAP server method registration
20 * eap_server_get_eap_method - Get EAP method based on type number
22 * @method: EAP type number
23 * Returns: Pointer to EAP method or %NULL if not found
25 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method)
29 if (m->vendor == vendor && m->method == method)
37 * eap_server_get_type - Get EAP type for the given EAP method name
38 * @name: EAP method name, e.g., TLS
40 * Returns: EAP method type or %EAP_TYPE_NONE if not foun
    [all...]
  /cts/tests/src/android/text/method/cts/
StubActivity.java 17 package android.text.method.cts;
20 import android.text.method.ArrowKeyMovementMethod;
21 import android.text.method.LinkMovementMethod;
22 import android.text.method.ScrollingMovementMethod;
  /dalvik/dx/tests/115-merge/testdata/
Basic.java 7 String method() { method in class:Basic
8 return "this is a method result";
  /frameworks/base/core/java/android/text/method/
TransformationMethod2.java 16 package android.text.method;
  /external/apache-http/src/org/apache/http/impl/
DefaultHttpRequestFactory.java 73 private static boolean isOneOf(final String[] methods, final String method) {
75 if (methods[i].equalsIgnoreCase(method)) {
87 String method = requestline.getMethod(); local
88 if (isOneOf(RFC2616_COMMON_METHODS, method)) {
90 } else if (isOneOf(RFC2616_ENTITY_ENC_METHODS, method)) {
92 } else if (isOneOf(RFC2616_SPECIAL_METHODS, method)) {
95 throw new MethodNotSupportedException(method + " method not supported");
99 public HttpRequest newHttpRequest(final String method, final String uri)
101 if (isOneOf(RFC2616_COMMON_METHODS, method)) {
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MethodOverridesTest.java 19 import java.lang.reflect.Method;
30 Method method = StringBuilder.class.getMethod("append", char.class); local
31 assertEquals("append", method.getName());
35 Method method = StringBuilder.class.getMethod("append", char.class); local
37 Arrays.asList(method.getParameterTypes()));
41 Method method = StringBuilder.class.getMethod("append", char.class); local
42 assertEquals(StringBuilder.class, method.getDeclaringClass())
46 Method method = StringBuilder.class.getMethod("append", char.class); local
51 Method method = StringBuilder.class.getMethod("append", char.class); local
82 Method method = Sub.class.getMethod("returner"); local
92 Method method = Sub.class.getMethod("returner"); local
109 Method method = Sub.class.getMethod("visibility"); local
126 Method method = PublicSub.class.getMethod("unchanged"); local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
BoundedGenericMethodsTests.java 19 import java.lang.reflect.Method;
47 * @param method
48 * the declaring method
50 private void checkBoundedTypeParameter(Method method) {
51 TypeVariable<Method> typeParameter = getTypeParameter(method);
53 assertEquals(method, typeParameter.getGenericDeclaration());
62 * Tests whether the specified method declares a parameter with the type of
65 * @param method
108 Method method = clazz.getMethod("noParamNoReturn"); local
112 Method method = clazz.getMethod("paramNoReturn", BoundedGenericMethods.class); local
117 Method method = clazz.getMethod("noParamReturn"); local
123 Method method = clazz.getMethod("paramReturn", BoundedGenericMethods.class); local
    [all...]
GenericMethodsTests.java 20 import java.lang.reflect.Method;
52 * Tests whether the specified method declares a type parameter T.
53 * @param method the method
55 private void checkTypeParameter(Method method) {
56 TypeVariable<Method> typeParameter = getTypeParameter(method);
58 assertEquals(method, typeParameter.getGenericDeclaration());
62 * Tests whether the specified method declares a parameter with th
87 Method method = clazz.getMethod("noParamNoReturn"); local
92 Method method = clazz.getMethod("paramNoReturn", Object.class); local
98 Method method = clazz.getMethod("noParamReturn"); local
104 Method method = clazz.getMethod("paramReturn", Object.class); local
    [all...]
  /external/junit/src/org/junit/rules/
TestWatchman.java 19 * public void failed(Throwable e, FrameworkMethod method) {
20 * watchedLog+= method.getName() + &quot; &quot; + e.getClass().getSimpleName()
25 * public void succeeded(FrameworkMethod method) {
26 * watchedLog+= method.getName() + &quot; &quot; + &quot;success!\n&quot;;
46 public Statement apply(final Statement base, final FrameworkMethod method,
51 starting(method);
54 succeeded(method);
58 failed(t, method);
61 finished(method);
68 * Invoked when a test method succeed
    [all...]
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventHandlerTest.java 20 import java.lang.reflect.Method;
43 * Checks that a no-frills, no-issues method call is properly executed.
48 Method method = getRecordingMethod(); local
50 EventHandler handler = new EventHandler(this, method);
54 assertTrue("Handler must call provided method.", methodCalled);
75 Method method = getRecordingMethod(); local
77 new EventHandler(null, method);
85 Method method = getExceptionThrowingMethod() local
98 Method method = getErrorThrowingMethod(); local
119 Method method; local
142 Method method; local
165 Method method; local
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_float/d/
T_neg_float_5.d 6 .method public <init>()V
11 .end method
13 .method public run(F)F
18 .end method

Completed in 796 milliseconds

1 2 3 4 5 6 7 8 91011>>