HomeSort by relevance Sort by last modified time
    Searched defs:box (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/CodeGenCXX/
virtual-destructor-synthesis.cpp 3 struct box { struct
4 virtual ~box();
7 struct pile_box : public box {
8 pile_box(box *);
11 pile_box::pile_box(box *pp)
  /external/webkit/LayoutTests/fast/events/touch/script-tests/
document-create-touch.js 5 var box = document.createElement("div"); variable
6 box.id = "box";
7 box.style.width = "100px";
8 box.style.height = "100px";
9 document.body.appendChild(box);
11 var target = document.getElementById("box");
14 shouldBe("touch.target", "box");
  /external/openssh/
sandbox-null.c 44 struct ssh_sandbox *box; local
50 box = xcalloc(1, sizeof(*box));
51 return box;
55 ssh_sandbox_child(struct ssh_sandbox *box)
61 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
63 free(box);
67 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
sandbox-darwin.c 45 struct ssh_sandbox *box; local
52 box = xcalloc(1, sizeof(*box));
53 box->child_pid = 0;
55 return box;
59 ssh_sandbox_child(struct ssh_sandbox *box)
86 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
88 free(box);
93 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
95 box->child_pid = child_pid
    [all...]
sandbox-rlimit.c 47 struct ssh_sandbox *box; local
54 box = xcalloc(1, sizeof(*box));
55 box->child_pid = 0;
57 return box;
61 ssh_sandbox_child(struct ssh_sandbox *box)
81 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
83 free(box);
88 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
90 box->child_pid = child_pid
    [all...]
  /external/skia/legacy/src/animator/
SkDrawTextBox.cpp 72 SkTextBox box; local
73 box.setMode((SkTextBox::Mode) mode);
74 box.setSpacingAlign((SkTextBox::SpacingAlign) spacingAlign);
75 box.setBox(fRect);
76 box.setSpacing(fSpacingMul, fSpacingAdd);
78 box.draw(maker.fCanvas, fText.c_str(), fText.size(), *maker.fPaint);
  /external/skia/src/animator/
SkDrawTextBox.cpp 72 SkTextBox box; local
73 box.setMode((SkTextBox::Mode) mode);
74 box.setSpacingAlign((SkTextBox::SpacingAlign) spacingAlign);
75 box.setBox(fRect);
76 box.setSpacing(fSpacingMul, fSpacingAdd);
78 box.draw(maker.fCanvas, fText.c_str(), fText.size(), *maker.fPaint);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
AbstractBoxParser.java 18 import com.coremedia.iso.boxes.Box;
31 * This BoxParser handles the basic stuff like reading size and extracting box type.
37 public abstract Box createBox(String type, byte[] userType, String parent);
40 * Parses the next size and type, creates a box instance and parses the box's content.
43 * @param parent the current box's parent (null if no parent)
44 * @return the box just parsed
47 public Box parseBox(ReadableByteChannel byteChannel, ContainerBox parent) throws IOException {
74 throw new RuntimeException("Only FileChannel inputs may use size == 0 (box reaches to the end of file)");
87 Box box = createBox(type, usertype, parent.getType()) local
    [all...]
IsoFile.java 20 import com.coremedia.iso.boxes.Box;
31 * The most upper container for ISO Boxes. It is a container box that is a file.
85 Box box = boxParser.parseBox(byteChannel, this); local
86 if (box != null) {
87 // System.err.println(box.getType());
88 boxes.add(box);
149 for (Box box : boxes) {
150 size += box.getSize()
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
PlaceholderAssets.java 10 import com.jme3.scene.shape.Box;
57 Box box = new Box(1, 1, 1); local
58 Geometry geom = new Geometry("placeholder", box);
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestHDR.java 40 import com.jme3.scene.shape.Box;
54 Box boxMesh = new Box(Vector3f.ZERO, 1, 1, 1);
55 Geometry box = new Geometry("Box", boxMesh); local
58 // box.setMaterial(mat);
62 box.setMaterial(mat);
64 return box;
  /external/skia/src/svg/
SkSVGSVG.cpp 46 SkRect box; local
47 box.fLeft = SkScalarDiv(viewBox[0], width);
48 box.fTop = SkScalarDiv(viewBox[1], height);
49 box.fRight = SkScalarDiv(viewBox[2], width);
50 box.fBottom = SkScalarDiv(viewBox[3], height);
51 if (box.fLeft == 0 && box.fTop == 0 &&
52 box.fRight == SK_Scalar1 && box.fBottom == SK_Scalar1)
55 if (box.fLeft != 0)
    [all...]
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLBlock.h 58 RenderBoxModelObject* box = toRenderBoxModelObject(object); local
59 return box->offsetHeight();
67 const RenderBoxModelObject* box = toRenderBoxModelObject(object); local
68 return box->offsetHeight();
76 RenderBoxModelObject* box = toRenderBoxModelObject(object); local
77 return box->offsetWidth();
85 const RenderBoxModelObject* box = toRenderBoxModelObject(object); local
86 return box->offsetWidth();
RenderMathMLRow.cpp 51 // Check to see if this box has a larger height
55 RenderBoxModelObject* box = toRenderBoxModelObject(current); local
56 // Check to see if this box has a larger height
57 if (box->offsetHeight() > maxHeight)
58 maxHeight = box->offsetHeight();
91 RenderBoxModelObject* box = toRenderBoxModelObject(current); local
92 // Check to see if this box has a larger height.
93 if (box->offsetHeight() > maxHeight)
94 maxHeight = box->offsetHeight();
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGInline.cpp 41 InlineFlowBox* box = new (renderArena()) SVGInlineFlowBox(this); local
42 box->setHasVirtualLogicalHeight();
43 return box;
92 for (InlineFlowBox* box = firstLineBox(); box; box = box->nextLineBox())
93 quads.append(localToAbsoluteQuad(FloatRect(textBoundingBox.x() + box->x(), textBoundingBox.y() + box->y(), box->logicalWidth(), box->logicalHeight())))
    [all...]
RenderSVGModelObject.cpp 61 // Copied from RenderBox, this method likely requires further refactoring to work easily for both SVG and CSS Box Model content.
66 IntRect box = enclosingIntRect(repaintRectInLocalCoordinates()); local
67 adjustRectForOutlineAndShadow(box);
69 FloatQuad containerRelativeQuad = localToContainerQuad(FloatRect(box), repaintContainer);
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/provider/
EmailContentSetupUtils.java 66 Mailbox box = new Mailbox(); local
68 box.mDisplayName = name;
69 box.mAccountKey = accountId;
70 box.mSyncKey = "sync-key-" + name;
71 box.mSyncLookback = 2;
72 box.mSyncInterval = Account.CHECK_INTERVAL_NEVER;
73 box.mType = type;
74 box.mServerId = "serverid-" + name;
75 box.mParentServerId = parentBox != null ? parentBox.mServerId : "parent-serverid-" + name;
78 box.save(context)
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
EmailContentSetupUtils.java 66 Mailbox box = new Mailbox(); local
68 box.mDisplayName = name;
69 box.mAccountKey = accountId;
70 box.mSyncKey = "sync-key-" + name;
71 box.mSyncLookback = 2;
72 box.mSyncInterval = Account.CHECK_INTERVAL_NEVER;
73 box.mType = type;
74 box.mServerId = "serverid-" + name;
75 box.mParentServerId = parentBox != null ? parentBox.mServerId : "parent-serverid-" + name;
78 box.save(context)
    [all...]
  /external/clang/test/SemaCXX/
warn-unused-value.cpp 5 class Box {
13 Box* box = new Box; local
14 box->i; // expected-warning {{expression result unused}}
15 box->j; // expected-warning {{expression result unused}}
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloAssets.java 42 import com.jme3.scene.shape.Box;
62 /** Create a wall (Box with material and texture from test-data) */
63 Box box = new Box(Vector3f.ZERO, 2.5f,2.5f,1.0f); local
64 Spatial wall = new Geometry("Box", box );
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
SampleTableBox.java 25 * If the track that contains the Sample Table Box references no data, then the Sample Table Box does not need
27 * If the track that the Sample Table Box is contained in does reference data, then the following sub-boxes are
29 * Description Box shall contain at least one entry. A Sample Description Box is required because it contains the
30 * data reference index field which indicates which Data Reference Box to use to retrieve the media samples.
32 * Sample Box is optional. If the Sync Sample Box is not present, all samples are sync samples.<br>
34 * Box.
44 for (Box box : boxes)
81 Box box = boxes.get(i); local
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DrawOverlayFilter.java 52 addMaskedInputPort("box", ObjectFormat.fromClass(Quad.class, FrameFormat.TARGET_SIMPLE));
71 Frame boxFrame = pullInput("box");
73 // Get the box
74 Quad box = (Quad)boxFrame.getObjectValue(); local
75 box = box.translated(1.0f, 1.0f).scaled(2.0f);
77 mProgram.setTargetRegion(box);
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureStrokeTest.java 96 // expect a square bounding box, starting at LINE_START_POINT and bounded by
111 OrientedBoundingBox box = line.computeOrientedBoundingBox(); local
113 assertEquals(LineGestureStrokeHelper.LINE_MIDWAY_POINT, box.centerX);
114 assertEquals(LineGestureStrokeHelper.LINE_MIDWAY_POINT, box.centerY);
115 assertEquals(LineGestureStrokeHelper.LINE_ANGLE, box.orientation);
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestAnimationFactory.java 13 import com.jme3.scene.shape.Box;
34 Box box = new Box(1, 1, 1); local
35 Geometry geom = new Geometry("box", box);
40 Box child = new Box(0.5f, 0.5f, 0.5f);
41 Geometry childGeom = new Geometry("box", child);
  /external/jmonkeyengine/engine/src/test/jme3test/tools/
TestTextureAtlas.java 85 Geometry box = new Geometry("displayquad", new Quad(4, 4)); local
86 box.setMaterial(geom.getMaterial());
87 box.setLocalTranslation(0, 1, 3);
88 rootNode.attachChild(box);

Completed in 2136 milliseconds

1 2 3 4 5 6 7