/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
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;
|
/external/chromium_org/v8/src/ |
v8conversions.cc | 85 StringShape shape(str); 87 if (shape.IsSequentialAscii()) { 92 } else if (shape.IsSequentialTwoByte()) { 112 StringShape shape(str); 114 if (shape.IsSequentialAscii()) { 118 } else if (shape.IsSequentialTwoByte()) {
|
/external/v8/src/ |
v8conversions.cc | 85 StringShape shape(str); 86 if (shape.IsSequentialAscii()) { 91 } else if (shape.IsSequentialTwoByte()) { 110 StringShape shape(str); 111 if (shape.IsSequentialAscii()) { 115 } else if (shape.IsSequentialTwoByte()) {
|
/external/jmonkeyengine/engine/src/bullet-native/ |
com_jme3_bullet_collision_shapes_GImpactCollisionShape.cpp | 53 btGImpactMeshShape* shape = new btGImpactMeshShape(array); local 54 return reinterpret_cast<jlong>(shape);
|
com_jme3_bullet_collision_shapes_HeightfieldCollisionShape.cpp | 53 btHeightfieldTerrainShape* shape=new btHeightfieldTerrainShape(heightStickWidth, heightStickLength, data, heightScale, minHeight, maxHeight, upAxis, PHY_FLOAT, flipQuadEdges); local 54 return reinterpret_cast<jlong>(shape);
|
com_jme3_bullet_collision_shapes_MeshCollisionShape.cpp | 53 btBvhTriangleMeshShape* shape = new btBvhTriangleMeshShape(array, true, true); local 54 return reinterpret_cast<jlong>(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...] |
cb_search_sse.h | 59 VARDECL(__m128 *shape); 61 ALLOC(shape, subvect_size, __m128); 71 shape[j] = _mm_setr_ps(0.03125*_shape[j], 0.03125*_shape[subvect_size+j], 0.03125*_shape[2*subvect_size+j], 0.03125*_shape[3*subvect_size+j]); 77 resj = _mm_add_ps(resj, _mm_mul_ps(shape[k],r[j-k]));
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/ |
DebugShapeFactory.java | 59 * Creates a debug shape from the given collision shape. This is mostly used internally.<br> 60 * To attach a debug shape to a physics object, call <code>attachDebugShape(AssetManager manager);</code> on it. 70 CompoundCollisionShape shape = (CompoundCollisionShape) collisionShape; local 71 List<ChildCollisionShape> children = shape.getChildren(); 75 CollisionShape ccollisionShape = childCollisionShape.shape; 104 private static Geometry createDebugShape(CollisionShape shape) { 106 geom.setMesh(DebugShapeFactory.getDebugMesh(shape)); 107 // geom.setLocalScale(shape.getScale()); 112 public static Mesh getDebugMesh(CollisionShape shape) { [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_pep3118.py | 23 for tp, fmt, shape, itemtp in native_types: 28 if shape is not None: 29 self.assertEqual(len(v), shape[0]) 33 self.assertEqual(v.shape, shape) 39 if v.shape: 41 for dim in v.shape: 50 for tp, fmt, shape, itemtp in endian_types: 55 if shape is not None: 56 self.assertEqual(len(v), shape[0] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_pep3118.py | 23 for tp, fmt, shape, itemtp in native_types: 28 if shape is not None: 29 self.assertEqual(len(v), shape[0]) 33 self.assertEqual(v.shape, shape) 39 if v.shape: 41 for dim in v.shape: 50 for tp, fmt, shape, itemtp in endian_types: 55 if shape is not None: 56 self.assertEqual(len(v), shape[0] [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/model/shape/ |
TestBox.java | 33 package jme3test.model.shape; 39 import com.jme3.scene.shape.Box;
|
TestCylinder.java | 33 package jme3test.model.shape; 39 import com.jme3.scene.shape.Cylinder;
|
TestExpandingTorus.java | 5 package jme3test.model.shape;
10 import com.jme3.scene.shape.Torus;
|
TestSphere.java | 33 package jme3test.model.shape; 39 import com.jme3.scene.shape.Sphere;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
ClipPathOperation.h | 46 SHAPE 98 static PassRefPtr<ShapeClipPathOperation> create(PassRefPtr<BasicShape> shape) 100 return adoptRef(new ShapeClipPathOperation(shape)); 123 ShapeClipPathOperation(PassRefPtr<BasicShape> shape) 124 : ClipPathOperation(SHAPE) 125 , m_shape(shape)
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/ |
vl_median_filter.h | 59 enum vl_median_filter_shape shape);
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
vl_median_filter.h | 59 enum vl_median_filter_shape shape);
|
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/ |
CollisionShapeFactory.java | 81 Node rootNode, CompoundCollisionShape shape, boolean meshAccurate, boolean dynamic) { 90 shape.addChildShape(new HeightfieldCollisionShape(terrain.getHeightMap(), trans.getScale()), 94 createCompoundShape(realRootNode, (Node) spatial, shape, meshAccurate, dynamic); 102 shape.addChildShape(new HeightfieldCollisionShape(terrain.getHeightMap(), terrain.getLocalScale()), 117 shape.addChildShape(childShape, 123 shape.addChildShape(createSingleBoxShape(spatial, realRootNode), 129 return shape; 133 Node rootNode, CompoundCollisionShape shape, boolean meshAccurate) { 134 return createCompoundShape(rootNode, rootNode, shape, meshAccurate, false); 138 * This type of collision shape is mesh-accurate and meant for immovable "world objects" 230 BoxCollisionShape shape = new BoxCollisionShape( local [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
GLWorld.java | 30 public void addShape(GLShape shape) { 31 mShapeList.add(shape); 32 mIndexCount += shape.getIndexCount(); 56 GLShape shape = iter3.next(); local 57 shape.putIndices(mIndexBuffer);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
Shape.cpp | 31 #include "core/rendering/shapes/Shape.h" 44 static PassOwnPtr<Shape> createRectangleShape(const FloatRect& bounds, const FloatSize& radii) 50 static PassOwnPtr<Shape> createCircleShape(const FloatPoint& center, float radius) 56 static PassOwnPtr<Shape> createEllipseShape(const FloatPoint& center, const FloatSize& radii) 62 static PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule) 103 PassOwnPtr<Shape> Shape::createShape(const BasicShape* basicShape, const LayoutSize& logicalBoxSize, WritingMode writingMode, Length margin, Length padding) 110 OwnPtr<Shape> shape; local 127 shape = createRectangleShape(logicalBounds, physicalSizeToLogical(cornerRadii, writingMode)) [all...] |
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/ |
DebugShapeFactory.java | 68 * Creates a debug shape from the given collision shape. This is mostly used internally.<br> 69 * To attach a debug shape to a physics object, call <code>attachDebugShape(AssetManager manager);</code> on it. 79 CompoundCollisionShape shape = (CompoundCollisionShape) collisionShape; local 80 List<ChildCollisionShape> children = shape.getChildren(); 84 CollisionShape ccollisionShape = childCollisionShape.shape; 114 private static Geometry createDebugShape(CollisionShape shape) { 116 geom.setMesh(DebugShapeFactory.getDebugMesh(shape)); 117 // geom.setLocalScale(shape.getScale()); 122 public static Mesh getDebugMesh(CollisionShape shape) { [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/ |
dot.stg | 68 node [fontsize=11, shape = <if(useBox)>box<else>circle, fixedsize=true, width=.4<endif>]; <name> 72 node [fontsize=11, shape = <if(useBox)>polygon,sides=4,peripheries=2<else>doublecircle, fixedsize=true, width=.6<endif>]; <name>
|
/external/harfbuzz/src/ |
harfbuzz-arabic.c | 33 unsigned char shape; member in struct:__anon20330 387 ArabicShape shape = joining_table[XIsolated][j].form2; local 398 properties[i].shape = XIsolated; 402 properties[lastPos].shape = joining_table[shape][j].form1; 403 shape = joining_table[shape][j].form2; 407 if (properties[lastPos].shape == XInitial || properties[lastPos].shape == XMedial) 411 if (properties[lastPos].shape == XFinal 513 ArabicShape shape = joining_table[XIsolated][j].form2; local 936 int shape = properties[i].shape; local [all...] |
/external/harfbuzz_ng/src/hb-old/ |
harfbuzz-arabic.c | 33 unsigned char shape; member in struct:__anon20395 387 ArabicShape shape = joining_table[XIsolated][j].form2; local 398 properties[i].shape = XIsolated; 402 properties[lastPos].shape = joining_table[shape][j].form1; 403 shape = joining_table[shape][j].form2; 407 if (properties[lastPos].shape == XInitial || properties[lastPos].shape == XMedial) 411 if (properties[lastPos].shape == XFinal 513 ArabicShape shape = joining_table[XIsolated][j].form2; local 936 int shape = properties[i].shape; local [all...] |