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

1 2 3 4 5 6 7 8 9

  /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/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 54 SkRect box; local
55 box.fLeft = SkScalarDiv(viewBox[0], width);
56 box.fTop = SkScalarDiv(viewBox[1], height);
57 box.fRight = SkScalarDiv(viewBox[2], width);
58 box.fBottom = SkScalarDiv(viewBox[3], height);
59 if (box.fLeft == 0 && box.fTop == 0 &&
60 box.fRight == SK_Scalar1 && box.fBottom == SK_Scalar1)
63 if (box.fLeft != 0)
    [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/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...]
RenderSVGInlineText.cpp 103 InlineTextBox* box = new (renderArena()) SVGInlineTextBox(this); local
104 box->setHasVirtualLogicalHeight();
105 return box;
108 IntRect RenderSVGInlineText::localCaretRect(InlineBox* box, int caretOffset, int*)
110 if (!box->isInlineTextBox())
113 InlineTextBox* textBox = static_cast<InlineTextBox*>(box);
120 int x = box->isLeftToRightDirection() ? rect.x() : rect.maxX();
125 int x = box->isLeftToRightDirection() ? rect.maxX() : rect.x();
132 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_shrinkable_hbox.cc 19 GtkChromeShrinkableHBox* box; member in struct:__anon3224::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...]
gtk_chrome_shrinkable_hbox.h 69 GtkChromeShrinkableHBox* box, gboolean hide_child_directly);
72 GtkChromeShrinkableHBox* box);
74 void gtk_chrome_shrinkable_hbox_pack_start(GtkChromeShrinkableHBox* box,
78 void gtk_chrome_shrinkable_hbox_pack_end(GtkChromeShrinkableHBox* box,
83 GtkChromeShrinkableHBox* box);
  /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();
  /system/media/mca/filterpacks/imageproc/java/
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/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/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...]
RenderText.cpp 189 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
190 box->remove();
203 void RenderText::extractTextBox(InlineTextBox* box)
207 m_lastTextBox = box->prevTextBox();
208 if (box == m_firstTextBox)
210 if (box->prevTextBox())
211 box->prevTextBox()->setNextTextBox(0)
969 InlineTextBox* box; local
1390 InlineTextBox* box = firstTextBox(); local
1401 InlineTextBox* box = lastTextBox(); local
    [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/qemu/android/skin/
rect.h 64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
65 extern void skin_box_minmax_init( SkinBox* box );
66 extern void skin_box_minmax_update( SkinBox* box, SkinRect* rect );
67 extern int skin_box_minmax_to_rect( SkinBox* box, SkinRect* rect );
68 extern void skin_box_from_rect( SkinBox* box, SkinRect* rect );
69 extern void skin_box_to_rect( SkinBox* box, SkinRect* rect );
  /external/skia/src/animator/
SkDrawTextBox.cpp 80 SkTextBox box; local
81 box.setMode((SkTextBox::Mode) mode);
82 box.setSpacingAlign((SkTextBox::SpacingAlign) spacingAlign);
83 box.setBox(fRect);
84 box.setSpacing(fSpacingMul, fSpacingAdd);
86 box.draw(maker.fCanvas, fText.c_str(), fText.size(), *maker.fPaint);
  /external/chromium/chrome/browser/resources/file_manager/css/
file_manager.css 9 -webkit-box-flex: 1;
10 -webkit-box-orient: vertical;
13 display: -webkit-box;
24 -webkit-box-sizing: border-box;
38 -webkit-box-orient: horizontal;
39 -webkit-box-align: center;
40 display: -webkit-box;
47 -webkit-box-orient: horizontal;
48 -webkit-box-flex: 1
    [all...]
  /external/chromium/chrome/browser/resources/options/
password_manager_list.css 40 box-sizing: border-box;
45 -webkit-box-flex: 1;
50 -webkit-box-flex: 1;
56 box-sizing: border-box;
61 -webkit-box-flex: 1;

Completed in 344 milliseconds

1 2 3 4 5 6 7 8 9