/external/jmonkeyengine/engine/src/test/jme3test/post/ |
TestCrossHatch.java | 50 import com.jme3.scene.shape.Box;
|
TestPosterization.java | 50 import com.jme3.scene.shape.Box;
|
TestRenderToTexture.java | 47 import com.jme3.scene.shape.Box;
|
TestTransparentCartoonEdge.java | 15 import com.jme3.scene.shape.Quad;
|
/external/jmonkeyengine/engine/src/test/jme3test/texture/ |
TestTexture3D.java | 17 import com.jme3.scene.shape.Sphere;
|
/external/skia/src/pdf/ |
SkPDFDevice.cpp | 640 SkPath* shape = &fShape; local 641 if (shape->isEmpty()) { 642 shape = NULL; 644 fDevice->finishContentEntry(fXfermode, fDstFormXObject, shape); 651 /* Returns true when we explicitly need the shape of the drawing. */ 669 /* Returns true unless we only need the shape of the drawing. */ 677 /* If the shape is different than the alpha component of the content, then 678 * setShape should be called with the shape. In particular, images and 679 * devices have rectangular shape. 681 void setShape(const SkPath& shape) { 1356 SkPath shape; local 2242 SkPath shape; local [all...] |
/external/speex/libspeex/ |
cb_search.c | 56 VARDECL(spx_word16_t *shape); 57 ALLOC(shape, subvect_size, spx_word16_t); 64 shape[k] = (spx_word16_t)shape_cb[i*subvect_size+k]; 73 resj = MAC16_16(resj,shape[k],r[j-k]);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ |
CreateAssetSetWizardState.java | 22 import com.android.assetstudiolib.GraphicGenerator.Shape; 84 /** The background shape */ 85 public Shape shape = Shape.SQUARE; field in class:CreateAssetSetWizardState 93 /** The background color to use for the shape (unless the shape is {@link Shape#NONE} */ 96 /** The background color to use for the text or clipart (unless shape is {@link Shape#NONE} * [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplateMetadata.java | 241 for (GraphicGenerator.Shape shape : GraphicGenerator.Shape.values()) { 242 if (shapeString.equals(shape.name())) { 243 mIconState.shape = shape; 249 AdtPlugin.log(null, "Unknown shape %1$s", shapeString);
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
ShapeDrawableTest.java | 36 import android.graphics.drawable.shapes.Shape; 249 public MockShapeDrawable(Shape s) { 253 protected void onDraw(Shape shape, Canvas canvas, Paint paint) { 254 super.onDraw(shape, canvas, paint); 282 private static class MockShape extends Shape {
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSPrimitiveValue.h | 301 CSSBasicShape* getShapeValue() const { return m_primitiveUnitType != CSS_SHAPE ? 0 : m_value.shape; } 376 CSSBasicShape* shape; member in union:WebCore::CSSPrimitiveValue::__anon12564
|
CSSParser-in.cpp | [all...] |
CSSGradientValue.cpp | 833 // The only ambiguous case that needs an explicit shape to be provided 1019 GradientShape shape = Ellipse; local [all...] |
/external/jmonkeyengine/engine/src/bullet-native/ |
com_jme3_bullet_objects_PhysicsCharacter.cpp | 89 btConvexShape* shape = reinterpret_cast<btConvexShape*>(shapeId); local 90 btKinematicCharacterController* character = new btKinematicCharacterController(ghost, shape, stepHeight);
|
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
TestAttachDriver.java | 52 import com.jme3.scene.shape.Box; 53 import com.jme3.scene.shape.Cylinder; 130 //create a compound shape and attach the BoxCollisionShape for the car body at 0,1,0
|
TestBoneRagdoll.java | 60 import com.jme3.scene.shape.Sphere; 61 import com.jme3.scene.shape.Sphere.TextureMode;
|
TestWalkingChar.java | 67 import com.jme3.scene.shape.Box; 68 import com.jme3.scene.shape.Sphere; 69 import com.jme3.scene.shape.Sphere.TextureMode;
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
ShapeDrawable.java | 20 import android.graphics.drawable.shapes.Shape; 32 * A ShapeDrawable takes a {@link android.graphics.drawable.shapes.Shape} 33 * object and manages its presence on the screen. If no Shape is given, then 37 * <p>This object can be defined in an XML file with the <code><shape></code> element.</p> 42 * <a href="{@docRoot}guide/topics/graphics/2d-graphics.html#shape-drawable"> 45 * <a href="{@docRoot}guide/topics/resources/drawable-resource.html#Shape">Drawable Resources</a> 68 * Creates a ShapeDrawable with a specified Shape. 70 * @param s the Shape that this ShapeDrawable should be 72 public ShapeDrawable(Shape s) { 83 * Returns the Shape of this ShapeDrawable [all...] |
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/ |
PhysicsSpace.java | 691 public List<PhysicsSweepTestResult> sweepTest(CollisionShape shape, Transform start, Transform end) { 693 if (!(shape.getCShape() instanceof ConvexShape)) { 694 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.WARNING, "Trying to sweep test with incompatible mesh shape!"); 697 dynamicsWorld.convexSweepTest((ConvexShape) shape.getCShape(), Converter.convert(start, sweepTrans1), Converter.convert(end, sweepTrans2), new InternalSweepListener(results)); 707 public List<PhysicsSweepTestResult> sweepTest(CollisionShape shape, Transform start, Transform end, List<PhysicsSweepTestResult> results) { 709 if (!(shape.getCShape() instanceof ConvexShape)) { 710 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.WARNING, "Trying to sweep test with incompatible mesh shape!"); 713 dynamicsWorld.convexSweepTest((ConvexShape) shape.getCShape(), Converter.convert(start, sweepTrans1), Converter.convert(end, sweepTrans2), new InternalSweepListener(results)); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/ |
Region.cpp | 31 // A region class based on the paper "Scanline Coherent Shape Algebra" 53 for (Shape::SpanIterator span = m_shape.spans_begin(), end = m_shape.spans_end(); span != end && span + 1 != end; ++span) { 57 for (Shape::SegmentIterator segment = m_shape.segments_begin(span), end = m_shape.segments_end(span); segment != end && segment + 1 != end; segment += 2) { 73 return Shape::compareShapes<Shape::CompareContainsOperation>(m_shape, region.m_shape); 81 for (Shape::SpanIterator span = m_shape.spans_begin(), end = m_shape.spans_end(); span != end && span + 1 != end; ++span) { 90 for (Shape::SegmentIterator segment = m_shape.segments_begin(span), end = m_shape.segments_end(span); segment != end && segment + 1 != end; segment += 2) { 109 return Shape::compareShapes<Shape::CompareIntersectsOperation>(m_shape, region.m_shape); 127 bool Region::Shape::compareShapes(const Shape& aShape, const Shape& bShape [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
ir.py | 140 shape = tuple( [ type(_node).__name__ for _node in node ] ) 141 if not tank[type(node)].has_key(shape): 142 tank[type(node)][shape] = [] 143 tank[type(node)][shape].append( node ) 152 for shape in tank[key].keys(): 153 print " ", shape 195 shape = +( str, +ConstExpr ) [all...] |
/external/opencv/cv/src/ |
cvmorph.cpp | 176 "structuring element should be valid matrix if CUSTOM element shape is specified" ); 406 CV_ERROR( CV_StsBadArg, "Unknown/unsupported element shape" ); 728 int shape, int *values ) 738 if( !values && shape == CV_SHAPE_CUSTOM ) [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/games/ |
CubeField.java | 50 import com.jme3.scene.shape.Box; 51 import com.jme3.scene.shape.Dome;
|
/external/jmonkeyengine/engine/src/test/jme3test/terrain/ |
TerrainTestCollision.java | 57 import com.jme3.scene.shape.Box; 58 import com.jme3.scene.shape.Sphere;
|
/developers/build/lib/ |
assetstudio.jar | |