Searched refs:box (Results 26 - 50 of 653) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/print_preview/common/
H A Dsearch_box.css5 .search-box {
10 .search-box-icon {
21 .search-box-input {
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableLengthBoxAndBool.cpp41 return AnimatableValue::usesDefaultInterpolation(lengthBox->box(), box());
49 AnimatableValue::interpolate(box(), lengthBox->box(), fraction),
58 return box()->equals(lengthBox->box()) && flag() == lengthBox->flag();
H A DAnimatableLengthBoxAndBool.h41 static PassRefPtrWillBeRawPtr<AnimatableLengthBoxAndBool> create(PassRefPtrWillBeRawPtr<AnimatableValue> box, bool flag) argument
43 return adoptRefWillBeNoop(new AnimatableLengthBoxAndBool(box, flag));
45 const AnimatableValue* box() const { return m_box.get(); } function in class:blink::FINAL
55 AnimatableLengthBoxAndBool(PassRefPtrWillBeRawPtr<AnimatableValue> box, bool flag) argument
56 : m_box(box)
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Ddrawing_container.css7 -webkit-box-flex: 1;
14 -webkit-box-flex: 1;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLineBoxList.cpp50 void RenderLineBoxList::appendLineBox(InlineFlowBox* box) argument
55 m_firstLineBox = m_lastLineBox = box;
57 m_lastLineBox->setNextLineBox(box);
58 box->setPreviousLineBox(m_lastLineBox);
59 m_lastLineBox = box;
77 void RenderLineBoxList::extractLineBox(InlineFlowBox* box) argument
81 m_lastLineBox = box->prevLineBox();
82 if (box == m_firstLineBox)
84 if (box->prevLineBox())
85 box
93 attachLineBox(InlineFlowBox* box) argument
112 removeLineBox(InlineFlowBox* box) argument
186 lineIntersectsDirtyRect(RenderBoxModelObject* renderer, InlineFlowBox* box, const PaintInfo& paintInfo, const LayoutPoint& offset) const argument
253 RootInlineBox* box = 0; local
[all...]
H A DRenderText.cpp224 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
225 box->remove();
241 void RenderText::extractTextBox(InlineTextBox* box) argument
245 m_lastTextBox = box->prevTextBox();
246 if (box == m_firstTextBox)
248 if (box->prevTextBox())
249 box
257 attachTextBox(InlineTextBox* box) argument
276 removeTextBox(InlineTextBox* box) argument
332 localQuadForTextBox(InlineTextBox* box, unsigned start, unsigned end, bool useSelectionHeight) argument
389 ellipsisRectForBox(InlineTextBox* box, unsigned startPos, unsigned endPos) argument
473 lineDirectionPointFitsInBox(int pointLineDirection, InlineTextBox* box, ShouldAffinityBeDownstream& shouldAffinityBeDownstream) argument
508 createPositionWithAffinityForBox(const InlineBox* box, int offset, ShouldAffinityBeDownstream shouldAffinityBeDownstream) argument
526 createPositionWithAffinityForBoxAfterAdjustingOffsetForBiDi(const InlineTextBox* box, int offset, ShouldAffinityBeDownstream shouldAffinityBeDownstream) argument
1458 positionLineBox(InlineBox* box) argument
1630 InlineTextBox* box = firstTextBox(); local
1641 InlineTextBox* box = lastTextBox(); local
[all...]
H A DRootInlineBox.cpp73 EllipsisBox* box = gEllipsisBoxMap->take(this); local
74 box->setParent(0);
75 box->destroy();
118 // Create an ellipsis box.
135 // of that glyph. Mark all of the objects that intersect the ellipsis box as not painting (as being
191 void RootInlineBox::childRemoved(InlineBox* box) argument
193 if (&box->renderer() == m_lineBreakObj)
196 for (RootInlineBox* prev = prevRootBox(); prev && prev->lineBreakObj() == &box->renderer(); prev = prev->prevRootBox()) {
327 for (InlineBox* box = firstBox->nextLeafChild(); box; bo
607 ascentAndDescentForBox(InlineBox* box, GlyphOverflowAndFallbackFontsMap& textBoxDataMap, int& ascent, int& descent, bool& affectsAscent, bool& affectsDescent) const argument
709 verticalPositionForBox(InlineBox* box, VerticalPositionCache& verticalPositionCache) argument
[all...]
/external/chromium-trace/trace-viewer/src/tracing/
H A Dtimeline_track_view.css16 -webkit-box-orient: vertical;
17 display: -webkit-box;
29 -webkit-box-flex: 1;
33 .drag-box {
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dbluetooth_pair_device.css11 box-shadow: none;
H A Dmobile_dialogs.css12 -webkit-box-align: center;
13 -webkit-box-pack: center;
15 display: -webkit-box;
48 -webkit-box-align: center;
49 -webkit-box-orient: horizontal;
50 -webkit-box-pack: end;
51 display: -webkit-box;
60 display: -webkit-box;
64 -webkit-box-orient: horizontal;
65 display: -webkit-box;
[all...]
/external/chromium-trace/trace-viewer/src/about_tracing/
H A Dtracing_controller.css7 -webkit-box-align: center;
8 -webkit-box-orient: vertical;
9 -webkit-box-pack: center;
10 display: -webkit-box;
19 background-clip: border-box;
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatBox.h60 FloatBox(const FloatBox& box) argument
61 : m_x(box.x())
62 , m_y(box.y())
63 , m_z(box.z())
64 , m_width(box.width())
65 , m_height(box.height())
66 , m_depth(box.depth())
129 void expandTo(const FloatBox& box) argument
131 expandTo(FloatPoint3D(box.x(), box
134 unionBounds(const FloatBox& box) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_staging.c57 const struct pipe_box *box,
67 tx->base.box = *box;
75 util_staging_resource_template(pt, box->width, box->height, box->depth, &staging_resource_template);
89 sbox.x = box->x;
90 sbox.y = box->y;
91 sbox.z = box->z;
92 sbox.width = box
53 util_staging_transfer_init(struct pipe_context *pipe, struct pipe_resource *pt, unsigned level, unsigned usage, const struct pipe_box *box, boolean direct, struct util_staging_transfer *tx) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_staging.c57 const struct pipe_box *box,
67 tx->base.box = *box;
75 util_staging_resource_template(pt, box->width, box->height, box->depth, &staging_resource_template);
89 sbox.x = box->x;
90 sbox.y = box->y;
91 sbox.z = box->z;
92 sbox.width = box
53 util_staging_transfer_init(struct pipe_context *pipe, struct pipe_resource *pt, unsigned level, unsigned usage, const struct pipe_box *box, boolean direct, struct util_staging_transfer *tx) argument
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dset_as_default_browser.css7 -webkit-box-align: center;
8 -webkit-box-orient: vertical;
9 -webkit-box-pack: start;
13 display: -webkit-box;
24 -webkit-box-orient: vertical;
29 display: -webkit-box;
37 -webkit-box-flex: 1;
83 #metro-action-box button {
97 #metro-action-box button:hover {
98 -webkit-box
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dbox_f.cc46 void BoxF::Union(const BoxF& box) { argument
48 *this = box;
51 if (box.IsEmpty())
53 ExpandTo(box);
60 void BoxF::ExpandTo(const BoxF& box) { argument
61 ExpandTo(box.origin(), gfx::Point3F(box.right(), box.bottom(), box.front()));
/external/chromium_org/cc/layers/
H A Dlayer_utils.cc57 // and converting it to a 3d box, and then we transform or inflate it
60 // At each layer we apply the following transformations to the box:
67 gfx::BoxF box(layer_in.bounds().width(), layer_in.bounds().height(), 0.f);
69 // We want to inflate/transform the box as few times as possible. Each time
70 // we do this, we have to make the box axis aligned again, so if we make many
71 // small adjustments to the box by transforming it repeatedly rather than
103 coalesced_transform.TransformBox(&box);
107 // than doing this via transforms, we'll just shift the box directly.
108 box.set_origin(box
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Dsearch_engine_manager.css14 display: -webkit-box;
28 -webkit-box-align: center;
30 box-sizing: border-box;
31 display: -webkit-box;
36 -webkit-box-flex: 1;
41 box-sizing: border-box;
46 box-sizing: border-box;
[all...]
H A Dstartup_overlay.css19 -webkit-box-flex: 1;
32 background-clip: padding-box;
38 box-sizing: border-box;
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_app_launch_splash.css7 -webkit-box-align: center;
8 -webkit-box-pack: center;
10 display: -webkit-box;
14 -webkit-box-align: center;
15 -webkit-box-orient: vertical;
16 -webkit-box-pack: center;
17 display: -webkit-box;
26 display: -webkit-box;
H A Dscreen_fatal_error.css17 display: -webkit-box;
21 -webkit-box-flex: 1;
/external/fio/
H A Dghelpers.h4 GtkWidget *new_combo_entry_in_frame(GtkWidget *box, const char *label);
5 GtkWidget *new_info_entry_in_frame(GtkWidget *box, const char *label);
6 GtkWidget *new_info_label_in_frame(GtkWidget *box, const char *label);
7 GtkWidget *new_info_entry_in_frame_rgb(GtkWidget *box, const char *label,
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_pipe_blit.c49 SVGA3dCopyBox *box;
87 &box,
96 &box,
101 box->x = dstx;
102 box->y = dsty;
103 box->z = 0;
104 box->w = width;
105 box->h = height;
106 box->d = 1;
107 box
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_blit.c49 SVGA3dCopyBox *box;
87 &box,
96 &box,
101 box->x = dstx;
102 box->y = dsty;
103 box->z = 0;
104 box->w = width;
105 box->h = height;
106 box->d = 1;
107 box
[all...]
/external/chromium_org/third_party/polymer/components/core-scroll-header-panel/
H A Dcore-scroll-header-panel.css22 box-sizing: border-box;
23 -moz-box-sizing: border-box;

Completed in 2338 milliseconds

1234567891011>>