/external/harfbuzz_ng/src/ |
gen-arabic-table.py | 91 shape, items = items[0][1:-1], tuple (int (x, 16) for x in items[1:]) 93 if not shape in ['initial', 'medial', 'isolated', 'final']: 106 ligatures[items][shape] = c 109 # Save shape 116 shapes[items[0]][shape] = c 125 s = [shapes[u][shape] if u in shapes and shape in shapes[u] else 0 126 for shape in ['initial', 'medial', 'final', 'isolated']] 138 for shape in ligatures[pair]: 139 c = ligatures[pair][shape] [all...] |
/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/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLAreaElement.idl | 26 [Reflect] attribute DOMString shape;
|
/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/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/ |
scene.js | 34 function loadShape(shape) { 35 if (shapes[shape.name] != undefined) { 36 return shapes[shape.name]; 39 if (shape.type == "cube") { 40 shapes[shape.name] = new THREE.CubeGeometry(shape['wx'], shape['wy'], shape['wz']); 41 return shapes[shape.name]; 44 if (shape.type == "convex") [all...] |
/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...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
ShapeInsideInfo.cpp | 51 case ShapeValue::Shape: 52 return shapeValue->shape() && shapeValue->shape()->type() != BasicShape::BasicShapeInsetRectangleType; 89 const Shape* shape = computedShape(); local 90 if (!shape || m_lineHeight <= 0 || logicalLineTop() > shapeLogicalBottom()) 94 if (shape->firstIncludedIntervalLogicalTop(m_shapeLineTop, LayoutSize(minSegmentWidth, m_lineHeight), newLineTop)) {
|
ShapeInfo.cpp | 50 const Shape* ShapeInfo<RenderType>::computedShape() const 52 if (Shape* shape = m_shape.get()) 53 return shape; 63 case ShapeValue::Shape: 64 ASSERT(shapeValue->shape()); 65 m_shape = Shape::createShape(shapeValue->shape(), m_shapeLogicalSize, writingMode, margin, padding); 69 m_shape = Shape::createShape(shapeValue->image(), shapeImageThreshold, m_shapeLogicalSize, writingMode, margin, padding); 72 m_shape = Shape::createLayoutBoxShape(m_shapeLogicalSize, writingMode, margin, padding) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
ShapeValue.h | 45 Shape, 51 static PassRefPtr<ShapeValue> createShapeValue(PassRefPtr<BasicShape> shape) 53 return adoptRef(new ShapeValue(shape)); 72 BasicShape* shape() const { return m_shape.get(); } function in class:WebCore::ShapeValue 88 ShapeValue(PassRefPtr<BasicShape> shape) 89 : m_type(Shape) 90 , m_shape(shape)
|
/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 97 static PassRefPtr<ShapeClipPathOperation> create(PassRefPtr<BasicShape> shape) 99 return adoptRef(new ShapeClipPathOperation(shape)); 119 ShapeClipPathOperation(PassRefPtr<BasicShape> shape) 120 : ClipPathOperation(SHAPE) 121 , m_shape(shape) 129 DEFINE_TYPE_CASTS(ShapeClipPathOperation, ClipPathOperation, op, op->type() == ClipPathOperation::SHAPE, op.type() == ClipPathOperation::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...] |