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

1 2 3 4 5 6

  /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...]
sandbox-systrace.c 80 struct ssh_sandbox *box; local
84 box = xcalloc(1, sizeof(*box));
87 box->child_sock = s[0];
88 box->parent_sock = s[1];
89 box->systrace_fd = -1;
90 box->child_pid = 0;
92 return box;
96 ssh_sandbox_child(struct ssh_sandbox *box)
100 close(box->parent_sock)
    [all...]
  /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/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();
RenderMathMLSquareRoot.cpp 85 RenderBoxModelObject* box = toRenderBoxModelObject(current); local
87 // Check to see if this box has a larger height
88 if (box->offsetHeight() > maxHeight)
89 maxHeight = box->offsetHeight();
90 width += box->offsetWidth();
173 RenderBoxModelObject* box = toRenderBoxModelObject(current); local
175 if (box->offsetHeight() > maxHeight)
176 maxHeight = box->offsetHeight();
178 box->style()->setVerticalAlign(BASELINE);
RenderMathMLSubSup.cpp 189 RenderBoxModelObject* box = toRenderBoxModelObject(base); local
191 int topAdjust = (m_scripts->offsetHeight() - box->offsetHeight()) / 2;
196 return topAdjust + box->baselinePosition(AlphabeticBaseline, firstLine, direction, linePositionMode) + static_cast<int>((zoomFactor > 1.25 ? 2 : 3) * zoomFactor);
201 RenderBoxModelObject* box = toRenderBoxModelObject(base); local
202 baseline = box->baselinePosition(AlphabeticBaseline, firstLine, direction, linePositionMode);
RenderMathMLUnderOver.cpp 114 RenderBoxModelObject* box = toRenderBoxModelObject(obj); local
115 return box->offsetHeight();
157 // FIXME: bases that ascend higher than the line box intrude into the over
209 // FIXME: bases that ascend higher than the line box intrude into the over
  /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;
  /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 );
  /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 1872 milliseconds

1 2 3 4 5 6