Home
last modified time | relevance | path

Searched refs:onDraw (Results 1 – 25 of 42) sorted by relevance

12

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
DMockView.java42 public void onDraw(Canvas canvas) { in onDraw() method in MockView
45 super.onDraw(canvas); in onDraw()
/frameworks/base/services/surfaceflinger/
DLayerBuffer.h44 virtual void onDraw(const Region& clip) const;
67 virtual void onDraw(const Region& clip) const;
132 virtual void onDraw(const Region& clip) const;
155 virtual void onDraw(const Region& clip) const;
DLayerDim.h44 virtual void onDraw(const Region& clip) const;
DLayerBlur.h38 virtual void onDraw(const Region& clip) const;
DLayerBuffer.cpp149 void LayerBuffer::onDraw(const Region& clip) const in onDraw() function in android::LayerBuffer
153 source->onDraw(clip); in onDraw()
316 void LayerBuffer::Source::onDraw(const Region& clip) const { in onDraw() function in android::LayerBuffer::Source
446 void LayerBuffer::BufferSource::onDraw(const Region& clip) const in onDraw() function in android::LayerBuffer::BufferSource
634 void LayerBuffer::OverlaySource::onDraw(const Region& clip) const in onDraw() function in android::LayerBuffer::OverlaySource
DLayerDim.cpp60 void LayerDim::onDraw(const Region& clip) const in onDraw() function in android::LayerDim
DLayer.h72 virtual void onDraw(const Region& clip) const;
DLayerBlur.cpp110 void LayerBlur::onDraw(const Region& clip) const in onDraw() function in android::LayerBlur
/frameworks/base/docs/html/guide/topics/graphics/
Dindex.jd65 <code>{@link android.view.View#onDraw(Canvas) onDraw()}</code> callback..</li>
91 <p>In the event that you're drawing within the <code>{@link android.view.View#onDraw(Canvas) onDraw
107 by <code>{@link android.view.View#onDraw(Canvas) View.onDraw()}</code> or
123 and drawing with a Canvas in <code>{@link android.view.View#onDraw(Canvas) View.onDraw()}</code>.
128 the <code>{@link android.view.View#onDraw(Canvas) onDraw()}</code> callback method. This method wil…
130 …@link android.graphics.Canvas}, which is passed to you through the <code>onDraw()</code> callback.…
132 <p>The Android framework will only call <code>onDraw()</code> as necessary. Each time that
135 Android will then call your <code>onDraw()</code> method (though is not guaranteed that the callbac…
138 <p>Inside your View component's <code>onDraw()</code>, use the Canvas given to you for all your dra…
140 take your Canvas as an argument. Once your <code>onDraw()</code> is complete, the Android framework…
Dopengl.jd26 <li>In your View's onDraw() method, get a handle to a GL object, and use its methods to perform GL …
/frameworks/base/core/tests/coretests/src/android/widget/
DLabelView.java183 protected void onDraw(Canvas canvas) { in onDraw() method in LabelView
184 super.onDraw(canvas); in onDraw()
DTextViewPerformanceTest.java111 super.onDraw(c); in myDraw()
125 super.onDraw(c); in myDraw()
/frameworks/base/core/java/android/widget/
DCheckedTextView.java149 protected void onDraw(Canvas canvas) { in onDraw() method in CheckedTextView
150 super.onDraw(canvas); in onDraw()
DCompoundButton.java230 protected void onDraw(Canvas canvas) { in onDraw() method in CompoundButton
231 super.onDraw(canvas); in onDraw()
DAnalogClock.java160 protected void onDraw(Canvas canvas) { in onDraw() method in AnalogClock
161 super.onDraw(canvas); in onDraw()
DAbsSeekBar.java251 protected synchronized void onDraw(Canvas canvas) {
252 super.onDraw(canvas);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DTrackingPatternView.java48 public void onDraw(Canvas canvas) { in onDraw() method in TrackingPatternView
DStatusBarIconView.java166 protected void onDraw(Canvas canvas) { in onDraw() method in StatusBarIconView
167 super.onDraw(canvas); in onDraw()
/frameworks/base/docs/html/guide/topics/views/
Dcustom-views.jd80 example, {@link android.view.View#onDraw onDraw()},
137 are also likely to need to override <code>onDraw()</code> if you want
139 the default <code>onDraw()</code> will do nothing, and the default
147 <h4><code>onDraw()</code> and <code>onMeasure()</code></h4>
148 <p><code>onDraw()</code> delivers you a {@link android.graphics.Canvas Canvas}
245 <td><code>{@link android.view.View#onDraw}</code></td>
329 <li>An overridden <code>onDraw()</code> method to draw the label onto the
391 <code>onDraw()</code> and <code>onMeasure()</code> methods since the
412 The <code>onDraw()</code> and <code>onMeasure()</code> methods (plus
493 <code>onDraw()</code> &mdash; but there could easily be others needed when you
[all …]
/frameworks/base/docs/html/guide/topics/ui/
Dcustom-components.jd90 example, {@link android.view.View#onDraw onDraw()},
143 are also likely to need to override <code>onDraw()</code> if you want
145 the default <code>onDraw()</code> will do nothing, and the default
154 <h3>Extend <code>onDraw()</code> and <code>onMeasure()</code></h3>
155 <p>The <code>onDraw()</code> method delivers you a {@link android.graphics.Canvas Canvas}
254 <td><code>{@link android.view.View#onDraw}</code></td>
338 <li>An overridden <code>onDraw()</code> method to draw the label onto the
400 <code>onDraw()</code> and <code>onMeasure()</code> methods since the
421 The <code>onDraw()</code> and <code>onMeasure()</code> methods (plus
501 <code>onDraw()</code> &mdash; but there could easily be others needed when you
[all …]
/frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/
DDpiTestActivity.java242 protected void onDraw(Canvas canvas) { in onDraw() method in DpiTestActivity.ScaledBitmapView
243 super.onDraw(canvas); in onDraw()
/frameworks/base/services/java/com/android/server/
DLoadAverageService.java161 public void onDraw(Canvas canvas) { in onDraw() method in LoadAverageService.LoadView
162 super.onDraw(canvas); in onDraw()
/frameworks/base/graphics/java/android/graphics/drawable/
DShapeDrawable.java197 protected void onDraw(Shape shape, Canvas canvas, Paint paint) { in onDraw() method in ShapeDrawable
213 onDraw(mShapeState.mShape, canvas, paint); in draw()
/frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
DTransformTestActivity.java181 public void onDraw(Canvas canvas) { in onDraw() method in TransformTestActivity.TransformView
/frameworks/base/core/tests/coretests/src/android/util/
DInternalSelectionView.java140 protected void onDraw(Canvas canvas) { in onDraw() method in InternalSelectionView

12