Searched defs:draw (Results 176 - 191 of 191) sorted by relevance

12345678

/frameworks/base/core/java/com/android/internal/widget/
H A DViewPager.java2242 public void draw(Canvas canvas) { method in class:ViewPager
2243 super.draw(canvas);
2258 needsInvalidate |= mLeftEdge.draw(canvas);
2269 needsInvalidate |= mRightEdge.draw(canvas);
2328 mMarginDrawable.draw(canvas);
H A DRecyclerView.java1365 * item decorations in the list will be asked to draw/pad within the previous decoration's
1396 * item decorations in the list will be asked to draw/pad within the previous decoration's
3816 public void draw(Canvas c) { method in class:RecyclerView
3817 super.draw(c);
3823 // TODO If padding is not 0 and clipChildrenToPadding is false, to draw glows properly, we
3831 needsInvalidate = mLeftGlow != null && mLeftGlow.draw(c);
3839 needsInvalidate |= mTopGlow != null && mTopGlow.draw(c);
3848 needsInvalidate |= mRightGlow != null && mRightGlow.draw(c);
3859 needsInvalidate |= mBottomGlow != null && mBottomGlow.draw(c);
3864 // Invalidate RecyclerView to re-draw decorator
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java149 * <dd>Specifies the color used to draw the path outline. May be a color or, for SDK 24+, a color
262 // Temp variable, only for saving "new" operation at the draw() time.
324 public void draw(Canvas canvas) { method in class:VectorDrawable
329 // Nothing to draw
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java157 nativePathRenderer.draw(canvasWrapperPtr, colorFilterPtr, bounds.width(), bounds.height());
1046 // Variables that only used temporarily inside the draw() call, so there
1107 public void draw(long canvasPtr, long filterPtr, int w, int h) { method in class:VectorDrawable_Delegate.VPathRenderer_Delegate
1108 // Traverse the tree in pre-order to draw.
1126 // When either x or y is scaled to 0, we don't need to draw anything.
/frameworks/native/services/surfaceflinger/
H A DLayer.cpp1005 void Layer::draw(const sp<const DisplayDevice>& hw, const Region& clip) const { function in class:android::Layer
1009 void Layer::draw(const sp<const DisplayDevice>& hw, function in class:android::Layer
1014 void Layer::draw(const sp<const DisplayDevice>& hw) const { function in class:android::Layer
1037 * onDraw will draw the current layer onto the presentable buffer
1072 // ready for us to draw into.
1076 // Go ahead and draw the buffer anyway; no matter what we do the screen
/frameworks/support/core-ui/java/android/support/v4/view/
H A DViewPager.java2417 public void draw(Canvas canvas) { method in class:ViewPager
2418 super.draw(canvas);
2433 needsInvalidate |= mLeftEdge.draw(canvas);
2444 needsInvalidate |= mRightEdge.draw(canvas);
2492 mMarginDrawable.draw(canvas);
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DDrawerLayout.java444 public void setChildInsets(Object insets, boolean draw) { argument
446 mDrawStatusBarBackground = draw;
447 setWillNotDraw(!draw && getBackground() == null);
1292 * Set a drawable to draw in the insets area for the status bar.
1295 * @param bg Background drawable to draw behind the status bar
1303 * Gets the drawable used to draw in the insets area for the status bar.
1312 * Set a drawable to draw in the insets area for the status bar.
1315 * @param resId Resource id of a background drawable to draw behind the status bar
1323 * Set a drawable to draw in the insets area for the status bar.
1326 * @param color Color to use as a background drawable to draw behin
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsListView.java311 * The drawable used to draw the selector
687 * we saw it. Used to hint where to draw edge glows.
694 * we saw it. Used to hint where to draw edge glows.
1423 * If fast scroll is enabled, then don't draw the vertical scrollbar.
2728 * @return True if the current touch mode requires that we draw the selector in the pressed
2757 selector.draw(canvas);
2802 * Returns the selector {@link android.graphics.drawable.Drawable} that is used to draw the
4316 public void draw(Canvas canvas) { method in class:AbsListView
4317 super.draw(canvas);
4344 if (mEdgeGlowTop.draw(canva
[all...]
H A DEditor.java1653 mCorrectionHighlighter.draw(canvas, cursorOffsetVertical);
1658 // Rely on the drawable entirely, do not draw the cursor line.
1667 layout.draw(canvas, highlight, highlightPaint, cursorOffsetVertical);
1848 mCursorDrawable[i].draw(canvas);
4448 mDrawable.draw(c);
5656 public void draw(Canvas canvas, int cursorOffsetVertical) { method in class:Editor.CorrectionHighlighter
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2712 public void draw(Canvas canvas) { method in class:EditStyledText.EditStyledTextSpans.HorizontalLineDrawable
2780 public void draw(Canvas canvas) { method in class:EditStyledText.ColorPaletteDrawable
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java669 // Compute surface insets required to draw at specified Z value.
2332 // Remember if we must report the next draw.
2719 * Called from draw() when DEBUG_FPS is enabled
2751 * Delay notifying WM of draw finished until
2792 Trace.traceBegin(Trace.TRACE_TAG_VIEW, "draw");
2794 draw(fullRedrawNeeded);
2843 private void draw(boolean fullRedrawNeeded) { method in class:ViewRootImpl
2892 // The app owns the surface, we won't draw.
2966 // shortly before the draw commands get send to the renderer.
2970 // report next draw override
[all...]
H A DView.java484 * draw it before calling back to its <code>onDraw()</code> method. The child
491 * To force a view to draw, call {@link #invalidate()}.
784 * When set to true, apps will draw debugging information about their layouts.
1288 * This view won't draw. {@link #onDraw(android.graphics.Canvas)} won't be
1297 * this view is will draw
2076 * invalidated, prior to the current drawing iteration. If true, the view must re-draw
2079 * in drawChild(), when we decide to draw a view's children's display lists into our own).
2783 * Flag indicating whether a view failed the quickReject() check in draw(). This condition
3186 * {@link #SYSTEM_UI_FLAG_LOW_PROFILE}; on devices that draw essential navigation controls
3325 * Flag for {@link #setSystemUiVisibility(int)}: Requests the status bar to draw i
18760 boolean draw(Canvas canvas, ViewGroup parent, long drawingTime) { method in class:View
19088 public void draw(Canvas canvas) { method in class:View
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBar.java366 * Never let the alpha become zero for surfaces that draw with SRC - otherwise the RenderNode
367 * won't draw anything and uninitialized memory will show through
3962 public void draw(Canvas canvas) { method in class:StatusBar.FastColorDrawable
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1450 * item decorations in the list will be asked to draw/pad within the previous decoration's
1481 * item decorations in the list will be asked to draw/pad within the previous decoration's
3984 public void draw(Canvas c) { method in class:RecyclerView
3985 super.draw(c);
3991 // TODO If padding is not 0 and clipChildrenToPadding is false, to draw glows properly, we
3999 needsInvalidate = mLeftGlow != null && mLeftGlow.draw(c);
4007 needsInvalidate |= mTopGlow != null && mTopGlow.draw(c);
4016 needsInvalidate |= mRightGlow != null && mRightGlow.draw(c);
4027 needsInvalidate |= mBottomGlow != null && mBottomGlow.draw(c);
4032 // Invalidate RecyclerView to re-draw decorator
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...

Completed in 429 milliseconds

12345678