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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/tests/115-merge/testdata/
Basic.java 7 String method() { method in class:Basic
8 return "this is a method result";
TryCatchFinally.java 5 public static void method() { method in class:TryCatchFinally
Annotated.java 14 @Annotated.Marker(a="on method")
15 public void method(String a, @Annotated.Marker(a="on parameter") String b) {} method in class:Annotated
  /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...]
TextMethodUtils.java 17 package android.text.method.cts;
  /external/webkit/Source/WebCore/manual-tests/resources/
TestApplet.java 12 public int method() method in class:TestApplet
  /frameworks/base/core/java/android/text/method/
TransformationMethod2.java 16 package android.text.method;
TransformationMethod.java 17 package android.text.method;
39 * This method is called when the TextView that uses this
  /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();
  /cts/tools/signature-tools/src/signature/model/impl/
SigMethod.java 50 public static String toString(IMethod method) {
52 builder.append(Modifier.toString(method.getModifiers()));
53 builder.append(method.getReturnType());
55 if (method.getTypeParameters() != null
56 && !method.getTypeParameters().isEmpty()) {
60 .separate(method.getTypeParameters(), ", "));
63 builder.append(method.getName());
65 builder.append(method.getParameters().isEmpty() ? "" : ModelUtil
66 .separate(method.getParameters(), ", "));
68 if (method.getExceptions() != nul
    [all...]
  /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/
InterfaceEnum.java 22 public void method() { } 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
  /external/chromium/android/jni/
autofill_request_url.cc 13 jmethodID method = env->GetStaticMethodID(bridgeClass, "getAutofillQueryUrl", "()Ljava/lang/String;"); local
14 jstring autofill_query_url = static_cast<jstring>(env->CallStaticObjectMethod(bridgeClass, method));
  /external/webkit/LayoutTests/http/tests/resources/
tripmine.php 36 $method = $_SERVER['REQUEST_METHOD']; variable
39 if ($method == "OPTIONS") {
46 if ($method != "GET" && $method != "HEAD" && $method != "POST") {
47 setState("FAIL. Non-simple method $method.", $stateFile);
  /libcore/luni/src/main/java/java/lang/
Void.java 20 import java.lang.reflect.Method;
40 Method method = Runnable.class.getMethod("run", EmptyArray.CLASS); local
41 return (Class<Void>) method.getReturnType();
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/a/
A.java 12 public void method() { throw new RuntimeException("Stub!"); } method in class:A
  /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...]
  /external/chromium/net/server/
http_server_request_info.h 23 // Request method.
24 std::string method; member in class:net::HttpServerRequestInfo
  /external/chromium/webkit/glue/
form_data.h 28 string16 method; member in struct:webkit_glue::FormData
  /external/clang/test/CodeGen/
fp-contract-pragma.cpp 39 float method(float a, float b, float c) { function in class:fp_contract_4
  /external/clang/test/Sema/
ms_wide_predefined_expr.cpp 17 void method() { function in class:PR13206::A
24 x.method();
  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ForwardsInvocations.java 11 import java.lang.reflect.Method;
29 Method method = invocation.getMethod() ; local
31 return method.invoke(delegatedObject, invocation.getArguments());
  /external/webkit/Source/WebCore/bindings/scripts/test/CPP/
WebDOMTestMediaQueryListListener.cpp 76 void WebDOMTestMediaQueryListListener::method(const WebDOMMediaQueryListListener& listener) function in class:WebDOMTestMediaQueryListListener
81 impl()->method(toWebCore(listener));

Completed in 1917 milliseconds

1 2 3 4 5 6 7 8 91011>>