Searched defs:view (Results 1 - 25 of 319) sorted by relevance

1234567891011>>

/cts/tests/tests/view/src/android/view/cts/surfacevalidator/
H A DAnimationFactory.java16 package android.view.cts.surfacevalidator;
19 import android.view.View;
22 ValueAnimator createAnimator(View view); argument
/cts/tests/tests/view/src/android/view/cts/
H A DCtsActivity.java17 package android.view.cts;
H A DMockActivity.java17 package android.view.cts;
H A DInflateExceptionTest.java16 package android.view.cts;
23 import android.view.InflateException;
H A DSurfaceHolder_BadSurfaceTypeExceptionTest.java16 package android.view.cts;
23 import android.view.SurfaceHolder.BadSurfaceTypeException;
H A DSurface_OutOfResourcesExceptionTest.java17 package android.view.cts;
21 import android.view.Surface;
H A DTextureViewSnapshotTest.java16 package android.view.cts;
H A DWindowManager_BadTokenExceptionTest.java16 package android.view.cts;
23 import android.view.WindowManager.BadTokenException;
/cts/tests/tests/view/src/android/view/cts/util/
H A DDrawingUtils.java17 package android.view.cts.util;
25 import android.view.View;
33 * Checks the pixels in the specified {@link View}. This methods draws the view into an
41 public static void assertAllPixelsOfColor(String failMessagePrefix, View view, argument
43 final int viewWidth = view.getWidth();
44 final int viewHeight = view.getHeight();
45 // Create a bitmap that matches the size of our view
49 // And ask the view to draw itself to the canvas / bitmap
50 view.draw(canvas);
/cts/tests/inputmethod/src/android/view/inputmethod/cts/
H A DInputMethodSettingsActivityStub.java17 package android.view.inputmethod.cts;
H A DEditorInfoTest.java17 package android.view.inputmethod.cts;
34 import android.view.inputmethod.EditorInfo;
57 info.packageName = "android.view.cts";
H A DExtractedTextRequestTest.java17 package android.view.inputmethod.cts;
24 import android.view.inputmethod.ExtractedTextRequest;
H A DExtractedTextTest.java17 package android.view.inputmethod.cts;
29 import android.view.inputmethod.ExtractedText;
H A DInputBindingTest.java17 package android.view.inputmethod.cts;
28 import android.view.View;
29 import android.view.inputmethod.BaseInputConnection;
30 import android.view.inputmethod.InputBinding;
40 View view = new View(InstrumentationRegistry.getTargetContext());
41 BaseInputConnection bic = new BaseInputConnection(view, false);
/cts/hostsidetests/theme/app/src/android/theme/app/
H A DLayoutModifier.java19 import android.view.View;
22 * Interface used to do further setup on a view after it has been inflated.
26 /** Actions to take before inflating the view. */
30 * @param view inflated by the test activity
31 * @return the same view or another view that will be snapshotted by the test
33 View modifyView(View view); argument
/cts/hostsidetests/theme/app/src/android/theme/app/modifiers/
H A DDatePickerModifier.java20 import android.view.View;
29 public View modifyView(View view) { argument
30 DatePicker tp = (DatePicker) view;
32 return view;
H A DTimePickerModifier.java19 import android.view.View;
25 public View modifyView(View view) { argument
26 TimePicker timePicker = (TimePicker) view;
30 return view;
H A DViewCheckedModifier.java19 import android.view.View;
25 public View modifyView(View view) { argument
26 ((CheckBox) view).setChecked(true);
27 return view;
H A DViewPressedModifier.java19 import android.view.View;
24 public View modifyView(View view) { argument
25 view.setPressed(true);
26 return view;
/cts/libs/view/src/com/android/view/
H A DSurfaceRenderer.java17 package com.android.cts.view;
20 import android.view.SurfaceHolder;
/cts/tests/accessibility/src/android/view/accessibility/cts/
H A DAccessibilityNodeInfo_CollectionInfoTest.java17 package android.view.accessibility.cts;
22 import android.view.accessibility.AccessibilityNodeInfo.CollectionInfo;
H A DAccessibilityNodeInfo_RangeInfoTest.java17 package android.view.accessibility.cts;
22 import android.view.accessibility.AccessibilityNodeInfo;
23 import android.view.accessibility.AccessibilityNodeInfo.RangeInfo;
H A DAccessibilityNodeProviderTest.java17 package android.view.accessibility.cts;
22 import android.view.accessibility.AccessibilityNodeProvider;
/cts/tests/autofillservice/src/android/autofillservice/cts/
H A DViewVisitor.java19 * Visitor for a view.
21 * <p>Typically used by activities under test to provide a way to run an action on the view using
33 void visit(T view); argument
H A DVisitor.java21 * <p>Typically used by activities under test to provide a way to run an action on the view using
33 void visit(T view); argument

Completed in 358 milliseconds

1234567891011>>