Searched defs:horizontal (Results 1 - 25 of 54) sorted by path

123

/external/chromium_org/ash/shelf/
H A Dshelf_layout_manager.cc289 // The height of the ShelfView for a horizontal shelf and the width of
409 bool horizontal = IsHorizontalAlignment(); local
410 gesture_drag_amount_ += horizontal ? gesture.details().scroll_y() :
417 if (horizontal && gesture.details().scroll_y() < 0) {
433 bool horizontal = IsHorizontalAlignment(); local
442 (horizontal ? bounds.height() : bounds.width());
461 should_change = horizontal ? fabs(gesture.details().velocity_y()) > 0 :
871 bool horizontal = IsHorizontalAlignment(); local
903 if (horizontal) {
H A Dshelf_layout_manager.h207 T PrimaryAxisValue(T horizontal, T vertical) const { argument
208 return IsHorizontalAlignment() ? horizontal : vertical;
211 // Is the shelf's alignment horizontal?
/external/chromium_org/ash/wm/panels/
H A Dpanel_layout_manager.cc607 bool horizontal = alignment == SHELF_ALIGNMENT_TOP || local
612 int panel_end_bounds = horizontal ?
659 int icon_start = horizontal ? icon_origin.x() : icon_origin.y();
660 int icon_end = icon_start + (horizontal ? icon_bounds.width() :
662 position_info.major_length = horizontal ?
717 if (horizontal) {
767 bool horizontal = alignment == SHELF_ALIGNMENT_TOP || local
783 window_ordering.insert(std::make_pair(horizontal ?
815 bool horizontal = alignment == SHELF_ALIGNMENT_TOP || local
837 int slide_distance = horizontal
[all...]
/external/chromium_org/cc/blink/
H A Dweb_layer_impl.cc290 void WebLayerImpl::setUserScrollable(bool horizontal, bool vertical) { argument
291 layer_->SetUserScrollable(horizontal, vertical);
/external/chromium_org/cc/layers/
H A Dlayer.cc689 void Layer::SetUserScrollable(bool horizontal, bool vertical) { argument
691 if (user_scrollable_horizontal_ == horizontal &&
694 user_scrollable_horizontal_ = horizontal;
/external/chromium_org/chrome/browser/ui/autofill/
H A Ddata_model_wrapper_unittest.cc98 base::string16 vertical, horizontal; local
100 AutofillProfileWrapper(&profile).GetDisplayText(&horizontal, &vertical));
105 horizontal);
142 &horizontal, &vertical));
152 // TODO(estade): we should also verify that |horizontal| is correct, but right
/external/chromium_org/components/cloud_devices/common/
H A Dprinter_description.cc425 Dpi::Dpi() : horizontal(0), vertical(0) {
428 Dpi::Dpi(int32 horizontal, int32 vertical) argument
429 : horizontal(horizontal), vertical(vertical) {
433 return horizontal > 0 && vertical > 0;
437 return horizontal == other.horizontal && vertical == other.vertical;
678 if (!dict.GetInteger(kDpiHorizontal, &option->horizontal) ||
686 dict->SetInteger(kDpiHorizontal, option.horizontal);
H A Dprinter_description.h91 Dpi(int32 horizontal, int32 vertical);
97 int32 horizontal; member in struct:cloud_devices::printer::Dpi
/external/chromium_org/content/shell/renderer/test_runner/
H A Devent_sender.cc2164 double horizontal; local
2165 if (!args->GetNext(&horizontal)) {
2194 event->wheelTicksX = static_cast<float>(horizontal);
/external/chromium_org/pdf/
H A Ddraw_utils.cc99 uint32 start_color, uint32 end_color, bool horizontal) {
101 colors.resize(horizontal ? rc.width() : rc.height());
111 if (horizontal) {
140 bool horizontal,
150 start_color, end_color, horizontal);
98 GradientFill(pp::ImageData* image, const pp::Rect& rc, uint32 start_color, uint32 end_color, bool horizontal) argument
134 GradientFill(pp::Instance* instance, pp::ImageData* image, const pp::Rect& dirty_rc, const pp::Rect& gradient_rc, uint32 start_color, uint32 end_color, bool horizontal, uint8 transparency) argument
/external/chromium_org/ppapi/cpp/
H A Drect.cc33 void Rect::Offset(int32_t horizontal, int32_t vertical) { argument
34 rect_.point.x += horizontal;
137 void FloatRect::Offset(float horizontal, float vertical) { argument
138 rect_.point.x += horizontal;
H A Drect.h58 /// @param[in] x An int32_t value representing a horizontal coordinate
220 /// in a horizontal line in the rectangle:
231 /// in a horizontal line in the rectangle:
259 /// Inset() shrinks the rectangle by a horizontal and vertical
262 /// @param[in] horizontal An int32_t value representing a horizontal
266 void Inset(int32_t horizontal, int32_t vertical) { argument
267 Inset(horizontal, vertical, horizontal, vertical);
283 /// Offset() moves the rectangle by a horizontal an
651 Inset(float horizontal, float vertical) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSGradientValue.cpp439 FloatPoint CSSGradientValue::computeEndPoint(CSSPrimitiveValue* horizontal, CSSPrimitiveValue* vertical, const CSSToLengthConversionData& conversionData, const IntSize& size) argument
443 if (horizontal)
444 result.setX(positionFromValue(horizontal, conversionData, size, true));
997 // Compute horizontal radius of ellipse with center at 0,0 which passes through p, and has
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp6206 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseDeprecatedGradientPoint(CSSParserValue* a, bool horizontal) argument
6210 if ((a->id == CSSValueLeft && horizontal)
6211 || (a->id == CSSValueTop && !horizontal))
6213 else if ((a->id == CSSValueRight && horizontal)
6214 || (a->id == CSSValueBottom && !horizontal))
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DTextPainter.cpp24 TextPainter::TextPainter(GraphicsContext* context, const Font& font, const TextRun& run, const FloatPoint& textOrigin, const FloatRect& textBounds, bool horizontal) argument
30 , m_horizontal(horizontal)
72 void TextPainter::updateGraphicsContext(GraphicsContext* context, const Style& textStyle, bool horizontal, GraphicsContextStateSaver& stateSaver) argument
99 context->setDrawLooper(textStyle.shadow->createDrawLooper(DrawLooperBuilder::ShadowIgnoresAlpha, horizontal));
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp351 // Only one unit can be non-auto in the horizontal direction and
980 bool horizontal = isHorizontalWritingMode(); local
982 int leftWidth = (!horizontal || includeLogicalLeftEdge) ? borderLeftWidth() : 0;
983 int rightWidth = (!horizontal || includeLogicalRightEdge) ? borderRightWidth() : 0;
984 int topWidth = (horizontal || includeLogicalLeftEdge) ? borderTopWidth() : 0;
985 int bottomWidth = (horizontal || includeLogicalRightEdge) ? borderBottomWidth() : 0;
1722 bool horizontal = isHorizontalWritingMode(); local
1728 horizontal || includeLogicalLeftEdge);
1734 !horizontal || includeLogicalRightEdge);
1740 horizontal || includeLogicalRightEdg
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegListSource.cpp82 SVGPathSegLinetoHorizontal* horizontal = static_cast<SVGPathSegLinetoHorizontal*>(m_segment.get()); local
83 x = horizontal->x();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCSSMetadata.js220 "horizontal", "vertical", "inline-axis", "block-axis"
237 "lr", "rl", "tb", "lr-tb", "rl-tb", "tb-rl", "horizontal-tb", "vertical-rl", "vertical-lr", "horizontal-bt"
361 "none", "horizontal"
537 "none", "both", "horizontal", "vertical"
749 "-webkit-border-horizontal-spacing": 1,
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DRegionTracker.cpp439 // horizontal is the larger of the two rectangles to the left or to the right of |rect| and inside opaqueRect.
441 SkRect horizontal = opaqueRect; local
443 horizontal.fBottom = rect.fTop;
445 horizontal.fTop = rect.fBottom;
452 if ((long)horizontal.width() * (long)horizontal.height() > (long)vertical.width() * (long)vertical.height())
453 opaqueRect = horizontal;
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollView.h78 // Functions for setting and retrieving the scrolling mode in each axis (horizontal/vertical). The mode has values of
87 ScrollbarMode horizontalScrollbarMode() const { ScrollbarMode horizontal, vertical; scrollbarModes(horizontal, vertical); return horizontal; } local
88 ScrollbarMode verticalScrollbarMode() const { ScrollbarMode horizontal, vertical; scrollbarModes(horizontal, vertical); return vertical; } local
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPluginScrollbarImpl.cpp226 bool horizontal = m_scrollbar->orientation() == HorizontalScrollbar; local
228 dir = horizontal ? ScrollRight : ScrollDown;
230 dir = horizontal ? ScrollLeft : ScrollUp;
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dtttypes.h342 /* horiBearingX :: The horizontal left bearing. */
344 /* horiBearingY :: The horizontal top bearing. */
346 /* horiAdvance :: The horizontal advance. */
410 /* bitmap strike, for either a horizontal or vertical layout. */
432 /* horizontal advance - */
551 /* hori :: The line metrics for horizontal layouts. */
559 /* x_ppem :: The number of horizontal pixels per EM. */
566 /* flags :: Is this a vertical or horizontal strike? For */
629 /* hori :: The horizontal line metrics. */
633 /* x_ppem :: The number of horizontal pixel
1188 TT_HoriHeader horizontal; /* TrueType horizontal header */ member in struct:TT_FaceRec_
[all...]
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffgload.c1873 FT_Fixed dx = 0, dy = 0; /* used in horizontal/vertical */
1875 FT_Int horizontal, count; local
1890 /* XXX: figure out whether this is supposed to be a horizontal */
1909 horizontal = ( dx > dy );
1921 if ( horizontal )
2745 ( face->horizontal.Ascender - face->horizontal.Descender );
2976 metrics->vertAdvance = (FT_Pos)( face->horizontal.Ascender -
2977 face->horizontal.Descender );
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-layout-gpos-table.hh52 xPlacement = 0x0001u, /* Includes horizontal adjustment for placement */
54 xAdvance = 0x0004u, /* Includes horizontal adjustment for advance */
56 xPlaDevice = 0x0010u, /* Includes horizontal Device table for placement */
58 xAdvDevice = 0x0040u, /* Includes horizontal Device table for advance */
74 * for horizontal writing) */
79 * horizontal placement--measured from
85 * horizontal advance--measured from
105 hb_bool_t horizontal = HB_DIRECTION_IS_HORIZONTAL (direction); local
112 if (likely (horizontal)) glyph_pos.x_advance += font->em_scale_x (get_short (values));
117 if (unlikely (!horizontal)) glyph_po
[all...]

Completed in 8610 milliseconds

123