/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/view/ |
AnimateableViewBounds.java | 19 import android.graphics.Outline; 28 * An outline provider that has a clip and outline that can be animated. 56 public void getOutline(View view, Outline outline) { 57 outline.setAlpha(Utilities.mapRange(mAlpha, MIN_ALPHA, MAX_ALPHA)); 59 outline.setRoundRect(mClipRect.left, mClipRect.top, 64 outline.setRect(mClipRect.left, mClipRect.top, 71 * Sets the view outline alpha. 82 * @return the outline alpha [all...] |
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/ |
RoundedRectHelperApi21.java | 16 import android.graphics.Outline; 38 public void getOutline(View view, Outline outline) { 39 outline.setRoundRect(0, 0, view.getWidth(), view.getHeight(), mRadius); 40 outline.setAlpha(1f);
|
ShadowHelperApi21.java | 16 import android.graphics.Outline; 33 public void getOutline(View view, Outline outline) { 34 outline.setRect(0, 0, view.getWidth(), view.getHeight()); 35 outline.setAlpha(1.0f);
|
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/ |
ActionBarBackgroundDrawable.java | 21 import android.graphics.Outline; 67 public void getOutline(@NonNull Outline outline) { 70 mContainer.mSplitBackground.getOutline(outline); 75 mContainer.mBackground.getOutline(outline);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/ |
ViewOutlineProviderCompatUtilsLXX.java | 20 import android.graphics.Outline; 61 public void getOutline(final View view, final Outline outline) { 64 ViewOutlineProvider.BACKGROUND.getOutline(view, outline); 68 outline.setRect(
|
/developers/build/prebuilts/gradle/FloatingActionButtonBasic/Application/src/main/java/com/example/android/floatingactionbuttonbasic/ |
FloatingActionButton.java | 20 import android.graphics.Outline; 81 // Set the outline provider for this view. The provider is given the outline which it can 82 // then modify as needed. In this case we set the outline to be an oval fitting the height 86 public void getOutline(View view, Outline outline) { 87 outline.setOval(0, 0, getWidth(), getHeight()); 91 // Finally, enable clipping to the outline, using the provider we set above 147 // As we have changed size, we should invalidate the outline so that is the the
|
/developers/samples/android/ui/views/FloatingActionButton/FloatingActionButtonBasic/Application/src/main/java/com/example/android/floatingactionbuttonbasic/ |
FloatingActionButton.java | 20 import android.graphics.Outline; 81 // Set the outline provider for this view. The provider is given the outline which it can 82 // then modify as needed. In this case we set the outline to be an oval fitting the height 86 public void getOutline(View view, Outline outline) { 87 outline.setOval(0, 0, getWidth(), getHeight()); 91 // Finally, enable clipping to the outline, using the provider we set above 147 // As we have changed size, we should invalidate the outline so that is the the
|
/development/samples/browseable/FloatingActionButtonBasic/src/com.example.android.floatingactionbuttonbasic/ |
FloatingActionButton.java | 20 import android.graphics.Outline; 81 // Set the outline provider for this view. The provider is given the outline which it can 82 // then modify as needed. In this case we set the outline to be an oval fitting the height 86 public void getOutline(View view, Outline outline) { 87 outline.setOval(0, 0, getWidth(), getHeight()); 91 // Finally, enable clipping to the outline, using the provider we set above 147 // As we have changed size, we should invalidate the outline so that is the the
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
ViewUtil.java | 20 import android.graphics.Outline; 65 public void getOutline(View view, Outline outline) { 66 outline.setOval(0, 0, view.getWidth(), view.getHeight()); 79 public void getOutline(View view, Outline outline) { 80 outline.setRect(0, 0, view.getWidth(), view.getHeight()); 89 * Adds a rectangular outline to a view. This can be useful when you want to add a shadow 91 * @param view view that the outline is added to
|
/external/freetype/include/freetype/internal/ |
ftgloadr.h | 52 FT_Outline outline; /* outline */ member in struct:FT_GlyphLoadRec_ 108 ( (FT_UInt)(_loader)->base.outline.n_points + \ 109 (FT_UInt)(_loader)->current.outline.n_points + \ 114 ( (FT_UInt)(_loader)->base.outline.n_contours + \ 115 (FT_UInt)(_loader)->current.outline.n_contours + \
|
/frameworks/support/leanback-preference/api21/androidx/leanback/preference/internal/ |
OutlineOnlyWithChildrenFrameLayout.java | 22 import android.graphics.Outline; 32 * {@link FrameLayout} subclass that provides an outline only when it has children, so that it does 76 public void getOutline(View view, Outline outline) { 78 mInnerOutlineProvider.getOutline(view, outline); 80 ViewOutlineProvider.BACKGROUND.getOutline(view, outline);
|
/external/freetype/include/freetype/ |
ftstroke.h | 223 * `inside' borders of a given outline. 226 * outline :: 227 * The source outline handle. 234 FT_Outline_GetInsideBorder( FT_Outline* outline ); variable 244 * `outside' borders of a given outline. 247 * outline :: 248 * The source outline handle. 255 FT_Outline_GetOutsideBorder( FT_Outline* outline ); variable 309 * The radius is expressed in the same units as the outline 347 * A convenience function used to parse a whole outline wit [all...] |
/prebuilts/misc/darwin-x86_64/freetype/include/freetype2/ |
ftstroke.h | 223 * `inside' borders of a given outline. 226 * outline :: 227 * The source outline handle. 234 FT_Outline_GetInsideBorder( FT_Outline* outline ); variable 244 * `outside' borders of a given outline. 247 * outline :: 248 * The source outline handle. 255 FT_Outline_GetOutsideBorder( FT_Outline* outline ); variable 309 * The radius is expressed in the same units as the outline 347 * A convenience function used to parse a whole outline wit [all...] |
/developers/build/prebuilts/gradle/ClippingBasic/ |
README.md | 6 by which a View builds its outline, used for shadowing and clipping. 11 The [ViewOutlineProvider][1] interface offers you a method to populate the outline of a View. 12 You need to implement a getOutline(android.view.View, android.graphics.Outline) 15 This example clips the outline of a View as a rounded rectangle by defining a class that 21 public void getOutline(View view, Outline outline) { 23 outline.setRoundRect(margin, margin, view.getWidth() - margin, 29 To clip a View by the defined outline, setting a OutlineProvider to a View
|
/developers/build/prebuilts/gradle/ElevationDrag/Application/src/main/java/com/example/android/elevationdrag/ |
ElevationDragFragment.java | 21 import android.graphics.Outline; 35 /* The circular outline provider */ 61 /* Define the shape of the {@link View}'s shadow by setting one of the {@link Outline}s. */ 64 /* Clip the {@link View} with its outline. */ 112 * ViewOutlineProvider which sets the outline to be an oval which fits the view bounds. 116 public void getOutline(View view, Outline outline) { 117 outline.setOval(0, 0, view.getWidth(), view.getHeight());
|
/developers/samples/android/ui/views/Clipping/ClippingBasic/ |
README.md | 6 by which a View builds its outline, used for shadowing and clipping. 11 The [ViewOutlineProvider][1] interface offers you a method to populate the outline of a View. 12 You need to implement a getOutline(android.view.View, android.graphics.Outline) 15 This example clips the outline of a View as a rounded rectangle by defining a class that 21 public void getOutline(View view, Outline outline) { 23 outline.setRoundRect(margin, margin, view.getWidth() - margin, 29 To clip a View by the defined outline, setting a OutlineProvider to a View
|
template-params.xml | 59 by which a View builds its outline, used for shadowing and clipping. 65 The [ViewOutlineProvider][1] interface offers you a method to populate the outline of a View. 66 You need to implement a getOutline(android.view.View, android.graphics.Outline) 69 This example clips the outline of a View as a rounded rectangle by defining a class that 75 public void getOutline(View view, Outline outline) { 77 outline.setRoundRect(margin, margin, view.getWidth() - margin, 83 To clip a View by the defined outline, setting a OutlineProvider to a View
|
/developers/samples/android/ui/views/Elevation/ElevationDrag/Application/src/main/java/com/example/android/elevationdrag/ |
ElevationDragFragment.java | 21 import android.graphics.Outline; 35 /* The circular outline provider */ 61 /* Define the shape of the {@link View}'s shadow by setting one of the {@link Outline}s. */ 64 /* Clip the {@link View} with its outline. */ 112 * ViewOutlineProvider which sets the outline to be an oval which fits the view bounds. 116 public void getOutline(View view, Outline outline) { 117 outline.setOval(0, 0, view.getWidth(), view.getHeight());
|
/development/samples/browseable/ElevationDrag/src/com.example.android.elevationdrag/ |
ElevationDragFragment.java | 21 import android.graphics.Outline; 35 /* The circular outline provider */ 61 /* Define the shape of the {@link View}'s shadow by setting one of the {@link Outline}s. */ 64 /* Clip the {@link View} with its outline. */ 112 * ViewOutlineProvider which sets the outline to be an oval which fits the view bounds. 116 public void getOutline(View view, Outline outline) { 117 outline.setOval(0, 0, view.getWidth(), view.getHeight());
|
/external/libjpeg-turbo/release/ |
Distribution.xml | 13 <choices-outline> 17 </choices-outline>
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
Shape.java | 21 import android.graphics.Outline; 105 * Computes the Outline of the shape and return it in the supplied Outline 106 * parameter. The default implementation does nothing and {@code outline} 109 * @param outline the Outline to be populated with the result. Must be 112 public void getOutline(@NonNull Outline outline) {}
|
ArcShape.java | 20 import android.graphics.Outline; 68 public void getOutline(Outline outline) { 70 // to provide an outline.
|
/frameworks/base/libs/hwui/ |
Outline.h | 27 class Outline { 31 Outline() : mShouldClip(false), mType(Type::None), mRadius(0), mAlpha(0.0f) {} 46 // Reuse memory if previous outline was the same shape (rect or round rect). 53 // update mPath to reflect new outline 61 void setConvexPath(const SkPath* outline, float alpha) { 62 if (!outline) { 67 mPath = *outline; 68 mBounds.set(outline->getBounds());
|
/external/libxml2/result/SVG/ |
circle.xml | 4 <desc>This is a blue circle with a red outline
|
/external/libxml2/test/SVG/ |
circle.xml | 5 <desc>This is a blue circle with a red outline
|