Searched defs:method (Results 1 - 25 of 78) sorted by relevance

1234

/frameworks/base/core/java/android/text/method/
H A DTransformationMethod2.java16 package android.text.method;
H A DDateKeyListener.java17 package android.text.method;
H A DDateTimeKeyListener.java17 package android.text.method;
H A DHideReturnsTransformationMethod.java17 package android.text.method;
27 * This transformation method causes any carriage return characters (\r)
H A DSingleLineTransformationMethod.java17 package android.text.method;
29 * This transformation method causes any newline characters (\n) to be
H A DTimeKeyListener.java17 package android.text.method;
H A DDialerKeyListener.java17 package android.text.method;
52 * Overrides the superclass's lookup method to prefer the number field
H A DKeyListener.java17 package android.text.method;
50 * return any other value, a soft input method will be created when the
53 * not be used, instead the soft input method will take care of managing
H A DTransformationMethod.java17 package android.text.method;
39 * This method is called when the TextView that uses this
H A DAllCapsTransformationMethod.java16 package android.text.method;
H A DBaseKeyListener.java17 package android.text.method;
22 import android.text.method.TextKeyListener.Capitalize;
H A DMovementMethod.java17 package android.text.method;
28 * the movement method for purposes of content navigation. The framework automatically
29 * selects an appropriate movement method based on the content of the {@link TextView}.
53 * Returns true if this movement method allows arbitrary selection
54 * of any text; false if it has no selection (like a movement method
H A DDigitsKeyListener.java17 package android.text.method;
H A DLinkMovementMethod.java17 package android.text.method;
30 * A movement method that traverses links in the text buffer and scrolls if necessary.
H A DNumberKeyListener.java17 package android.text.method;
H A DScrollingMovementMethod.java17 package android.text.method;
25 * A movement method that interprets movement keys by scrolling the text buffer.
H A DTouch.java17 package android.text.method;
H A DWordIterator.java18 package android.text.method;
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit4/
H A DNonExecutingJUnit4ClassRunner.java44 protected Statement methodBlock(FrameworkMethod method) { argument
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/testrunner/
H A DUiAutomatorTestCaseFilter.java31 public boolean accept(Method method) { argument
32 return ((method.getParameterTypes().length == 0) &&
33 (method.getName().startsWith("test")) &&
34 (method.getReturnType().getSimpleName().equals("void")));
H A DTestCaseCollector.java46 * The class name may be in "<class name>#<method name>" format
60 * The class name may be in "<class name>#<method name>" format
76 * Adds class to test by providing class name and method name in separate strings
89 for (Method method : methods) {
90 if (mFilter.accept(method)) {
91 addSingleTestMethod(clazz, method.getName());
106 protected void addSingleTestMethod(Class<?> clazz, String method) { argument
112 testCase.setName(method);
124 * Determine if a class and its method should be accepted into test suite
130 * Determine that based on the method signatur
133 accept(Method method) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
H A DTestDelegates.java36 * {@link LayoutlibDelegate}, and look for a matching method in the delegate (named the same
38 * If the original native method is not static, then we make sure the delegate method also
86 // with @LayoutlibDelegate, look for a matching method in the delegate class.
87 // The annotation is automatically added by layoutlib_create when it replace a method
99 // if the method is not static, then the class is added as the first parameter
120 // try to load the method with the given parameter types.
124 // check that the method has the annotation
127 "Delegate method %1$s for class %2$s does not have the @LayoutlibDelegate annotation",
132 // check that the method i
171 getMethodName(Method method) argument
175 getMethodName(Method method, Class<?>[] parameters) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DInputBindResult.java23 * Bundle of information returned by input method manager about a successful
24 * binding to an input method.
30 * The input method service.
32 public final IInputMethodSession method; field in class:InputBindResult
35 * The ID for this input method, as found in InputMethodInfo; null if
36 * no input method will be bound.
46 method = _method;
52 method = IInputMethodSession.Stub.asInterface(source.readStrongBinder());
59 return "InputBindResult{" + method + " " + id
70 dest.writeStrongInterface(method);
[all...]
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestMethod.java36 public TestMethod(Method method, Class<? extends TestCase> enclosingClass) { argument
37 this(method.getName(), enclosingClass);
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserProvider.java61 public Bundle call(String method, String arg, Bundle extras) { argument

Completed in 145 milliseconds

1234