HomeSort by relevance Sort by last modified time
    Searched full:shape (Results 1 - 25 of 1200) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/training/threadsample/res/drawable/
imagequeued.xml 2 <shape android:shape="rectangle"
5 </shape>
decodedecoding.xml 2 <shape android:shape="rectangle"
6 </shape>
decodequeued.xml 2 <shape android:shape="rectangle"
6 </shape>
imagedownloadfailed.xml 2 <shape android:shape="rectangle"
6 </shape>
imagedownloading.xml 2 <shape android:shape="rectangle"
6 </shape>
imagenotqueued.xml 2 <shape android:shape="rectangle"
6 </shape>
  /external/clang/test/PCH/
enum.h 9 enum Shape {
16 enum Shape aRoundShape = Circle;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
drawable2.xml 2 <shape xmlns:android="http://schemas.android.com/apk/res/android"
5 </shape>
drawable2-expected-completion52.txt 2 <corners /> : Describes the corners for the rectangle shape of a GradientDrawable.
3 <gradient /> : Used to describe the gradient used to fill the shape of a GradientDrawable.
5 <size /> : Used to specify the size of the shape for GradientDrawable.
6 <solid /> : Used to fill the shape of GradientDrawable with a solid color.
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
state.st 1 node [fontsize=11, shape = <if(useBox)>box<else>circle, fixedsize=true, width=.4<endif>]; <name>
stopstate.st 1 node [fontsize=11, shape = <if(useBox)>polygon,sides=4,peripheries=2<else>doublecircle, fixedsize=true, width=.6<endif>]; <name>
  /cts/apps/CtsVerifier/res/drawable/
test_fail_gradient.xml 0 <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
6 </shape
test_pass_gradient.xml 0 <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
6 </shape
  /packages/apps/Contacts/res/drawable/
tab_selected_focused.xml 21 <shape android:shape="rectangle" >
23 </shape>
26 <shape android:shape="rectangle" >
28 </shape>
31 <shape android:shape="rectangle" >
33 </shape>
36 <shape android:shape="rectangle"
    [all...]
tab_selected_pressed.xml 21 <shape android:shape="rectangle" >
23 </shape>
26 <shape android:shape="rectangle" >
28 </shape>
31 <shape android:shape="rectangle" >
33 </shape>
  /development/samples/WiFiDirectDemo/res/drawable/
details_view.xml 2 <shape
4 android:shape="rectangle">
15 </shape>
section_header.xml 2 <shape
4 android:shape="rectangle">
16 </shape>
  /external/bison/doc/figs/
example-reduce.dot 3 node [fontname=courier shape=box]
8 "1R3" [style=filled shape=diamond fillcolor=yellowgreen label="R3"]
10 "1R4" [style=filled shape=diamond fillcolor=yellowgreen label="R4"]
  /frameworks/opt/photoviewer/res/drawable/
default_image.xml 2 <shape xmlns:android="http://schemas.android.com/apk/res/android"
3 android:shape="rectangle">
13 </shape
  /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...]
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
ShapeHolder.java 22 import android.graphics.drawable.shapes.Shape;
26 * A data structure that holds a Shape and various properties that can be used to define
27 * how the shape is drawn.
31 private ShapeDrawable shape; field in class:ShapeHolder
57 shape = value;
60 return shape;
66 shape.getPaint().setColor(value);
78 shape.setAlpha((int)((alpha * 255f) + .5f));
82 return shape.getShape().getWidth();
85 Shape s = shape.getShape()
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
CompoundCollisionShape.java 50 * to generate a more sophisticated shape.
59 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId));
63 * adds a child shape at the given local translation
64 * @param shape the child shape to add
65 * @param location the local location of the child shape
67 public void addChildShape(CollisionShape shape, Vector3f location) {
70 // children.add(new ChildCollisionShape(location.clone(), new Matrix3f(), shape));
71 // ((CompoundShape) objectId).addChildShape(transA, shape.getObjectId());
72 addChildShape(shape, location, new Matrix3f())
    [all...]
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/shapes/infos/
ChildCollisionShape.java 22 public CollisionShape shape; field in class:ChildCollisionShape
27 public ChildCollisionShape(Vector3f location, Matrix3f rotation, CollisionShape shape) {
30 this.shape = shape;
37 capsule.write(shape, "shape", new BoxCollisionShape(new Vector3f(1, 1, 1)));
44 shape = (CollisionShape) capsule.readSavable("shape", new BoxCollisionShape(new Vector3f(1, 1, 1)));
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
ShapeTest.java 27 import android.graphics.drawable.shapes.Shape;
79 Shape shape = new MockShape(); local
80 shape.resize(100f, 200f);
81 Shape clonedShape = shape.clone();
82 assertEquals(100f, shape.getWidth());
83 assertEquals(200f, shape.getHeight());
85 assertNotSame(shape, clonedShape);
86 assertEquals(shape.getWidth(), clonedShape.getWidth())
91 Shape shape = new MockShape(); local
96 Shape shape = new MockShape(); local
    [all...]
  /external/harfbuzz_ng/
Android.mk 34 src/hb-fallback-shape.cc \
38 src/hb-shape.cc \
39 src/hb-shape-plan.cc \
46 src/hb-ot-shape.cc \
47 src/hb-ot-shape-complex-arabic.cc \
48 src/hb-ot-shape-complex-default.cc \
49 src/hb-ot-shape-complex-indic.cc \
50 src/hb-ot-shape-complex-indic-table.cc \
51 src/hb-ot-shape-complex-myanmar.cc \
52 src/hb-ot-shape-complex-sea.cc
    [all...]

Completed in 904 milliseconds

1 2 3 4 5 6 7 8 91011>>