/developers/samples/android/ui/views/Elevation/ElevationDrag/Application/src/main/java/com/example/android/elevationdrag/ |
ElevationDragFragment.java | 21 import android.graphics.Outline; 33 /* The circular outline provider */ 59 /* Define the shape of the {@link View}'s shadow by setting one of the {@link Outline}s. */ 62 /* Clip the {@link View} with its outline. */ 110 * ViewOutlineProvider which sets the outline to be an oval which fits the view bounds. 114 public void getOutline(View view, Outline outline) { 115 outline.setOval(0, 0, view.getWidth(), view.getHeight());
|
/development/samples/browseable/ElevationDrag/src/com.example.android.elevationdrag/ |
ElevationDragFragment.java | 21 import android.graphics.Outline; 33 /* The circular outline provider */ 59 /* Define the shape of the {@link View}'s shadow by setting one of the {@link Outline}s. */ 62 /* Clip the {@link View} with its outline. */ 110 * ViewOutlineProvider which sets the outline to be an oval which fits the view bounds. 114 public void getOutline(View view, Outline outline) { 115 outline.setOval(0, 0, view.getWidth(), view.getHeight());
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/interpolation/ |
outline-color-interpolation.html | 9 outline: 12px solid white; 22 property: 'outline-color',
|
outline-offset-interpolation.html | 9 outline: 4px solid orange; 23 property: 'outline-offset',
|
/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; 97 * Compute the Outline of the shape and return it in the supplied Outline 98 * parameter. The default implementation does nothing and {@code outline} is not changed. 100 * @param outline The Outline to be populated with the result. Should not be null. 102 public void getOutline(@NonNull Outline outline) {}
|
ArcShape.java | 20 import android.graphics.Outline; 52 public void getOutline(Outline outline) { 54 // to provide an outline.
|
RectShape.java | 20 import android.graphics.Outline; 41 public void getOutline(Outline outline) { 43 outline.setRect((int) Math.ceil(rect.left), (int) Math.ceil(rect.top),
|
/external/v8/src/compiler/ |
node.cc | 15 Node::OutOfLineInputs* outline = local 17 outline->capacity_ = capacity; 18 outline->count_ = 0; 19 return outline; 73 OutOfLineInputs* outline = OutOfLineInputs::New(zone, capacity); local 78 node->inputs_.outline_ = outline; 80 outline->node_ = node; 81 outline->count_ = input_count; 83 input_ptr = outline->inputs_; 84 use_ptr = reinterpret_cast<Use*>(outline); 154 OutOfLineInputs* outline = nullptr; local [all...] |
/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
|
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/ |
SimIconView.java | 19 import android.graphics.Outline; 39 public void getOutline(View v, Outline outline) { 40 outline.setOval(0, 0, v.getWidth(), v.getHeight());
|
/external/freetype/src/autofit/ |
afdummy.c | 42 FT_Outline* outline ) 47 error = af_glyph_hints_reload( hints, outline ); 49 af_glyph_hints_save( hints, outline );
|
afloader.c | 125 FT_Outline_Translate( &slot->outline, 138 if ( slot->outline.n_points == 0 ) 141 /* now load the slot image into the auto-outline and run the */ 154 &gloader->base.outline, 247 /* transform the hinted outline if needed */ 250 FT_Outline_Transform( &gloader->base.outline, &loader->trans_matrix ); 254 /* we must translate our final outline by -pp1.x and compute */ 257 FT_Outline_Translate( &gloader->base.outline, -loader->pp1.x, 0 ); 259 FT_Outline_Get_CBox( &gloader->base.outline, &bbox ); 312 /* reassign all outline fields except flags to protect them * [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
FakeShadowView.java | 21 import android.graphics.Outline; 63 public void getOutline(View view, Outline outline) { 64 outline.setRect(0, 0, getWidth(), mFakeShadow.getHeight()); 65 outline.setAlpha(mOutlineAlpha);
|
/developers/build/prebuilts/gradle/ClippingBasic/Application/src/main/java/com/example/android/clippingbasic/ |
ClippingBasicFragment.java | 20 import android.graphics.Outline; 31 * This sample shows how to clip a {@link View} using an {@link Outline}. 40 /* The {@Link Outline} used to clip the image with. */ 81 // Toggle whether the View is clipped to the outline 83 /* The Outline is set for the View, but disable clipping. */ 86 Log.d(TAG, String.format("Clipping to outline is disabled")); 92 Log.d(TAG, String.format("Clipping to outline is enabled")); 107 // Invalidate the outline just in case the TextView changed size 132 public void getOutline(View view, Outline outline) { [all...] |
/developers/samples/android/ui/views/Clipping/ClippingBasic/Application/src/main/java/com/example/android/clippingbasic/ |
ClippingBasicFragment.java | 20 import android.graphics.Outline; 31 * This sample shows how to clip a {@link View} using an {@link Outline}. 40 /* The {@Link Outline} used to clip the image with. */ 81 // Toggle whether the View is clipped to the outline 83 /* The Outline is set for the View, but disable clipping. */ 86 Log.d(TAG, String.format("Clipping to outline is disabled")); 92 Log.d(TAG, String.format("Clipping to outline is enabled")); 107 // Invalidate the outline just in case the TextView changed size 132 public void getOutline(View view, Outline outline) { [all...] |
/development/samples/browseable/ClippingBasic/src/com.example.android.clippingbasic/ |
ClippingBasicFragment.java | 20 import android.graphics.Outline; 31 * This sample shows how to clip a {@link View} using an {@link Outline}. 40 /* The {@Link Outline} used to clip the image with. */ 81 // Toggle whether the View is clipped to the outline 83 /* The Outline is set for the View, but disable clipping. */ 86 Log.d(TAG, String.format("Clipping to outline is disabled")); 92 Log.d(TAG, String.format("Clipping to outline is enabled")); 107 // Invalidate the outline just in case the TextView changed size 132 public void getOutline(View view, Outline outline) { [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/ |
PathShapeTest.java | 24 import android.graphics.Outline; 108 Outline outline = new Outline(); local 112 outline.setEmpty(); 114 shape.getOutline(outline); 115 assertTrue(outline.isEmpty());
|
/frameworks/base/libs/hwui/ |
Outline.h | 27 class Outline { 36 Outline() 58 // update mPath to reflect new outline 68 void setConvexPath(const SkPath* outline, float alpha) { 69 if (!outline) { 74 mPath = *outline; 75 mBounds.set(outline->getBounds());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
OutlineOverlay.java | 25 * The {@link OutlineOverlay} paints an optional outline on top of the layout, 29 /** The {@link ViewHierarchy} this outline visualizes */ 32 /** Outline color. Must be disposed, it's NOT a system color. */ 63 mOutlineColor = new Color(device, SwtDrawingStyle.OUTLINE.getStrokeColor()); 79 gc.setLineStyle(SwtDrawingStyle.OUTLINE.getLineStyle()); 81 gc.setAlpha(SwtDrawingStyle.OUTLINE.getStrokeAlpha()); 98 // This makes the outline nicer visually since you don't get
|
/external/pdfium/third_party/freetype/src/truetype/ |
ttgload.c | 331 FT_Outline* outline; local 350 cont = gloader->current.outline.contours; 436 outline = &gloader->current.outline; 439 flag = (FT_Byte*)outline->tags; 466 vec = outline->points; 468 flag = (FT_Byte*)outline->tags; 505 vec = gloader->current.outline.points; 507 flag = (FT_Byte*)outline->tags; 539 outline->n_points = (FT_Short)n_points 852 FT_Outline* outline; local 1150 FT_Outline* outline; local 1534 FT_Outline outline; local 1657 FT_Outline outline; local [all...] |
/external/freetype/src/truetype/ |
ttgload.c | 354 FT_Outline* outline; local 373 cont = gloader->current.outline.contours; 459 outline = &gloader->current.outline; 462 flag = (FT_Byte*)outline->tags; 489 vec = outline->points; 491 flag = (FT_Byte*)outline->tags; 528 vec = gloader->current.outline.points; 530 flag = (FT_Byte*)outline->tags; 562 outline->n_points = (FT_Short)n_points 877 FT_Outline* outline; local 1178 FT_Outline* outline; local 1562 FT_Outline outline; local 1685 FT_Outline outline; local [all...] |
/prebuilts/gradle-plugin/com/android/tools/jaxb-inheritance-plugin/1/ |
jaxb-inheritance-plugin-1.jar | |
/external/freetype/src/smooth/ |
ftsmooth.c | 74 FT_Outline_Transform( &slot->outline, matrix ); 77 FT_Outline_Translate( &slot->outline, delta->x, delta->y ); 93 FT_Outline_Get_CBox( &slot->outline, cbox ); 106 FT_Outline* outline = &slot->outline; local 148 FT_Outline_Get_CBox( outline, &cbox ); 250 /* translate outline to render it into the bitmap */ 253 FT_Outline_Translate( outline, x_shift, y_shift ); 259 params.source = outline; 264 /* implode outline if needed * [all...] |