Searched refs:Vertical (Results 1 - 25 of 42) sorted by relevance

12

/external/webkit/Source/WebCore/platform/graphics/
H A DFontOrientation.h31 enum FontOrientation { Horizontal, Vertical }; enumerator in enum:WebCore::FontOrientation
/external/webkit/Source/WebKit/chromium/public/
H A DWebScrollbar.h47 Vertical enumerator in enum:WebKit::WebScrollbar::Orientation
/external/eigen/Eigen/src/Core/
H A DVectorwiseOp.h23 * \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...]
H A DReverse.h87 ReverseRow = (Direction == Vertical) || (Direction == BothDirections),
92 || ((Direction == Vertical) && IsColMajor)
H A DReplicate.h172 (_expression(),Direction==Vertical?factor:1,Direction==Horizontal?factor:1);
H A DDenseBase.h449 typedef VectorwiseOp<Derived, Vertical> ColwiseReturnType;
450 typedef const VectorwiseOp<const Derived, Vertical> ConstColwiseReturnType;
/external/eigen/Eigen/src/Geometry/
H A DHomogeneous.h44 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
[all...]
H A DOrthoMethods.h108 if(Direction==Vertical)
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
H A DFontDataAndroid.cpp60 if (platformData().orientation() == Vertical && lineGap == 0) {
66 if (platformData().orientation() == Vertical && !isTextOrientationFallback()) {
H A DFontAndroid.cpp97 paint->setVerticalText(font->platformData().orientation() == Vertical);
221 if (font->platformData().orientation() == Vertical) {
233 if (font->platformData().orientation() == Vertical) {
270 if (font->platformData().orientation() == Vertical)
279 if (font->platformData().orientation() == Vertical) {
290 if (font->platformData().orientation() == Vertical)
294 if (font->platformData().orientation() == Vertical)
H A DGlyphMapAndroid.cpp107 if (fontData->platformData().orientation() == Vertical && !fontData->hasVerticalGlyphs()) {
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DSimpleFontDataCoreText.cpp50 bool treatLineAsVertical = orientation == Vertical;
H A DGlyphPageTreeNodeMac.cpp73 RetainPtr<CFAttributedStringRef> attributedString(AdoptCF, CFAttributedStringCreate(kCFAllocatorDefault, string.get(), fontData->getCFStringAttributes(0, fontData->hasVerticalGlyphs() ? Vertical : Horizontal)));
H A DSimpleFontDataMac.mm264 if (platformData().orientation() == Vertical && !isTextOrientationFallback()) {
462 boundingBox = CTFontGetBoundingRectsForGlyphs(m_platformData.ctFont(), platformData().orientation() == Vertical ? kCTFontVerticalOrientation : kCTFontHorizontalOrientation, &glyph, 0, 1);
H A DFontMac.mm88 bool isVertical = font->platformData().orientation() == Vertical;
/external/webkit/Source/WebCore/svg/
H A DSVGGlyphElement.h39 Vertical, enumerator in enum:WebCore::SVGGlyphIdentifier::Orientation
H A DSVGGlyphElement.cpp98 return SVGGlyphIdentifier::Vertical;
/external/eigen/Eigen/src/Core/util/
H A DConstants.h204 Vertical, enumerator in enum:Eigen::DirectionType
/external/webkit/Source/WebCore/css/
H A DCSSSegmentedFontFace.cpp92 unsigned hashKey = ((fontDescription.computedPixelSize() + 1) << (FontTraitsMaskWidth + 1)) | ((fontDescription.orientation() == Vertical ? 1 : 0) << FontTraitsMaskWidth) | desiredTraitsMask;
H A DCSSFontFaceSource.cpp120 | (fontDescription.textOrientation() == TextOrientationUpright ? 8 : 0) | (fontDescription.orientation() == Vertical ? 4 : 0) | (syntheticBold ? 2 : 0) | (syntheticItalic ? 1 : 0);
/external/webkit/Source/WebCore/platform/qt/
H A DScrollbarThemeQt.cpp112 opt.orientation = (scrollbar->orientation() == VerticalScrollbar) ? Qt::Vertical : Qt::Horizontal;
201 o.orientation = Qt::Vertical;
/external/eigen/test/
H A Darray_reverse.cpp54 Reverse<MatrixType, Vertical> m1_rv(m1);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DSimpleFontDataLinux.cpp116 if (platformData().orientation() == Vertical && !isTextOrientationFallback()) {
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebview.cpp94 frame->setScrollBarPolicy(Qt::Vertical, m_oldVerticalScrollBarPolicy);
103 m_oldVerticalScrollBarPolicy = frame->scrollBarPolicy(Qt::Vertical);
104 frame->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOff);
/external/webkit/Tools/DumpRenderTree/qt/
H A DEventSenderQt.cpp207 m_mousePos, m_mousePos, y, Qt::NoModifier, Qt::Vertical);
209 event = new QWheelEvent(m_mousePos, m_mousePos, y, m_mouseButtons, Qt::NoModifier, Qt::Vertical);

Completed in 390 milliseconds

12