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

123456

/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;
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 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
/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;
23 import android.text.method.BaseKeyListener;
24 import android.text.method.KeyListenerTestCase;
30 * Test backspace key handling of {@link android.text.method.BaseKeyListner}.
32 * Only contains edge cases. For normal cases, see {@see android.text.method.cts.BackspaceTest}.
H A DForwardDeleteTest.java17 package android.text.method;
23 import android.text.method.BaseKeyListener;
24 import android.text.method.KeyListenerTestCase;
30 * Test forward delete key handling of {@link android.text.method.BaseKeyListener}.
32 * Only contains edge cases. For normal cases, see {@see android.text.method.cts.ForwardDeleteTest}.
H A DKeyListenerTestCase.java17 package android.text.method;
H A DWordIteratorTest.java17 package android.text.method;
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
H A DTestContentProvider.java36 public Bundle call(String method, String arg, Bundle extras) { argument
37 // Intercept and log delete method calls.
38 if (DocumentsContract.METHOD_DELETE_DOCUMENT.equals(method)) {
43 return super.call(method, arg, extras);
/frameworks/base/tools/aapt2/compile/
H A DPseudolocalizer_test.cpp29 Pseudolocalizer::Method method) {
30 Pseudolocalizer pseudo(method);
41 Pseudolocalizer::Method method) {
42 Pseudolocalizer pseudo(method);
28 simpleHelper(const char* input, const char* expected, Pseudolocalizer::Method method) argument
39 compoundHelper(const char* in1, const char* in2, const char *in3, const char* expected, Pseudolocalizer::Method method) argument

Completed in 552 milliseconds

123456