HomeSort by relevance Sort by last modified time
    Searched refs:Box (Results 51 - 75 of 148) sorted by null

1 23 4 5 6

  /external/chromium_org/third_party/lcov/contrib/galaxy/
conglomerate_functions.pl 5 # others around it. Each one gets a box about its area.
42 # Draw box with file name
43 my @Output = Box ('normal', 'Helvetica-Bold', 32, $CFile, $LastLine);
48 #add a duplicate box to test if this works
65 # Box (type, font, fontsize, Label, BBoxLine)
66 sub Box
75 # print (STDERR "Box ('$Type', '$Font', '$Fontsize', '$Label', '$BBoxLine')\n");
76 push (@Output, "% start of box\n");
87 # Put black box around it
95 # fill bounding box
    [all...]
  /external/chromium_org/third_party/lcov-1.9/contrib/galaxy/
conglomerate_functions.pl 5 # others around it. Each one gets a box about its area.
42 # Draw box with file name
43 my @Output = Box ('normal', 'Helvetica-Bold', 32, $CFile, $LastLine);
48 #add a duplicate box to test if this works
65 # Box (type, font, fontsize, Label, BBoxLine)
66 sub Box
75 # print (STDERR "Box ('$Type', '$Font', '$Fontsize', '$Label', '$BBoxLine')\n");
76 push (@Output, "% start of box\n");
87 # Put black box around it
95 # fill bounding box
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/awt/
TestAwtPanels.java 7 import com.jme3.scene.shape.Box;
77 Box b = new Box(Vector3f.ZERO, 1, 1, 1);
78 Geometry geom = new Geometry("Box", b);
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestGhostObject.java 45 import com.jme3.scene.shape.Box;
68 Box boxGeom = new Box(Vector3f.ZERO, 1f, 1f, 1f);
TestBrickTower.java 55 import com.jme3.scene.shape.Box;
83 private Box brick;
103 brick = new Box(Vector3f.ZERO, brickWidth, brickHeight, brickDepth);
181 Box floorBox = new Box(Vector3f.ZERO, 10f, 0.1f, 5f);
TestBrickWall.java 52 import com.jme3.scene.shape.Box;
73 private static Box brick;
93 brick = new Box(Vector3f.ZERO, bLength, bHeight, bWidth);
154 Box floorBox = new Box(Vector3f.ZERO, 10f, 0.1f, 5f);
TestCollisionShapeFactory.java 45 import com.jme3.scene.shape.Box;
99 Box box = new Box(0.25f, 0.25f, 0.25f); local
102 new Geometry("box1", box),
103 new Geometry("box2", box),
104 new Geometry("box3", box),
TestCollisionGroups.java 44 import com.jme3.scene.shape.Box;
88 Node node3 = PhysicsTestHelper.createPhysicsTestNode(assetManager, new MeshCollisionShape(new Box(Vector3f.ZERO, 100f, 0.2f, 100f)), 0);
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloInput.java 46 import com.jme3.scene.shape.Box;
60 Box b = new Box(Vector3f.ZERO, 1, 1, 1);
HelloPhysics.java 47 import com.jme3.scene.shape.Box;
74 private static final Box box; field in class:HelloPhysics
78 private static final Box floor;
90 box = new Box(Vector3f.ZERO, brickLength, brickHeight, brickWidth);
91 box.scaleTextureCoordinates(new Vector2f(1f, .5f));
93 floor = new Box(Vector3f.ZERO, 10f, 0.1f, 5f);
185 Geometry brick_geo = new Geometry("brick", box);
HelloPicking.java 52 import com.jme3.scene.shape.Box;
128 Box box = new Box(new Vector3f(x, y, z), 1, 1, 1); local
129 Geometry cube = new Geometry(name, box);
138 Box box = new Box(new Vector3f(0, -4, -5), 15, .2f, 15); local
139 Geometry floor = new Geometry("the Floor", box);
  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestShadow.java 45 import com.jme3.scene.shape.Box;
79 Box floor = new Box(Vector3f.ZERO, 3, 0.1f, 3);
TestSpotLight.java 43 import com.jme3.scene.shape.Box;
103 Box floor = new Box(Vector3f.ZERO, 50, 1f, 50);
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestOgreAnim.java 47 import com.jme3.scene.shape.Box;
85 Box b = new Box(.25f,3f,.25f);
TestCustomAnim.java 49 import com.jme3.scene.shape.Box;
74 Box box = new Box(1, 1, 1); local
77 FloatBuffer weights = FloatBuffer.allocate( box.getVertexCount() * 4 );
80 box.setBuffer(weightsBuf);
83 ByteBuffer indices = ByteBuffer.allocate( box.getVertexCount() * 4 );
86 box.setBuffer(indicesBuf);
89 box.generateBindPose(true);
98 for (int i = 0; i < box.getVertexCount() * 4; i += 4)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/model/shape/
TestBillboard.java 42 import com.jme3.scene.shape.Box;
67 Box b = new Box(new Vector3f(0, 0, 3), .25f, .5f, .25f);
68 Geometry g2 = new Geometry("Box", b);
  /external/chromium_org/media/mp4/
box_reader.h 23 struct MEDIA_EXPORT Box {
24 virtual ~Box();
75 // if an intact, complete box was not available in the buffer. If |*err| is
76 // set, there was a stream-level error when creating the box; otherwise, NULL
85 // Read the box header from the current buffer. This function returns true if
87 // does not check to ensure the entire box is in the buffer before returning
98 // Returns true if |type| is recognized to be a top-level box, false
104 // Scan through all boxes within the current box, starting at the current
108 // Read exactly one child box from the set of children. The type of the child
110 bool ReadChild(Box* child) WARN_UNUSED_RESULT
    [all...]
box_reader.cc 20 Box::~Box() {}
96 DVLOG(1) << "Skipping unknown box: " << FourCCToString(itr->first);
161 MEDIA_LOG(log_cb) << "Unrecognized top-level box type 0x"
184 bool BoxReader::ReadChild(Box* child) {
190 DVLOG(2) << "Found a " << FourCCToString(child_type) << " box.";
196 bool BoxReader::MaybeReadChild(Box* child) {
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestRenderToTexture.java 47 import com.jme3.scene.shape.Box;
96 Box boxMesh = new Box(Vector3f.ZERO, 1,1,1);
98 offBox = new Geometry("box", boxMesh);
113 Geometry quad = new Geometry("box", new Box(Vector3f.ZERO, 1,1,1));
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
MovieBox.java 26 * The metadata for a presentation is stored in the single Movie Box which occurs at the top-level of a file.
27 * Normally this box is close to the beginning or end of the file, though this is not required.
59 for (Box box : boxes) {
60 if (box instanceof MovieHeaderBox) {
61 return (MovieHeaderBox) box;
SampleDescriptionBox.java 28 * The information stored in the sample description box after the entry-count is both track-type specific as
74 for (Box box : boxes) {
75 if (box instanceof SampleEntry) {
76 return (SampleEntry) box;
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AbstractAppleMetaDataBox.java 7 import com.coremedia.iso.boxes.Box;
25 public List<Box> getBoxes() {
26 return Collections.singletonList((Box) appleDataBox);
29 public void setBoxes(List<Box> boxes) {
33 throw new IllegalArgumentException("This box only accepts one AppleDataBox child");
37 public <T extends Box> List<T> getBoxes(Class<T> clazz) {
41 public <T extends Box> List<T> getBoxes(Class<T> clazz, boolean recursive) {
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
RigidBodyControl.java 25 import com.jme3.scene.shape.Box;
47 * @param mass When not 0, a HullCollisionShape is generated, otherwise a MeshCollisionShape is used. For geometries with box or sphere meshes the proper box or sphere collision shape is used.
124 } else if (mesh instanceof Box) {
125 collisionShape = new BoxCollisionShape(new Vector3f(((Box) mesh).getXExtent(), ((Box) mesh).getYExtent(), ((Box) mesh).getZExtent()));
  /external/jmonkeyengine/engine/src/test/jme3test/water/
TestSimpleWater.java 44 import com.jme3.scene.shape.Box;
100 Box b = new Box(1, 1, 1);
101 Geometry geom = new Geometry("Box", b);
  /external/jmonkeyengine/engine/src/test/jme3test/collision/
TestTriangleCollision.java 48 import com.jme3.scene.shape.Box;
64 Mesh mesh1 = new Box(0.5f, 0.5f, 0.5f);
65 geom1 = new Geometry("Box", mesh1);

Completed in 3687 milliseconds

1 23 4 5 6