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

123456

/frameworks/base/core/java/android/text/method/
H A DTransformationMethod2.java16 package android.text.method;
H A DHideReturnsTransformationMethod.java17 package android.text.method;
20 * This transformation method causes any carriage return characters (\r)
H A DSingleLineTransformationMethod.java17 package android.text.method;
20 * This transformation method causes any newline characters (\n) to be
H A DDateKeyListener.java17 package android.text.method;
H A DDateTimeKeyListener.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 DTimeKeyListener.java17 package android.text.method;
H A DTransformationMethod.java17 package android.text.method;
39 * This method is called when the TextView that uses this
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
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
H A DBindingMethod.java41 * @return The method to call to set the attribute value.
43 String method(); method in interface:BindingMethod
/frameworks/base/cmds/uiautomator/library/testrunner-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")));
/frameworks/base/core/java/android/hardware/camera2/dispatch/
H A DBroadcastDispatcher.java49 public Object dispatch(Method method, Object[] args) throws Throwable { argument
54 Object localResult = dispatchTarget.dispatch(method, args);
H A DDispatchable.java21 * Dynamically dispatch a method and its argument to some object.
23 * <p>This can be used to intercept method calls and do work around them, redirect work,
28 * Dispatch the method and arguments to this object.
29 * @param method a method defined in class {@code T}
30 * @param args arguments corresponding to said {@code method}
31 * @return the object returned when invoking {@code method}
32 * @throws Throwable any exception that might have been raised while invoking the method
34 public Object dispatch(Method method, Object[] args) throws Throwable; argument
H A DNullDispatcher.java35 public Object dispatch(Method method, Object[] args) { argument
H A DArgumentReplacingDispatcher.java47 * <p>For example, if a method {@code onAction(T1 a, Integer b, T2 c)} is invoked, and we wanted
51 * <p>If a method dispatched has less arguments than {@code argumentIndex}, it is
67 public Object dispatch(Method method, Object[] args) throws Throwable { argument
74 return mTarget.dispatch(method, args);
H A DDuckTypingDispatcher.java27 * <p>For example, if two types have identical method names and arguments, but
52 public Object dispatch(Method method, Object[] args) { argument
53 return mDuck.invoke(method.getName(), args);
H A DHandlerDispatcher.java33 * <p>Any exceptions thrown on the handler while trying to invoke a method
49 * @param dispatchTarget the destination whose method calls will be redirected into the handler
60 public Object dispatch(final Method method, final Object[] args) throws Throwable { argument
65 mDispatchTarget.dispatch(method, args);
72 Log.wtf(TAG, "IllegalAccessException while invoking " + method, e);
75 Log.wtf(TAG, "IllegalArgumentException while invoking " + method, e);
H A DInvokeDispatcher.java37 public Object dispatch(Method method, Object[] args) { argument
39 return method.invoke(mTarget, args);
46 Log.wtf(TAG, "IllegalAccessException while invoking " + method, e);
49 Log.wtf(TAG, "IllegalArgumentException while invoking " + method, e);
/frameworks/base/tools/aapt/tests/
H A DPseudolocales_test.cpp29 static void simple_helper(const char* input, const char* expected, PseudolocalizationMethod method) { argument
30 Pseudolocalizer pseudo(method);
37 const char* expected, PseudolocalizationMethod method) {
38 Pseudolocalizer pseudo(method);
36 compound_helper(const char* in1, const char* in2, const char *in3, const char* expected, PseudolocalizationMethod method) argument
/frameworks/base/core/tests/coretests/src/android/text/method/
H A DBackspaceTest.java17 package android.text.method;
32 * Test backspace key handling of {@link android.text.method.BaseKeyListener}.
34 * Only contains edge cases. For normal cases, see {@see android.text.method.cts.BackspaceTest}.
H A DForwardDeleteTest.java17 package android.text.method;
33 * Test forward delete key handling of {@link android.text.method.BaseKeyListener}.
35 * Only contains edge cases. For normal cases, see {@see android.text.method.cts.ForwardDeleteTest}.
H A DEditorState.java17 package android.text.method;
/frameworks/base/tools/aapt2/compile/
H A DPseudolocalizer_test.cpp31 Pseudolocalizer::Method method) {
32 Pseudolocalizer pseudo(method);
42 Pseudolocalizer::Method method) {
43 Pseudolocalizer pseudo(method);
29 SimpleHelper(const char* input, const char* expected, Pseudolocalizer::Method method) argument
40 CompoundHelper( const char* in1, const char* in2, const char* in3, const char* expected, Pseudolocalizer::Method method) argument
/frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/robolectric/
H A DSuwLibRobolectricTestRunner.java60 protected void runChild(FrameworkMethod method, RunNotifier notifier) { argument
61 System.out.println("===== Running " + method + " =====");
62 super.runChild(method, notifier);

Completed in 330 milliseconds

123456