HomeSort by relevance Sort by last modified time
    Searched refs:mView (Results 1 - 25 of 409) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
TableLayoutBindingAdapterTest.java 28 TableLayout mView;
38 mView = mBinder.view;
44 ((ColorDrawable) mView.getDividerDrawable()).getColor());
47 ((ColorDrawable) mView.getDividerDrawable()).getColor());
52 assertFalse(mView.isColumnCollapsed(0));
53 assertTrue(mView.isColumnCollapsed(1));
54 assertFalse(mView.isColumnCollapsed(2));
56 assertFalse(mView.isColumnShrinkable(0));
57 assertTrue(mView.isColumnShrinkable(1));
58 assertFalse(mView.isColumnShrinkable(2))
    [all...]
  /frameworks/native/opengl/tests/gl_jni/src/com/android/gljni/
GLJNIActivity.java 24 GLJNIView mView;
29 mView = new GLJNIView(getApplication());
30 mView.setFocusableInTouchMode(true);
31 setContentView(mView);
37 mView.onPause();
43 mView.onResume();
  /frameworks/native/opengl/tests/testViewport/src/com/android/test/
TestActivity.java 25 TestView mView;
30 mView = new TestView(getApplication());
31 mView.setFocusableInTouchMode(true);
32 setContentView(mView);
38 mView.onPause();
44 mView.onResume();
  /packages/apps/Launcher2/src/com/android/launcher2/
CheckLongPressHelper.java 22 private View mView;
28 if ((mView.getParent() != null) && mView.hasWindowFocus()
30 if (mView.performLongClick()) {
31 mView.setPressed(false);
39 mView = v;
48 mView.postDelayed(mPendingCheckForLongPress, LauncherApplication.getLongPressTimeout());
54 mView.removeCallbacks(mPendingCheckForLongPress);
  /frameworks/compile/libbcc/tests/debuginfo/target-tests/driver-int-param/
ACTIVITY.java.template 26 private DriverView mView;
33 mView = new DriverView(this);
34 setContentView(mView);
46 mView.resume();
54 mView.pause();
  /frameworks/compile/libbcc/tests/debuginfo/target-tests/driver-simple/
ACTIVITY.java.template 26 private DriverView mView;
33 mView = new DriverView(this);
34 setContentView(mView);
42 mView.resume();
50 mView.pause();
  /frameworks/compile/libbcc/tests/debuginfo/target-tests/driver-simple-exit/
ACTIVITY.java.template 26 private DriverView mView;
33 mView = new DriverView(this);
34 setContentView(mView);
46 mView.resume();
54 mView.pause();
  /frameworks/native/opengl/tests/testPauseResume/src/com/android/test/
TestActivity.java 25 TestView mView;
34 mView.onResume();
37 mView.onPause();
40 mView.postDelayed(mRunnable, PAUSE_DELAY);
47 mView = new TestView(getApplication());
48 mView.setFocusableInTouchMode(true);
49 setContentView(mView);
50 mView.postDelayed(mRunnable, PAUSE_DELAY);
56 mView.onPause();
62 mView.onResume()
    [all...]
  /development/samples/BasicGLSurfaceView/src/com/example/android/basicglsurfaceview/
BasicGLSurfaceViewActivity.java 28 private BasicGLSurfaceView mView;
33 mView = new BasicGLSurfaceView(getApplication());
34 setContentView(mView);
40 mView.onPause();
46 mView.onResume();
  /packages/apps/Messaging/src/com/android/messaging/ui/
BasePagerViewHolder.java 33 protected View mView;
62 if (mView != null && (mView instanceof PersistentInstanceState)) {
63 ((PersistentInstanceState) mView).resetState();
75 final View retView = mView;
76 mView = null;
82 if (mView == null) {
83 mView = createView(container);
87 return mView;
91 if (mView != null && (mView instanceof PersistentInstanceState))
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
GLSurfaceViewCtsActivity.java 29 protected GLSurfaceView mView;
34 mView = new GLSurfaceView(this);
38 setContentView(mView);
44 return mView;
50 mView.onResume();
56 mView.onPause();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
DessertCaseDream.java 22 private DessertCaseView mView;
30 mView = new DessertCaseView(this);
34 mContainer.setView(mView);
42 mView.postDelayed(new Runnable() {
44 mView.start();
52 mView.stop();
  /frameworks/native/opengl/tests/testFramerate/src/com/android/testframerate/
TestFramerateActivity.java 29 TestFramerateView mView;
33 mView = new TestFramerateView(getApplication());
34 setContentView(mView);
35 mView.setFocusableInTouchMode(true);
40 mView.onPause();
45 mView.onResume();
  /frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/
TestLatencyActivity.java 29 TestLatencyView mView;
33 mView = new TestLatencyView(getApplication());
34 setContentView(mView);
35 mView.setFocusableInTouchMode(true);
40 mView.onPause();
45 mView.onResume();
  /packages/apps/TV/src/com/android/tv/ui/
HardwareLayerAnimatorListenerAdapter.java 28 private final View mView;
32 mView = view;
37 if (mView.hasOverlappingRendering() && mView.getLayerType() == View.LAYER_TYPE_NONE) {
39 mView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
47 mView.setLayerType(View.LAYER_TYPE_NONE, null);
  /packages/apps/Launcher3/src/com/android/launcher3/
SimpleOnStylusPressListener.java 12 private View mView;
15 mView = view;
19 return mView.isLongClickable() && mView.performLongClick();
  /developers/build/prebuilts/gradle/WearNotifications/Wearable/src/main/java/com/example/android/wearable/wear/wearnotifications/
Controller.java 28 private StandaloneMainActivity mView;
31 mView = standaloneMainActivity;
35 mView.itemSelected(notificationStyleSelected);
  /developers/samples/android/wearable/wear/WearNotifications/Wearable/src/main/java/com/example/android/wearable/wear/wearnotifications/
Controller.java 28 private StandaloneMainActivity mView;
31 mView = standaloneMainActivity;
35 mView.itemSelected(notificationStyleSelected);
  /development/samples/browseable/WearNotifications/Wearable/src/com.example.android.wearable.wear.wearnotifications/
Controller.java 13 private StandaloneMainActivity mView;
16 mView = standaloneMainActivity;
20 mView.itemSelected(notificationStyleSelected);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeableItemView.java 45 private final View mView;
47 mView = view;
51 return mView;
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
FooterViewTest.java 47 FooterView mView;
51 mView = (FooterView) LayoutInflater.from(mContext).inflate(
53 mView.setDuration(0);
58 assertNotNull(mView.findContentView());
59 assertNotNull(mView.findSecondaryView());
64 mView.setDismissButtonClickListener(mock(View.OnClickListener.class));
65 assertTrue(mView.findSecondaryView().hasOnClickListeners());
70 mView.setManageButtonClickListener(mock(View.OnClickListener.class));
71 assertTrue(mView.findViewById(R.id.manage_text).hasOnClickListeners());
76 mView.setVisible(false /* visible */, false /* animate */)
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
AntiTrimmerTextWatcher.java 34 private final EditText mView;
37 mView = view;
38 mView.addTextChangedListener(this);
43 mView.removeTextChangedListener(this);
44 mView.setText("#" + s + "#");
  /frameworks/native/opengl/tests/gl2_java/src/com/android/gl2java/
GL2JavaActivity.java 29 GL2JavaView mView;
33 mView = new GL2JavaView(getApplication());
34 setContentView(mView);
39 mView.onPause();
44 mView.onResume();
  /frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNIActivity.java 29 GL2JNIView mView;
33 mView = new GL2JNIView(getApplication());
34 setContentView(mView);
39 mView.onPause();
44 mView.onResume();
  /frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
GLPerfActivity.java 29 GLPerfView mView;
34 mView = new GLPerfView(getApplication());
35 setContentView(mView);
40 mView.onPause();
45 mView.onResume();

Completed in 460 milliseconds

1 2 3 4 5 6 7 8 91011>>