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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FontOrientation.h 31 enum FontOrientation { Horizontal, Vertical };
SVGGlyph.h 39 Vertical,
SVGGlyph.cpp 142 case SVGGlyph::Vertical:
SimpleFontData.cpp 63 if (platformData.orientation() == Vertical && !isTextOrientationFallback) {
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 44 RowsAtCompileTime = Direction==Vertical ? RowsPlusOne : MatrixType::RowsAtCompileTime,
75 inline Index rows() const { return m_matrix.rows() + (int(Direction)==Vertical ? 1 : 0); }
80 if( (int(Direction)==Vertical && row==m_matrix.rows())
98 eigen_assert(int(Direction)==Vertical);
106 eigen_assert(int(Direction)==Vertical);
179 Direction==Vertical ? _expression().rows()-1 : _expression().rows(),
182 Direction==Vertical ? HNormalized_SizeMinusOne : 1,
185 Direction==Vertical ? _expression().rows()-1:0,
187 Direction==Vertical ? 1 : _expression().rows(),
189 Direction==Vertical ? _expression().rows()-1 : 1
    [all...]
  /external/eigen/Eigen/src/Core/
VectorwiseOp.h 23 * \tparam Direction indicates the direction of the redux (#Vertical or #Horizontal)
47 RowsAtCompileTime = Direction==Vertical ? 1 : MatrixType::RowsAtCompileTime,
49 MaxRowsAtCompileTime = Direction==Vertical ? 1 : MatrixType::MaxRowsAtCompileTime,
53 TraversalSize = Direction==Vertical ? RowsAtCompileTime : ColsAtCompileTime
80 Index rows() const { return (Direction==Vertical ? 1 : m_matrix.rows()); }
85 if (Direction==Vertical)
93 if (Direction==Vertical)
154 * \param Direction indicates the direction of the redux (#Vertical or #Horizontal)
194 IsVertical = (Direction==Vertical) ? 1 : 0,
202 typedef typename internal::conditional<Direction==Vertical,
    [all...]
Reverse.h 87 ReverseRow = (Direction == Vertical) || (Direction == BothDirections),
92 || ((Direction == Vertical) && IsColMajor)
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
FontMac.cpp 65 paint->setVerticalText(platformData.orientation() == Vertical);
121 if (font->platformData().orientation() == Vertical)
139 if (font->platformData().orientation() == Vertical) {
178 if (font->platformData().orientation() == Vertical)
SimpleFontDataCoreText.cpp 60 if (orientation == Vertical)
GlyphPageTreeNodeMac.cpp 49 // Ideographs don't have a vertical variant or width variants.
88 // We ask CoreText for possible vertical variant glyphs
90 RetainPtr<CFAttributedStringRef> attributedString(AdoptCF, CFAttributedStringCreate(kCFAllocatorDefault, string.get(), fontData->getCFStringAttributes(0, fontData->hasVerticalGlyphs() ? Vertical : Horizontal)));
FontComplexTextMac.cpp 179 if (simpleFontData->platformData().orientation() == Vertical) {
SimpleFontDataMac.mm 85 // The check doesn't look neat but this is what AppKit does for vertical writing...
217 // vertical metrics of their Microsoft counterparts that are the de facto
235 if (platformData().orientation() == Vertical && !isTextOrientationFallback())
374 boundingBox = CTFontGetBoundingRectsForGlyphs(m_platformData.ctFont(), platformData().orientation() == Vertical ? kCTFontVerticalOrientation : kCTFontHorizontalOrientation, &glyph, 0, 1);
  /external/chromium_org/third_party/WebKit/public/platform/
WebScrollbar.h 47 Vertical
  /external/chromium_org/third_party/WebKit/Source/web/
PinchViewports.cpp 75 m_overlayScrollbarVertical->setName("overlay scrollbar vertical");
85 setupScrollbar(WebScrollbar::Vertical);
96 setupScrollbar(WebScrollbar::Vertical);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportArguments.h 127 enum Direction { Horizontal, Vertical };
ViewportArguments.cpp 87 if ((length.type() == Percent && direction == Vertical) || length.type() == ViewportPercentageHeight)
114 float resultMaxHeight = resolveViewportLength(maxHeight, initialViewportSize, Vertical);
115 float resultMinHeight = resolveViewportLength(minHeight, initialViewportSize, Vertical);
  /external/eigen/Eigen/src/Core/util/
Constants.h 204 Vertical,
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceSource.cpp 126 | (fontDescription.orientation() == Vertical ? 4 : 0) | (syntheticBold ? 2 : 0) | (syntheticItalic ? 1 : 0);
CSSSegmentedFontFace.cpp 118 | ((fontDescription.orientation() == Vertical ? 1 : 0) << (FontTraitsMaskWidth + FontWidthVariantWidth))
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackCue.h 102 const String& vertical() const;
226 Vertical,
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGGlyphElement.cpp 93 return SVGGlyph::Vertical;
143 // Spec: The vertical advance after rendering a glyph in vertical orientation.
  /external/eigen/test/
array_reverse.cpp 54 Reverse<MatrixType, Vertical> m1_rv(m1);
55 // Verify that a Reverse in the vertical directions of an expression works
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilder.cpp 543 fontOrientation = Vertical;
547 fontOrientation = Vertical;
553 fontOrientation = Vertical;
  /external/chromium_org/content/renderer/pepper/
ppb_scrollbar_impl.cc 39 bool vertical) {
42 scrollbar->Init(vertical);
54 void PPB_Scrollbar_Impl::Init(bool vertical) {
60 vertical ? WebScrollbar::Vertical : WebScrollbar::Horizontal,
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/harfbuzz/
FontHarfBuzz.cpp 79 bool isVertical = font->platformData().orientation() == Vertical;
85 // In vertical mode, we need to align the left of ideographics to the vertical baseline.
86 // (Note vertical/horizontal are in absolute orientation, that is, here x is vertical.)

Completed in 422 milliseconds

1 2