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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontOrientation.h 31 enum FontOrientation { Horizontal, Vertical };
SVGGlyph.h 40 Vertical,
SVGGlyph.cpp 142 case SVGGlyph::Vertical:
SimpleFontData.cpp 59 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 ? MatrixType::RowsAtCompileTime : MatrixType::ColsAtCompileTime
81 Index rows() const { return (Direction==Vertical ? 1 : m_matrix.rows()); }
86 if (Direction==Vertical)
94 if (Direction==Vertical)
155 * \param Direction indicates the direction of the redux (#Vertical or #Horizontal)
195 IsVertical = (Direction==Vertical) ? 1 : 0,
203 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/platform/fonts/mac/
FontMac.cpp 65 paint->setVerticalText(platformData.orientation() == Vertical);
113 if (font->platformData().orientation() == Vertical)
131 if (font->platformData().orientation() == Vertical) {
168 if (font->platformData().orientation() == Vertical)
SimpleFontDataCoreText.cpp 69 if (orientation == Vertical)
80 // CoreText doesn't have vertical glyphs of surrogate pair characters.
82 // FIXME: We should use vertical glyphs. https://code.google.com/p/chromium/issues/detail?id=340173
90 // Ideographs don't have a vertical variant or width variants.
125 // We ask CoreText for possible vertical variant glyphs
127 RetainPtr<CFAttributedStringRef> attributedString(AdoptCF, CFAttributedStringCreate(kCFAllocatorDefault, string.get(), getCFStringAttributes(0, hasVerticalGlyphs() ? Vertical : Horizontal)));
FontComplexTextMac.cpp 178 if (simpleFontData->platformData().orientation() == Vertical) {
  /external/chromium_org/third_party/WebKit/public/platform/
WebScrollbar.h 47 Vertical
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_EBLC.h 55 SK_OT_BYTE ppemY; //vertical pixels per Em
71 Vertical, // Vertical small glyph metrics
81 static const SK_OT_CHAR Vertical = 1u << 1;
  /external/skia/src/sfnt/
SkOTTable_EBLC.h 55 SK_OT_BYTE ppemY; //vertical pixels per Em
71 Vertical, // Vertical small glyph metrics
81 static const SK_OT_CHAR Vertical = 1u << 1;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportDescription.h 134 enum Direction { Horizontal, Vertical };
ViewportDescription.cpp 66 if (length.type() == Percent && direction == Vertical)
103 float resultMaxHeight = resolveViewportLength(maxHeight, initialViewportSize, Vertical);
104 float resultMinHeight = resolveViewportLength(minHeight, initialViewportSize, Vertical);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGGlyphElement.cpp 88 return SVGGlyph::Vertical;
138 // Spec: The vertical advance after rendering a glyph in vertical orientation.
  /external/eigen/Eigen/src/Core/util/
Constants.h 209 Vertical,
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTCue.h 73 const String& vertical() const;
164 Vertical,
  /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/frame/
PinchViewport.cpp 91 setupScrollbar(WebScrollbar::Vertical);
261 setupScrollbar(WebScrollbar::Vertical);
445 name = "Overlay Scrollbar Vertical Layer";
  /external/chromium_org/v8/test/mjsunit/
whitespaces.js 8 0x000B, // Vertical Tab VT
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilder.cpp 549 fontOrientation = Vertical;
553 fontOrientation = Vertical;
559 fontOrientation = Vertical;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
ResizerWidget.js 52 * Vertical widget resizes height (along y-axis).
53 * @param {boolean} vertical
55 setVertical: function(vertical)
57 this._isVertical = vertical;
  /external/chromium_org/content/renderer/pepper/
ppb_scrollbar_impl.cc 38 PP_Resource PPB_Scrollbar_Impl::Create(PP_Instance instance, bool vertical) {
40 scrollbar->Init(vertical);
49 void PPB_Scrollbar_Impl::Init(bool vertical) {
55 vertical ? WebScrollbar::Vertical : WebScrollbar::Horizontal,
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
FontHarfBuzz.cpp 112 if (font->platformData().orientation() == Vertical && verticalData) {

Completed in 214 milliseconds

1 2 3