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

1 2 3 4 5 6 7 8 91011

  /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/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-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...]
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/chromium-trace/src/tracing/
profiling_view.css 6 -webkit-box-flex: 1;
7 -webkit-box-orient: vertical;
8 display: -webkit-box;
13 -webkit-box-flex: 1;
14 display: -webkit-box;
18 -webkit-box-orient: vertical;
19 display: -webkit-box;
24 -webkit-box-flex: 1;
overlay.css 6 -webkit-box-align: stretch;
7 -webkit-box-orient: horizontal;
8 -webkit-box-pack: center;
11 display: -webkit-box;
26 -webkit-box-align: stretch;
27 -webkit-box-orient: vertical;
28 -webkit-box-pack: center;
30 display: -webkit-box;
tracing_controller.css 6 -webkit-box-align: center;
7 -webkit-box-orient: vertical;
8 -webkit-box-pack: center;
9 display: -webkit-box;
18 background-clip: border-box;
timeline_view.css 6 -webkit-box-flex: 1;
7 -webkit-box-orient: vertical;
8 display: -webkit-box;
13 display: -webkit-box;
17 display: -webkit-box;
32 -webkit-box-flex: 1;
36 display: -webkit-box;
42 -webkit-box-flex: 1;
43 display: -webkit-box;
48 -webkit-box-flex: 1
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
profiling_view.css 8 -webkit-box-orient: vertical;
9 -webkit-box-flex: 1;
13 display: -webkit-box;
17 display: -webkit-box;
22 display: -webkit-box;
23 -webkit-box-flex: 1;
28 display: -webkit-box;
29 -webkit-box-orient: vertical;
35 -webkit-box-flex: 1;
overlay.css 7 display: -webkit-box;
15 -webkit-box-orient: horizontal;
16 -webkit-box-align: stretch;
17 -webkit-box-pack: center;
29 display: -webkit-box;
30 -webkit-box-orient: vertical;
31 -webkit-box-align: stretch;
32 -webkit-box-pack: center;
timeline_view.css 8 -webkit-box-orient: vertical;
9 -webkit-box-flex: 1;
10 display: -webkit-box;
14 display: -webkit-box;
15 -webkit-box-flex: 1;
20 -webkit-box-flex: 1;
timeline.css 10 .timeline-drag-box {
18 display: -webkit-box;
19 -webkit-box-orient: vertical;
29 display: -webkit-box;
30 -webkit-box-orient: horizontal;
31 -webkit-box-align: stretch;
47 -webkit-box-flex: 1;
52 -webkit-box-flex: 1;
tab_control.css 7 display: -webkit-box;
8 -webkit-box-orient: vertical;
9 -webkit-box-pack: start;
22 display: -webkit-box;
23 -webkit-box-orient: horizontal;
24 -webkit-box-pack: start;
28 -webkit-box-flex: 1;
29 display: -webkit-box;
30 -webkit-box-orient: vertical;
47 background-clip: border-box;
    [all...]
tracing_controller.css 8 display: -webkit-box;
11 -webkit-box-orient: vertical;
12 -webkit-box-pack: center;
13 -webkit-box-align: center;
28 background-clip: border-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/editing/
VisiblePosition.cpp 115 InlineBox* box; local
117 p.getInlineBoxAndOffset(m_affinity, primaryDirection, box, offset);
118 if (!box)
121 RenderObject* renderer = box->renderer();
124 if ((renderer->isReplaced() || renderer->isBR()) && offset == box->caretRightmostOffset())
125 return box->isLeftToRightDirection() ? previousVisuallyDistinctCandidate(m_deepPosition) : nextVisuallyDistinctCandidate(m_deepPosition);
127 offset = box->isLeftToRightDirection() ? renderer->previousOffset(offset) : renderer->nextOffset(offset);
129 int caretMinOffset = box->caretMinOffset();
130 int caretMaxOffset = box->caretMaxOffset();
135 if (box->isLeftToRightDirection() ? offset < caretMinOffset : offset > caretMaxOffset)
266 InlineBox* box; local
    [all...]
  /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...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_shrinkable_hbox.cc 19 GtkChromeShrinkableHBox* box; member in struct:__anon3620::SizeAllocateData
66 gtk_box_query_child_packing(GTK_BOX(data->box), child, NULL, NULL,
90 if (data->box->hide_child_directly || child_allocation.width <= 1)
135 static void gtk_chrome_shrinkable_hbox_init(GtkChromeShrinkableHBox* box) {
136 box->hide_child_directly = FALSE;
137 box->children_width_requisition = 0;
144 GtkChromeShrinkableHBox* box = GTK_CHROME_SHRINKABLE_HBOX(object); local
149 box, g_value_get_boolean(value));
161 GtkChromeShrinkableHBox* box = GTK_CHROME_SHRINKABLE_HBOX(object); local
165 g_value_set_boolean(value, box->hide_child_directly)
175 GtkChromeShrinkableHBox* box = GTK_CHROME_SHRINKABLE_HBOX(widget); local
    [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();
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DrawRectFilter.java 74 addMaskedInputPort("box", ObjectFormat.fromClass(Quad.class, FrameFormat.TARGET_SIMPLE));
92 Frame boxFrame = pullInput("box");
94 // Get the box
95 Quad box = (Quad)boxFrame.getObjectValue(); local
96 box = box.scaled(2.0f).translated(-1.0f, -1.0f);
103 renderBox(box);
112 private void renderBox(Quad box) {
117 float[] vertexValues = { box.p0.x, box.p0.y
    [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/webkit/Source/WebCore/rendering/
RootInlineBox.cpp 70 EllipsisBox* box = gEllipsisBoxMap->take(this); local
71 box->setParent(0);
72 box->destroy(arena);
105 // Create an ellipsis box.
122 // of that glyph. Mark all of the objects that intersect the ellipsis box as not painting (as being
212 void RootInlineBox::childRemoved(InlineBox* box)
214 if (box->renderer() == m_lineBreakObj)
217 for (RootInlineBox* prev = prevRootBox(); prev && prev->lineBreakObj() == box->renderer(); prev = prev->prevRootBox()) {
337 for (InlineBox* box = firstBox->nextLeafChild(); box; box = box->nextLeafChild())
    [all...]
RenderLineBoxList.cpp 52 void RenderLineBoxList::appendLineBox(InlineFlowBox* box)
57 m_firstLineBox = m_lastLineBox = box;
59 m_lastLineBox->setNextLineBox(box);
60 box->setPreviousLineBox(m_lastLineBox);
61 m_lastLineBox = box;
79 void RenderLineBoxList::extractLineBox(InlineFlowBox* box)
83 m_lastLineBox = box->prevLineBox();
84 if (box == m_firstLineBox)
86 if (box->prevLineBox())
87 box->prevLineBox()->setNextLineBox(0)
335 RootInlineBox* box = 0; local
    [all...]
  /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");

Completed in 363 milliseconds

1 2 3 4 5 6 7 8 91011