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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/
lookup_left.h 2 - (int)method;
lookup_right.h 3 - (double)method;
  /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/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];
32 // CHECK-CC3: ObjCInstanceMethodDecl:{ResultType void}{TypedText method:}{Placeholder (int)} (32)
  /dalvik/dx/tests/098-dex-jsr-ret-throw/
run 17 dx --debug --dump --method=run --rop-blocks 'ViewDebug$ViewServer.class'
  /external/webkit/Source/WebCore/bindings/scripts/test/
TestMediaQueryListListener.idl 30 void method(in MediaQueryListListener listener);
  /external/wpa_supplicant_8/src/eap_server/
eap_server_methods.c 2 * EAP server method registration
26 * eap_server_get_eap_method - Get EAP method based on type number
28 * @method: EAP type number
29 * Returns: Pointer to EAP method or %NULL if not found
31 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method)
35 if (m->vendor == vendor && m->method == method)
43 * eap_server_get_type - Get EAP type for the given EAP method name
44 * @name: EAP method name, e.g., TLS
46 * 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;
KeyListenerStubActivity.java 17 package android.text.method.cts;
23 import android.text.method.BaseKeyListener;
24 import android.text.method.DateKeyListener;
25 import android.text.method.DateTimeKeyListener;
26 import android.text.method.DigitsKeyListener;
27 import android.text.method.MultiTapKeyListener;
28 import android.text.method.NumberKeyListener;
29 import android.text.method.QwertyKeyListener;
30 import android.text.method.TextKeyListener;
31 import android.text.method.TimeKeyListener
    [all...]
  /dalvik/dx/tests/115-merge/testdata/
Basic.java 7 String method() { method in class:Basic
8 return "this is a method result";
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_methods.h 2 * hostapd / EAP method registration
19 EapType method);
21 EapType method, const char *name);
22 void eap_server_method_free(struct eap_method *method);
23 int eap_server_method_register(struct eap_method *method);
  /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...]
  /cts/tests/tests/app/src/android/app/cts/
LaunchTest.java 52 method = "Activity",
57 method = "onUserInteraction",
62 method = "onUserLeaveHint",
67 method = "setVisible",
72 method = "closeContextMenu",
77 method = "finalize",
82 method = "getInstanceCount",
87 method = "getIntent",
92 method = "getApplication",
97 method = "setIntent"
    [all...]
ExpandableListActivityTest.java 39 method = "getExpandableListView",
44 method = "setListAdapter",
49 method = "getSelectedPosition",
54 method = "onGroupExpand",
59 method = "onGroupCollapse",
64 method = "setSelectedChild",
69 method = "setSelectedGroup",
74 method = "getSelectedId",
79 method = "ExpandableListActivity",
84 method = "getExpandableListAdapter"
    [all...]
LifecycleTest.java 65 method = "Activity",
70 method = "onUserInteraction",
75 method = "onUserLeaveHint",
80 method = "setVisible",
85 method = "closeContextMenu",
90 method = "finalize",
95 method = "getInstanceCount",
100 method = "getIntent",
105 method = "setIntent",
110 method = "getApplication"
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
ReplacementTransformationMethodTest.java 17 package android.text.method.cts;
26 import android.text.method.ReplacementTransformationMethod;
56 method = "getTransformation",
60 MyReplacementTransformationMethod method = local
62 CharSequence result = method.getTransformation("010101", null);
65 mEditText.setTransformationMethod(method);
72 method = "getTransformation",
80 ReplacementTransformationMethod method = new MyReplacementTransformationMethod(ORIGINAL, local
84 method.getTransformation(null, null);
85 fail("The method should check whether the char sequence is null.")
100 ReplacementTransformationMethod method = local
128 ReplacementTransformationMethod method = local
153 ReplacementTransformationMethod method = new MyReplacementTransformationMethod(ORIGINAL, local
    [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...]
  /cts/tools/vm-tests/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
  /cts/tools/vm-tests/src/dot/junit/opcodes/neg_int/d/
T_neg_int_6.d 6 .method public <init>()V
11 .end method
13 .method public run(I)I
18 .end method
  /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
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_int/d/
T_neg_int_6.d 6 .method public <init>()V
11 .end method
13 .method public run(I)I
18 .end method
  /external/chromium/net/tools/flip_server/
spdy_util.cc 16 std::string EncodeURL(std::string uri, std::string host, std::string method) {
19 return std::string(method + "_" + uri);
26 "http://" + host + uri, method + "_/", false);
28 filename = UrlToFilenameEncoder::Encode(uri, method + "_/", false);

Completed in 364 milliseconds

1 2 3 4 5 6 7 8 91011>>