/external/skia/include/core/ |
SkShape.h | 17 /** Draw the shape translated by (dx,dy), which is applied before the 18 shape's matrix (if any). 22 /** Draw the shape with the specified matrix, applied before the shape's
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
Shape.java | 23 * Defines a generic graphical "shape." 24 * Any Shape can be drawn to a Canvas with its own draw() method, 28 public abstract class Shape implements Cloneable { 33 * Returns the width of the Shape. 40 * Returns the height of the Shape. 48 * Draw this shape into the provided Canvas, with the provided Paint. 51 * @param canvas the Canvas within which this shape should be drawn 52 * @param paint the Paint object that defines this shape's characteristics 58 * Resizes the dimensions of this shape. 61 * @param width the width of the shape (in pixels [all...] |
RectShape.java | 24 * Defines a rectangle shape. 29 public class RectShape extends Shape { 56 final RectShape shape = (RectShape) super.clone(); local 57 shape.mRect = new RectF(mRect); 58 return shape;
|
PathShape.java | 29 public class PathShape extends Shape { 40 * @param path a Path that defines the geometric paths for this shape 41 * @param stdWidth the standard width for the shape. Any changes to the 44 * @param stdHeight the standard height for the shape. Any changes to the 70 PathShape shape = (PathShape) super.clone(); local 71 shape.mPath = new Path(mPath); 72 return shape;
|
RoundRectShape.java | 26 * can be included (to make a sort of "O" shape). 111 RoundRectShape shape = (RoundRectShape) super.clone(); local 112 shape.mOuterRadii = mOuterRadii.clone(); 113 shape.mInnerRadii = mInnerRadii.clone(); 114 shape.mInset = new RectF(mInset); 115 shape.mInnerRect = new RectF(mInnerRect); 116 shape.mPath = new Path(mPath); 117 return shape;
|
/frameworks/base/awt/java/awt/ |
Stroke.java | 26 * interface. It provides a means for getting a stroked version of a shape, 28 * interface. Stroking a shape gives the shape's outline a width or drawing 32 * rendering the shape's outline. The stroke should be set by 41 * Creates the stroked shape, which is the version that is suitable for 42 * drawing via the Graphics2D interface. Stroking a shape gives the shape's 46 * the original shape. 47 * @return the stroked shape. 49 public Shape createStrokedShape(Shape p) [all...] |
Shape.java | 30 * The Shape interface defines a geometric shape defined by a boundary (outline) 32 * Shape interface provides methods for obtaining the bounding box (which is the 33 * smallest rectangle containing the shape and for obtaining a PathIterator 34 * object for current Shape, as well as utility methods which determine if the 35 * Shape contains or intersects a Rectangle or contains a Point. 39 public interface Shape { 43 * the Shape. 49 * @return true, if the specified coordinates lie inside the Shape, false 56 * parameters lies inside the Shape [all...] |
/frameworks/base/graphics/java/android/graphics/ |
PathDashPathEffect.java | 22 TRANSLATE(0), //!< translate the shape to each position 23 ROTATE(1), //!< rotate the shape about its center 33 * Dash the drawn path by stamping it with the specified shape. This only 37 * @param shape The path to stamp along 38 * @param advance spacing between each stamp of shape 39 * @param phase amount to offset before the first shape is stamped 40 * @param style how to transform the shape at each position as it is stamped 42 public PathDashPathEffect(Path shape, float advance, float phase, 44 native_instance = nativeCreate(shape.ni(), advance, phase,
|
/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/ |
ShapeTest.java | 26 import android.graphics.drawable.shapes.Shape; 30 @TestTargetClass(android.graphics.drawable.shapes.Shape.class) 100 Shape shape = new MockShape(); local 101 shape.resize(100f, 200f); 102 Shape clonedShape = shape.clone(); 103 assertEquals(100f, shape.getWidth()); 104 assertEquals(200f, shape.getHeight()); 106 assertNotSame(shape, clonedShape) [all...] |
/frameworks/base/awt/java/awt/font/ |
ShapeGraphicAttribute.java | 26 import java.awt.Shape; 41 // shape to render 43 * The shape. 45 private Shape fShape; 47 // flag, if the shape should be stroked (true) or filled (false) 53 // bounds of the shape 71 // width of the shape 73 * The shape width. 77 // height of the shape 79 * The shape height [all...] |
/frameworks/base/awt/java/awt/geom/ |
PathIterator.java | 26 * traverse the outline of a {@link java.awt.Shape}. It returns points along the 27 * boundary of the Shape which may be actual vertices (in the case of a shape 31 * If the shape is closed, the outline is traversed in the counter-clockwise 33 * such a way that the interior of the shape is to the left of the outline path 34 * and the exterior of the shape is to the right of the outline path. The 35 * interior and exterior of the shape are determined by a winding rule. 44 * point is outside the shape if any infinite ray from the point crosses the 45 * outline of the shape an even number of times, otherwise it is inside. 51 * point is inside the shape if every infinite ray starting from that poin [all...] |
/development/samples/ApiDemos/res/drawable/ |
shape_4.xml | 17 <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line"> 20 </shape>
|
black_box.xml | 17 <shape xmlns:android="http://schemas.android.com/apk/res/android"> 21 </shape>
|
black_opaque_box.xml | 17 <shape xmlns:android="http://schemas.android.com/apk/res/android"> 21 </shape>
|
scrollbar_vertical_thumb.xml | 17 <shape xmlns:android="http://schemas.android.com/apk/res/android"> 21 </shape>
|
scrollbar_vertical_track.xml | 17 <shape xmlns:android="http://schemas.android.com/apk/res/android"> 21 </shape>
|
/packages/apps/Calendar/res/drawable/ |
calendars_item.xml | 17 <shape xmlns:android="http://schemas.android.com/apk/res/android" 18 android:shape="rectangle"> 22 </shape>
|
/frameworks/base/core/res/res/drawable/ |
progress_horizontal.xml | 20 <shape> 29 </shape> 34 <shape> 43 </shape> 49 <shape> 58 </shape>
|
/external/proguard/docs/ |
screenshots.html | 19 <area shape="rect" coords="2,7,46,16" alt="ProGuard" href="screenshot_gui1.gif" target="other"> 20 <area shape="rect" coords="2,17,46,27" alt="Input/Output" href="screenshot_gui2.gif" target="other"> 21 <area shape="rect" coords="2,28,46,37" alt="Shrinking" href="screenshot_gui3.gif" target="other"> 22 <area shape="rect" coords="2,38,46,48" alt="Optimization" href="screenshot_gui4.gif" target="other"> 23 <area shape="rect" coords="2,49,46,58" alt="Obfuscation" href="screenshot_gui5.gif" target="other"> 24 <area shape="rect" coords="2,59,46,69" alt="Information" href="screenshot_gui6.gif" target="other"> 25 <area shape="rect" coords="2,70,46,79" alt="Process" href="screenshot_gui7.gif" target="other"> 26 <area shape="rect" coords="2,80,46,90" alt="ReTrace" href="screenshot_gui8.gif" target="other">
|
/external/opencore/doc/oscl_html/ |
classHeapBase.html | 17 <area href="class__OsclHeapBase.html" alt="_OsclHeapBase" shape="rect" coords="0,0,130,24"> 18 <area href="classOscl__File.html" alt="Oscl_File" shape="rect" coords="140,112,270,136"> 19 <area href="classOSCL__String.html" alt="OSCL_String" shape="rect" coords="140,168,270,192"> 20 <area href="classOsclActiveObject.html" alt="OsclActiveObject" shape="rect" coords="140,224,270,248"> 21 <area href="classOsclAsyncFileBuffer.html" alt="OsclAsyncFileBuffer" shape="rect" coords="140,280,270,304"> 22 <area href="classOsclBuf.html" alt="OsclBuf" shape="rect" coords="140,336,270,360"> 23 <area href="classOsclDNS.html" alt="OsclDNS" shape="rect" coords="140,392,270,416"> 24 <area href="classOsclFileCache.html" alt="OsclFileCache" shape="rect" coords="140,448,270,472"> 25 <area href="classOsclNativeFile.html" alt="OsclNativeFile" shape="rect" coords="140,504,270,528"> 26 <area href="classOsclPtr.html" alt="OsclPtr" shape="rect" coords="140,560,270,584" [all...] |
class__OsclHeapBase.html | 17 <area href="classHeapBase.html" alt="HeapBase" shape="rect" coords="0,56,152,80"> 18 <area href="classOsclExecSchedulerBase.html" alt="OsclExecSchedulerBase" shape="rect" coords="324,56,476,80"> 19 <area href="classOscl__File.html" alt="Oscl_File" shape="rect" coords="162,112,314,136"> 20 <area href="classOSCL__String.html" alt="OSCL_String" shape="rect" coords="162,168,314,192"> 21 <area href="classOsclActiveObject.html" alt="OsclActiveObject" shape="rect" coords="162,224,314,248"> 22 <area href="classOsclAsyncFileBuffer.html" alt="OsclAsyncFileBuffer" shape="rect" coords="162,280,314,304"> 23 <area href="classOsclBuf.html" alt="OsclBuf" shape="rect" coords="162,336,314,360"> 24 <area href="classOsclDNS.html" alt="OsclDNS" shape="rect" coords="162,392,314,416"> 25 <area href="classOsclFileCache.html" alt="OsclFileCache" shape="rect" coords="162,448,314,472"> 26 <area href="classOsclNativeFile.html" alt="OsclNativeFile" shape="rect" coords="162,504,314,528" [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
Layer.java | 29 GLShape shape = mShapes[i]; local 30 if (shape != null) { 31 shape.startAnimation(); 38 GLShape shape = mShapes[i]; local 39 if (shape != null) { 40 shape.endAnimation(); 84 GLShape shape = mShapes[i]; local 85 if (shape != null) { 86 shape.animateTransform(mTransform);
|
/packages/apps/Browser/res/drawable/ |
blank.xml | 18 <shape> 21 </shape>
|
/packages/apps/Calculator/res/drawable/ |
blue_button.xml | 17 <shape xmlns:android="http://schemas.android.com/apk/res/android"> 21 </shape>
|
button.xml | 17 <shape xmlns:android="http://schemas.android.com/apk/res/android"> 21 </shape>
|