Searched defs:horizontal (Results 1 - 11 of 11) sorted by relevance

/external/chromium/base/gfx/
H A Drect.h75 // Shrink the rectangle by a horizontal and vertical distance on all sides.
76 void Inset(int horizontal, int vertical) { argument
77 Inset(horizontal, vertical, horizontal, vertical);
83 // Move the rectangle by a horizontal and vertical distance.
84 void Offset(int horizontal, int vertical);
H A Drect.cc113 void Rect::Offset(int horizontal, int vertical) { argument
114 set_x(x() + horizontal);
/external/webkit/WebCore/platform/
H A DScrollView.h81 // Methods for setting and retrieving the scrolling mode in each axis (horizontal/vertical). The mode has values of
90 ScrollbarMode horizontalScrollbarMode() const { ScrollbarMode horizontal, vertical; scrollbarModes(horizontal, vertical); return horizontal; } local
91 ScrollbarMode verticalScrollbarMode() const { ScrollbarMode horizontal, vertical; scrollbarModes(horizontal, vertical); return vertical; } local
293 void platformScrollbarModes(ScrollbarMode& horizontal, ScrollbarMode& vertical) const;
H A DScrollView.cpp993 void ScrollView::platformScrollbarModes(ScrollbarMode& horizontal, ScrollbarMode& vertical) const argument
995 horizontal = ScrollbarAuto;
/external/webkit/WebCore/platform/wx/
H A DScrollViewWx.cpp249 // horizontal scrollbar
303 void ScrollView::platformScrollbarModes(ScrollbarMode& horizontal, ScrollbarMode& vertical) const argument
305 horizontal = m_data->hScrollbarMode;
/external/webkit/WebKitTools/DumpRenderTree/gtk/
H A DEventSender.cpp340 int horizontal = (int)JSValueToNumber(context, arguments[0], exception); local
346 g_return_val_if_fail((!vertical || !horizontal), JSValueMakeUndefined(context));
355 if (horizontal < 0)
357 else if (horizontal > 0)
/external/chromium/third_party/icu/source/common/
H A Dtriedict.cpp592 * calculates an equal link node ID of a horizontal node
593 * @hnode The horizontal node containing the equal link
608 * calculates an equal link node ID of a horizontal node
609 * @hnode The horizontal node containing the equal link
693 // handle root node with only kEqualOverflows flag: assume horizontal node without parent
1066 fprintf(stderr, "ERROR: horizontal link %d, logical node %d maps to physical node zero\n",
1103 fprintf(stderr, "ERROR: horizontal link %d, logical node %d exceeds maximum possible node ID value\n",
1194 UBool horizontal = (node->low != NULL || node->high != NULL); local
1195 if (horizontal) {
1261 // Walk the set of peers at the same level, to build a horizontal nod
[all...]
/external/freetype/src/cff/
H A Dcffgload.c1848 FT_Fixed dx = 0, dy = 0; /* used in horizontal/vertical */
1850 FT_Int horizontal, count; local
1865 /* XXX: figure out whether this is supposed to be a horizontal */
1884 horizontal = ( dx > dy );
1896 if ( horizontal )
2889 metrics->vertAdvance = (FT_Pos)( face->horizontal.Ascender -
2890 face->horizontal.Descender );
/external/icu4c/common/
H A Dtriedict.cpp734 fprintf(stderr, "ERROR: horizontal link %d, logical node %d maps to physical node zero\n",
803 UBool horizontal = (node->low != NULL || node->high != NULL); local
804 if (horizontal) {
848 // Walk the set of peers at the same level, to build a horizontal node.
1186 // Convert a horizontal node (or subarray thereof) into a ternary subtrie
/external/freetype/include/freetype/internal/
H A Dtttypes.h423 /* horiBearingX :: The horizontal left bearing. */
425 /* horiBearingY :: The horizontal top bearing. */
427 /* horiAdvance :: The horizontal advance. */
491 /* bitmap strike, for either a horizontal or vertical layout. */
513 /* horizontal advance - */
632 /* hori :: The line metrics for horizontal layouts. */
640 /* x_ppem :: The number of horizontal pixels per EM. */
647 /* flags :: Is this a vertical or horizontal strike? For */
710 /* hori :: The horizontal line metrics. */
714 /* x_ppem :: The number of horizontal pixel
1269 TT_HoriHeader horizontal; /* TrueType horizontal header */ member in struct:TT_FaceRec_
[all...]
/external/webkit/WebCore/css/
H A DCSSParser.cpp1515 case CSSPropertyResize: // none | both | horizontal | vertical | auto
4025 // The vertical rule should match the horizontal rule if unspecified.
4234 static PassRefPtr<CSSPrimitiveValue> parseGradientPoint(CSSParserValue* a, bool horizontal) argument
4238 if ((equalIgnoringCase(a->string, "left") && horizontal) ||
4239 (equalIgnoringCase(a->string, "top") && !horizontal))
4241 else if ((equalIgnoringCase(a->string, "right") && horizontal) ||
4242 (equalIgnoringCase(a->string, "bottom") && !horizontal))

Completed in 133 milliseconds