/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
D | MockView.java | 42 public void onDraw(Canvas canvas) { in onDraw() method in MockView 45 super.onDraw(canvas); in onDraw()
|
/frameworks/base/services/surfaceflinger/ |
D | LayerBuffer.h | 44 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;
|
D | LayerDim.h | 44 virtual void onDraw(const Region& clip) const;
|
D | LayerBlur.h | 38 virtual void onDraw(const Region& clip) const;
|
D | LayerBuffer.cpp | 149 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
|
D | LayerDim.cpp | 60 void LayerDim::onDraw(const Region& clip) const in onDraw() function in android::LayerDim
|
D | Layer.h | 72 virtual void onDraw(const Region& clip) const;
|
D | LayerBlur.cpp | 110 void LayerBlur::onDraw(const Region& clip) const in onDraw() function in android::LayerBlur
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | index.jd | 65 <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…
|
D | opengl.jd | 26 <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/ |
D | LabelView.java | 183 protected void onDraw(Canvas canvas) { in onDraw() method in LabelView 184 super.onDraw(canvas); in onDraw()
|
D | TextViewPerformanceTest.java | 111 super.onDraw(c); in myDraw() 125 super.onDraw(c); in myDraw()
|
/frameworks/base/core/java/android/widget/ |
D | CheckedTextView.java | 149 protected void onDraw(Canvas canvas) { in onDraw() method in CheckedTextView 150 super.onDraw(canvas); in onDraw()
|
D | CompoundButton.java | 230 protected void onDraw(Canvas canvas) { in onDraw() method in CompoundButton 231 super.onDraw(canvas); in onDraw()
|
D | AnalogClock.java | 160 protected void onDraw(Canvas canvas) { in onDraw() method in AnalogClock 161 super.onDraw(canvas); in onDraw()
|
D | AbsSeekBar.java | 251 protected synchronized void onDraw(Canvas canvas) { 252 super.onDraw(canvas);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | TrackingPatternView.java | 48 public void onDraw(Canvas canvas) { in onDraw() method in TrackingPatternView
|
D | StatusBarIconView.java | 166 protected void onDraw(Canvas canvas) { in onDraw() method in StatusBarIconView 167 super.onDraw(canvas); in onDraw()
|
/frameworks/base/docs/html/guide/topics/views/ |
D | custom-views.jd | 80 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> — but there could easily be others needed when you [all …]
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | custom-components.jd | 90 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> — but there could easily be others needed when you [all …]
|
/frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/ |
D | DpiTestActivity.java | 242 protected void onDraw(Canvas canvas) { in onDraw() method in DpiTestActivity.ScaledBitmapView 243 super.onDraw(canvas); in onDraw()
|
/frameworks/base/services/java/com/android/server/ |
D | LoadAverageService.java | 161 public void onDraw(Canvas canvas) { in onDraw() method in LoadAverageService.LoadView 162 super.onDraw(canvas); in onDraw()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | ShapeDrawable.java | 197 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/ |
D | TransformTestActivity.java | 181 public void onDraw(Canvas canvas) { in onDraw() method in TransformTestActivity.TransformView
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | InternalSelectionView.java | 140 protected void onDraw(Canvas canvas) { in onDraw() method in InternalSelectionView
|