Searched refs:mTextureView (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/tests/UiBench/src/com/android/test/uibench/
H A DGlTextureViewActivity.java34 private TextureView mTextureView; field in class:GlTextureViewActivity
40 mTextureView = new TextureView(this);
41 mTextureView.setSurfaceTextureListener(this);
42 setContentView(mTextureView, new FrameLayout.LayoutParams(
52 mTextureView.setCameraDistance(5000);
54 ObjectAnimator animator = ObjectAnimator.ofFloat(mTextureView, "rotationY", 0.0f, 360.0f);
61 mTextureView.invalidate();
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGetBitmapActivity.java38 private TextureView mTextureView; field in class:GetBitmapActivity
46 mTextureView = new TextureView(this);
47 mTextureView.setSurfaceTextureListener(this);
54 Bitmap b = mTextureView.getBitmap();
73 content.addView(mTextureView, new FrameLayout.LayoutParams(500, 400, Gravity.CENTER));
H A DTextureViewActivity.java42 private TextureView mTextureView; field in class:TextureViewActivity
52 mTextureView = new TextureView(this);
53 mTextureView.setSurfaceTextureListener(this);
54 mTextureView.setOnClickListener(new View.OnClickListener() {
57 Bitmap b = mTextureView.getBitmap(800, 800);
83 mContent.removeView(mTextureView);
85 mContent.addView(mTextureView);
91 mContent.addView(mTextureView, new FrameLayout.LayoutParams(
106 mTextureView.setLayoutParams(new FrameLayout.LayoutParams(
H A DCanvasTextureViewActivity.java32 private TextureView mTextureView; field in class:CanvasTextureViewActivity
41 mTextureView = new TextureView(this);
42 mTextureView.setSurfaceTextureListener(this);
43 mTextureView.setOpaque(false);
45 content.addView(mTextureView, new FrameLayout.LayoutParams(500, 500, Gravity.CENTER));
51 mThread = new RenderingThread(mTextureView);
H A DHardwareCanvasTextureViewActivity.java33 private TextureView mTextureView; field in class:HardwareCanvasTextureViewActivity
42 mTextureView = new TextureView(this);
43 mTextureView.setSurfaceTextureListener(this);
44 mTextureView.setOpaque(false);
46 content.addView(mTextureView, new FrameLayout.LayoutParams(500, 500, Gravity.CENTER));
52 mThread = new RenderingThread(mTextureView);
H A DGLTextureViewActivity.java56 private TextureView mTextureView; field in class:GLTextureViewActivity
62 mTextureView = new TextureView(this);
63 mTextureView.setSurfaceTextureListener(this);
64 mTextureView.setOnClickListener(new View.OnClickListener() {
67 Bitmap b = mTextureView.getBitmap(800, 800);
85 setContentView(mTextureView, new FrameLayout.LayoutParams(
95 mTextureView.setCameraDistance(5000);
97 ObjectAnimator animator = ObjectAnimator.ofFloat(mTextureView, "rotationY", 0.0f, 360.0f);
104 mTextureView.invalidate();
H A DSingleFrameTextureViewTestActivity.java46 private TextureView mTextureView; field in class:SingleFrameTextureViewTestActivity
56 mTextureView = new TextureView(this);
57 mTextureView.setSurfaceTextureListener(this);
60 content.addView(mTextureView,
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DSurfaceAndTextureViews.java43 SimpleTextureView mTextureView; field in class:SurfaceAndTextureViews
64 mTextureView = new SimpleTextureView(this);
65 mTextureView.setId(2);
66 mTextureView.setLayoutParams(new LayoutParams(SMALL_SIZE, SMALL_SIZE));
67 container.addView(mTextureView);
83 mTextureView.setLayoutParams(new LayoutParams(SMALL_SIZE * 2, SMALL_SIZE));
86 mTextureView.mColor = SimpleTextureView.LARGE_COLOR;
90 mTextureView.setLayoutParams(new LayoutParams(SMALL_SIZE, SMALL_SIZE));
93 mTextureView.mColor = SimpleTextureView.SMALL_COLOR;
/frameworks/base/services/core/java/com/android/server/display/
H A DOverlayDisplayWindow.java80 private TextureView mTextureView; field in class:OverlayDisplayWindow
174 if (mTextureView != null) {
175 pw.println("mTextureView.getScaleX()=" + mTextureView.getScaleX());
176 pw.println("mTextureView.getScaleY()=" + mTextureView.getScaleY());
199 mTextureView = (TextureView)mWindowContent.findViewById(
201 mTextureView.setPivotX(0);
202 mTextureView.setPivotY(0);
203 mTextureView
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageView.java57 private BlockingGLTextureView mTextureView; field in class:TiledImageView
100 mTextureView = new BlockingGLTextureView(context);
101 mTextureView.setRenderer(new TileRenderer());
102 view = mTextureView;
120 mTextureView.destroy();
196 mTextureView.render();
217 mTextureView.invalidate();
/frameworks/base/core/java/android/app/
H A DActivityView.java117 private final TextureView mTextureView; field in class:ActivityView
162 mTextureView = new TextureView(context);
163 mTextureView.setSurfaceTextureListener(new ActivityViewSurfaceTextureListener());
164 addView(mTextureView);
178 mTextureView.layout(0, 0, r - l, b - t);
289 mTextureView.setSurfaceTextureListener(null);

Completed in 243 milliseconds