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

1 2 3 4 5 6 7 8 91011>>

  /external/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/
NodeShape.java 31 private final String shape; field in class:NodeShape
33 NodeShape(String shape) {
34 this.shape = shape;
39 return shape;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/
TriangleBean.java 20 private Shape shape; field in class:TriangleBean
30 public Shape getShape() {
31 return shape;
34 public void setShape(Shape shape) {
35 this.shape = shape;
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
FlagDeclaringOp.java 31 private final StreamShape shape; field in class:FlagDeclaringOp
37 public FlagDeclaringOp(int flags, StreamShape shape) {
39 this.shape = shape;
44 return shape;
49 return shape;
TestFlagExpectedOp.java 33 StreamShape shape = StreamShape.REFERENCE; field in class:TestFlagExpectedOp.Builder
58 Builder<T> shape(StreamShape shape) { method in class:TestFlagExpectedOp.Builder
59 this.shape = shape;
64 return new TestFlagExpectedOp<>(flags, known, preserve, notKnown, shape);
71 final StreamShape shape; field in class:TestFlagExpectedOp
84 StreamShape shape) {
89 this.shape = shape;
    [all...]
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
FlagDeclaringOp.java 34 private final StreamShape shape; field in class:FlagDeclaringOp
40 public FlagDeclaringOp(int flags, StreamShape shape) {
42 this.shape = shape;
47 return shape;
52 return shape;
TestFlagExpectedOp.java 34 StreamShape shape = StreamShape.REFERENCE; field in class:TestFlagExpectedOp.Builder
59 Builder<T> shape(StreamShape shape) { method in class:TestFlagExpectedOp.Builder
60 this.shape = shape;
65 return new TestFlagExpectedOp<>(flags, known, preserve, notKnown, shape);
72 final StreamShape shape; field in class:TestFlagExpectedOp
85 StreamShape shape) {
90 this.shape = shape;
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
neon-vmov-bad.l 2 [^:]*:3: Error: invalid instruction shape -- `vmov Q0,d0'
neon-vmov-bad.d 1 # name: Bad shape for vmov
  /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...]
  /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);
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
ShapeTest.java 30 import android.graphics.drawable.shapes.Shape;
90 Shape shape = new MockShape(); local
91 shape.resize(100f, 200f);
92 Shape clonedShape = shape.clone();
93 assertEquals(100f, shape.getWidth(), 0.0f);
94 assertEquals(200f, shape.getHeight(), 0.0f);
96 assertNotSame(shape, clonedShape);
97 assertEquals(shape.getWidth(), clonedShape.getWidth(), 0.0f)
103 Shape shape = new MockShape(); local
109 Shape shape = new MockShape(); local
127 Shape shape = new MockShape(); local
    [all...]
OvalShapeTest.java 86 OvalShape shape; local
89 shape = new OvalShape();
90 shape.getOutline(outline);
96 shape.resize(100, 100);
97 shape.getOutline(outline);
107 shape.resize(100, 200);
108 shape.getOutline(outline);
116 OvalShape shape = new OvalShape();
117 shape.resize(100, 100);
119 OvalShape clone = shape.clone()
    [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.readOnlyNI(), advance, phase,
  /external/skia/src/gpu/ops/
GrSmallPathRenderer.h 43 Key(const GrShape& shape, uint32_t dim) { this->set(shape, dim); }
44 Key(const GrShape& shape, const SkMatrix& ctm) { this->set(shape, ctm); }
52 void set(const GrShape& shape, uint32_t dim) {
55 SkASSERT(shape.style().isSimpleFill());
56 SkASSERT(shape.hasUnstyledKey());
57 int shapeKeySize = shape.unstyledKeySize();
60 shape.writeUnstyledKey(&fKey[1]);
63 void set(const GrShape& shape, const SkMatrix& ctm)
    [all...]
  /frameworks/ml/nn/common/
CpuExecutor.cpp 95 // Updates the RunTimeOperandInfo with the newly calculated shape.
97 static bool setInfoAndAllocateIfNeeded(RunTimeOperandInfo* info, const Shape& shape) {
98 // For user-provided model output operands, the parameters must match the Shape
101 if (info->type != shape.type ||
102 info->dimensions != shape.dimensions) {
107 (info->scale != shape.scale || info->zeroPoint != shape.offset)) {
112 info->type = shape.type;
113 info->dimensions = shape.dimensions
    [all...]
  /external/gemmlowp/test/
benchmark_meta_gemm.cc 64 struct Shape {
73 Shape(std::int32_t n, std::int32_t m, std::int32_t k)
104 double run_gemms(std::vector<Shape>* shapes) {
106 for (auto& shape : *shapes) {
107 ops += run_gemm(shape.n, shape.m, shape.k, shape.working_set().lhs,
108 shape.working_set().rhs, shape.working_set().result)
    [all...]
  /external/skia/src/gpu/
GrPath.cpp 17 void GrPath::ComputeKey(const GrShape& shape, GrUniqueKey* key, bool* outIsVolatile) {
18 int geoCnt = shape.unstyledKeySize();
19 int styleCnt = GrStyle::KeySize(shape.style(), GrStyle::Apply::kPathEffectAndStrokeRec);
29 shape.writeUnstyledKey(&builder[0]);
31 write_style_key(&builder[geoCnt], shape.style());
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
PathShape.java 31 public class PathShape extends Shape {
43 * @param path a Path that defines the geometric paths for this shape
44 * @param stdWidth the standard width for the shape. Any changes to the
47 * @param stdHeight the standard height for the shape. Any changes to the
73 final PathShape shape = (PathShape) super.clone(); local
74 shape.mPath = new Path(mPath);
75 return shape;
RectShape.java 25 * Defines a rectangle shape.
31 public class RectShape extends Shape {
62 final RectShape shape = (RectShape) super.clone(); local
63 shape.mRect = new RectF(mRect);
64 return shape;
RoundRectShape.java 28 * can be included (to make a sort of "O" shape).
132 final RoundRectShape shape = (RoundRectShape) super.clone(); local
133 shape.mOuterRadii = mOuterRadii != null ? mOuterRadii.clone() : null;
134 shape.mInnerRadii = mInnerRadii != null ? mInnerRadii.clone() : null;
135 shape.mInset = new RectF(mInset);
136 shape.mInnerRect = new RectF(mInnerRect);
137 shape.mPath = new Path(mPath);
138 return shape;
  /external/speex/libspeex/
cb_search_arm4.h 42 //const signed char *shape;
46 //shape = shape_cb;
93 const signed char *shape=shape_cb+k;
94 resj0 = MAC16_16(resj0,*shape,r[j-k]);
95 shape += subvect_size;
96 resj1 = MAC16_16(resj1,*shape,r[j-k]);
97 shape += subvect_size;
98 resj2 = MAC16_16(resj2,*shape,r[j-k]);
99 shape += subvect_size;
100 resj3 = MAC16_16(resj3,*shape,r[j-k])
    [all...]
  /developers/build/prebuilts/gradle/RevealEffectBasic/Application/src/main/java/com/example/android/revealeffectbasic/
RevealEffectBasicFragment.java 51 final View shape = view.findViewById(R.id.circle); local
60 shape,
64 (float) Math.hypot(shape.getWidth(), shape.getHeight()));
  /developers/samples/android/ui/views/RevealEffect/RevealEffectBasic/Application/src/main/java/com/example/android/revealeffectbasic/
RevealEffectBasicFragment.java 51 final View shape = view.findViewById(R.id.circle); local
60 shape,
64 (float) Math.hypot(shape.getWidth(), shape.getHeight()));
  /development/samples/browseable/RevealEffectBasic/src/com.example.android.revealeffectbasic/
RevealEffectBasicFragment.java 55 View shape = rootView.findViewById(R.id.circle);
60 shape,
64 (float) Math.hypot(shape.getWidth(), shape.getHeight()));
  /external/skia/tools/
SkShaper.h 31 SkScalar shape(SkTextBlobBuilder* dest,

Completed in 1934 milliseconds

1 2 3 4 5 6 7 8 91011>>