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

1 2 3

  /development/ndk/platforms/android-18/samples/gles3jni/src/com/android/gles3jni/
GLES3JNIActivity.java 28 GLES3JNIView mView;
32 mView = new GLES3JNIView(getApplication());
33 setContentView(mView);
38 mView.onPause();
43 mView.onResume();
  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNIActivity.java 29 GL2JNIView mView;
33 mView = new GL2JNIView(getApplication());
34 setContentView(mView);
39 mView.onPause();
44 mView.onResume();
  /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();
  /developers/build/prebuilts/gradle/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
MainActivity.java 34 TouchDisplayView mView;
  /developers/samples/android/input/multitouch/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
MainActivity.java 34 TouchDisplayView mView;
  /development/samples/browseable/BasicMultitouch/src/com.example.android.basicmultitouch/
MainActivity.java 34 TouchDisplayView mView;
  /cts/tests/tests/widget/src/android/widget/cts/
AdapterViewCtsActivity.java 34 private ListView mView;
42 mView = new ListView(this);
43 mView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,
45 setContentView(mView);
49 return mView;
  /cts/tests/tests/graphics/src/android/opengl/cts/
EglConfigCtsActivity.java 37 private EglConfigGLSurfaceView mView;
54 mView = new EglConfigGLSurfaceView(this, configId, contextClientVersion, new Runnable() {
60 setContentView(mView);
84 mView.onResume();
90 mView.onPause();
GLSurfaceViewCtsActivity.java 48 private GLSurfaceView mView;
89 mView = new GLSurfaceView(this);
92 mView.setEGLContextClientVersion(mGlVersion);
96 mView.setRenderer(new Renderer());
98 mView.setRenderer(mRenderer);
102 mView.setRenderMode(mRenderMode);
105 setContentView(mView);
109 return mView;
115 mView.onResume();
121 mView.onPause()
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
GLSurfaceViewCtsActivity.java 48 private GLSurfaceView mView;
89 mView = new GLSurfaceView(this);
92 mView.setEGLContextClientVersion(mGlVersion);
96 mView.setRenderer(new Renderer());
98 mView.setRenderer(mRenderer);
102 mView.setRenderMode(mRenderMode);
105 setContentView(mView);
109 return mView;
115 mView.onResume();
121 mView.onPause()
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
GLSurfaceViewCtsActivity.java 48 private GLSurfaceView mView;
89 mView = new GLSurfaceView(this);
92 mView.setEGLContextClientVersion(mGlVersion);
96 mView.setRenderer(new Renderer());
98 mView.setRenderer(mRenderer);
102 mView.setRenderMode(mRenderMode);
105 setContentView(mView);
109 return mView;
115 mView.onResume();
121 mView.onPause()
    [all...]
GestureDetectorCtsActivity.java 45 private View mView;
59 mView = new View(this);
62 mView.setOnTouchListener(new MockOnTouchListener());
69 mViewGroup.addView(mView);
78 return mView;
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GlPlanetsActivity.java 47 private PlanetsSurfaceView mView;
85 mView = new PlanetsSurfaceView(this, param, this);
86 setContentView(mView);
100 mView.onResume();
106 mView.onPause();
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
DrawActivity.java 40 private View mView;
95 mView = stub.inflate();
100 mView = stub.inflate();
101 ((CanvasClientView) mView).setCanvasClient((CanvasClient) (message.obj));
106 mView = stub.inflate();
107 ((WebView) mView).loadUrl((String) message.obj);
108 ((WebView) mView).setInitialScale(100);
113 if (mView == null) {
118 mViewInitializer.intializeView(mView);
120 mView.setLayerType(message.arg2, null)
    [all...]
  /developers/build/prebuilts/gradle/Flashlight/Wearable/src/main/java/com/example/android/wearable/flashlight/
MainActivity.java 107 private PartyLightView mView;
112 mView = (PartyLightView) inflater.inflate(R.layout.party_light, container, false);
113 return mView;
117 mView.startCycling();
121 mView.stopCycling();
  /developers/samples/android/wearable/wear/Flashlight/Wearable/src/main/java/com/example/android/wearable/flashlight/
MainActivity.java 107 private PartyLightView mView;
112 mView = (PartyLightView) inflater.inflate(R.layout.party_light, container, false);
113 return mView;
117 mView.startCycling();
121 mView.stopCycling();
  /development/samples/browseable/Flashlight/Wearable/src/com.example.android.wearable.flashlight/
MainActivity.java 107 private PartyLightView mView;
112 mView = (PartyLightView) inflater.inflate(R.layout.party_light, container, false);
113 return mView;
117 mView.startCycling();
121 mView.stopCycling();
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ActivityContentVideoViewClient.java 21 private View mView;
36 mView = view;
43 decor.removeView(mView);
45 mView = null;
ViewPositionObserver.java 16 private View mView;
27 mView = view;
67 mView.getViewTreeObserver().addOnPreDrawListener(mPreDrawListener);
84 mView.getViewTreeObserver().removeOnPreDrawListener(mPreDrawListener);
97 mView.getLocationInWindow(mPosition);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmap.java 39 private PurgeableBitmapView mView;
46 int index = mView.update(this);
50 mView.invalidate();
53 mView.invalidate();
66 mView = new PurgeableBitmapView(this, detectIfPurgeableRequest());
68 setContentView(mView);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Kube.java 223 mView = new GLSurfaceView(getApplication());
225 mView.setRenderer(mRenderer);
226 setContentView(mView);
233 mView.onResume();
240 mView.onPause();
289 GLSurfaceView mView;
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ContentViewPopupZoomerTest.java 30 private final ViewGroup mView;
33 mView = view;
38 PopupZoomer popup = findPopupZoomer(mView);
45 private final ViewGroup mView;
47 mView = view;
51 PopupZoomer popup = findPopupZoomer(mView);
  /development/apps/NinePatchLab/src/com/android/ninepatch/
NinePatchLab.java 48 private View mView;
165 mView.invalidate();
174 mView.invalidate();
179 mView.invalidate();
183 mView.invalidate();
190 mView.invalidate();
205 mView = new NPView(this);
206 setContentView(mView);
  /developers/build/prebuilts/gradle/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 47 private View mView;
176 mView = v.findViewById(R.id.square);
206 // This ObjectAnimator uses the path to change the x and y scale of the mView object.
207 ObjectAnimator animator = ObjectAnimator.ofFloat(mView, View.SCALE_X, View.SCALE_Y, path);
  /developers/samples/android/ui/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 47 private View mView;
176 mView = v.findViewById(R.id.square);
206 // This ObjectAnimator uses the path to change the x and y scale of the mView object.
207 ObjectAnimator animator = ObjectAnimator.ofFloat(mView, View.SCALE_X, View.SCALE_Y, path);

Completed in 1182 milliseconds

1 2 3