Searched refs:method (Results 1 - 25 of 340) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/text/method/
H A DTransformationMethod2.java16 package android.text.method;
/frameworks/support/webkit-codegen/src/test/resources/codegen/
H A DSingleClassAndMethod.java20 public void method(boolean param) { method in class:SingleClassAndMethod
H A DWebKitTypeAsMethodReturn.java20 public WebViewClient method() { method in class:WebKitTypeAsMethodReturn
H A DWebKitTypeAsMethodParameter.java20 public void method(WebViewClient webViewClient); method in class:WebKitTypeAsMethodParameter
/frameworks/support/webkit-codegen/src/test/resources/codegen-expected/
H A DSingleClassAndMethodBoundaryInterface.java4 void method(boolean param); method in interface:SingleClassAndMethodBoundaryInterface
H A DWebKitTypeAsMethodReturnBoundaryInterface.java6 InvocationHandler method(); method in interface:WebKitTypeAsMethodReturnBoundaryInterface
/frameworks/support/wear/wear_stubs/api_legacy/
H A D2.txt20 method public static int version();
29 method public void dump(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]);
30 method public final boolean isAmbient();
31 method public void onCreate();
32 method public void onDestroy();
33 method public void onPause();
34 method public void onResume();
35 method public void onStop();
36 method public final void setAmbientEnabled();
37 method publi
[all...]
H A Dcurrent.txt20 method public static int version();
29 method public void dump(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]);
30 method public final boolean isAmbient();
31 method public void onCreate();
32 method public void onDestroy();
33 method public void onPause();
34 method public void onResume();
35 method public void onStop();
36 method public final void setAmbientEnabled();
37 method publi
[all...]
H A D1.txt20 method public static int version();
29 method public void dump(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]);
30 method public final boolean isAmbient();
31 method public void onCreate();
32 method public void onDestroy();
33 method public void onPause();
34 method public void onResume();
35 method public void onStop();
36 method public final void setAmbientEnabled();
37 method publi
[all...]
/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/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DExpandableListViewBindingAdapter.java23 @BindingMethod(type = ExpandableListView.class, attribute = "android:onChildClick", method = "setOnChildClickListener"),
24 @BindingMethod(type = ExpandableListView.class, attribute = "android:onGroupClick", method = "setOnGroupClickListener"),
25 @BindingMethod(type = ExpandableListView.class, attribute = "android:onGroupCollapse", method = "setOnGroupCollapseListener"),
26 @BindingMethod(type = ExpandableListView.class, attribute = "android:onGroupExpand", method = "setOnGroupExpandListener"),
H A DTabWidgetBindingAdapter.java22 @BindingMethod(type = android.widget.TabWidget.class, attribute = "android:divider", method = "setDividerDrawable"),
23 @BindingMethod(type = android.widget.TabWidget.class, attribute = "android:tabStripEnabled", method = "setStripEnabled"),
24 @BindingMethod(type = android.widget.TabWidget.class, attribute = "android:tabStripLeft", method = "setLeftStripDrawable"),
25 @BindingMethod(type = android.widget.TabWidget.class, attribute = "android:tabStripRight", method = "setRightStripDrawable"),
H A DVideoViewBindingAdapter.java24 @BindingMethod(type = VideoView.class, attribute = "android:onCompletion", method = "setOnCompletionListener"),
25 @BindingMethod(type = VideoView.class, attribute = "android:onError", method = "setOnErrorListener"),
26 @BindingMethod(type = VideoView.class, attribute = "android:onInfo", method = "setOnInfoListener"),
27 @BindingMethod(type = VideoView.class, attribute = "android:onPrepared", method = "setOnPreparedListener"),
H A DProgressBarBindingAdapter.java22 @BindingMethod(type = android.widget.ProgressBar.class, attribute = "android:indeterminateTint", method = "setIndeterminateTintList"),
23 @BindingMethod(type = android.widget.ProgressBar.class, attribute = "android:progressTint", method = "setProgressTintList"),
24 @BindingMethod(type = android.widget.ProgressBar.class, attribute = "android:secondaryProgressTint", method = "setSecondaryProgressTintList"),
H A DCheckedTextViewBindingAdapter.java22 @BindingMethod(type = android.widget.CheckedTextView.class, attribute = "android:checkMark", method = "setCheckMarkDrawable"),
23 @BindingMethod(type = android.widget.CheckedTextView.class, attribute = "android:checkMarkTint", method = "setCheckMarkTintList"),
H A DLinearLayoutBindingAdapter.java22 @BindingMethod(type = android.widget.LinearLayout.class, attribute = "android:divider", method = "setDividerDrawable"),
23 @BindingMethod(type = android.widget.LinearLayout.class, attribute = "android:measureWithLargestChild", method = "setMeasureWithLargestChildEnabled"),
H A DToolbarBindingAdapter.java23 @BindingMethod(type = Toolbar.class, attribute = "android:onMenuItemClick", method = "setOnMenuItemClickListener"),
24 @BindingMethod(type = Toolbar.class, attribute = "android:onNavigationClick", method = "setNavigationOnClickListener"),
H A DZoomControlsBindingAdapter.java23 @BindingMethod(type = ZoomControls.class, attribute = "android:onZoomIn", method = "setOnZoomInClickListener"),
24 @BindingMethod(type = ZoomControls.class, attribute = "android:onZoomOut", method = "setOnZoomOutClickListener"),
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DCallbackWrapper.java35 public final ModelMethod method; field in class:CallbackWrapper
43 public CallbackWrapper(ModelClass klass, ModelMethod method) { argument
45 this.method = method;
46 this.key = uniqueKey(klass, method);
76 public static String uniqueKey(ModelClass klass, ModelMethod method) { argument
77 String base = klass.getCanonicalName() + "#" + method.getName();
78 for (ModelClass param : method.getParameterTypes()) {
97 return Math.min(method.getMinApi(), klass.getMinApi());
/frameworks/base/tests/testables/src/android/testing/
H A DAndroidTestingRunner.java54 protected Statement methodInvoker(FrameworkMethod method, Object test) { argument
55 method = looperWrap(method, test, method);
56 final Statement statement = super.methodInvoker(method, test);
57 return shouldRunOnUiThread(method) ? new UiThreadStatement(statement, true) : statement;
60 protected Statement withBefores(FrameworkMethod method, Object target, Statement statement) { argument
61 List befores = looperWrap(method, target,
63 return befores.isEmpty() ? statement : new RunBefores(method, statement,
67 protected Statement withAfters(FrameworkMethod method, Objec argument
74 withPotentialTimeout(FrameworkMethod method, Object test, Statement next) argument
87 looperWrap(FrameworkMethod method, Object test, List<FrameworkMethod> methods) argument
101 looperWrap(FrameworkMethod method, Object test, FrameworkMethod base) argument
111 shouldRunOnUiThread(FrameworkMethod method) argument
[all...]
/frameworks/base/tests/utils/testutils/java/android/app/test/
H A DMockAnswerUtil.java32 * Answer that calls the method in the Answer called "answer" that matches the type signature of
33 * the method being answered. An error will be thrown at runtime if the signature does not match
39 Method method = invocation.getMethod();
41 Method implementation = getClass().getMethod("answer", method.getParameterTypes());
42 if (!implementation.getReturnType().equals(method.getReturnType())) {
43 throw new RuntimeException("Found answer method does not have expected return "
44 + "type. Expected: " + method.getReturnType() + ", got "
51 throw new RuntimeException("Error invoking answer method", e);
56 throw new RuntimeException("Could not find answer method with the expected args "
57 + Arrays.toString(method
[all...]
/frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/robolectric/
H A DSuwLibRobolectricTestRunner.java31 protected void runChild(FrameworkMethod method, RunNotifier notifier) { argument
32 System.out.println("===== Running " + method + " =====");
33 super.runChild(method, notifier);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DModelClass.java243 * @param name The name of the method to find.
244 * @param args The types that the method should accept.
247 * @param allowProtected true if the method can be protected as well as public.
256 for (ModelMethod method : methods) {
257 if ((method.isPublic() || (allowProtected && method.isProtected())) &&
258 (!staticOnly || method.isStatic()) &&
259 name.equals(method.getName()) && method.acceptsArguments(args)) {
260 matching.add(method);
[all...]
H A DCallable.java39 public final ModelMethod method; field in class:Callable
46 int parameterCount, int flags, ModelMethod method) {
53 this.method = method;
89 ", method=" + method +
45 Callable(Type type, String name, String setterName, ModelClass resolvedType, int parameterCount, int flags, ModelMethod method) argument
/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

Completed in 972 milliseconds

1234567891011>>