HomeSort by relevance Sort by last modified time
    Searched defs:isVerticalText (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/rendering/svg/
SVGTextQuery.cpp 40 : isVerticalText(false)
47 bool isVerticalText;
123 queryData->isVerticalText = queryData->textRenderer->style()->svgStyle()->isVerticalWritingMode();
265 data->textLength += queryData->isVerticalText ? fragment.height : fragment.width;
304 data->subStringLength += queryData->isVerticalText ? metrics.height() : metrics.width();
342 if (queryData->isVerticalText)
390 if (queryData->isVerticalText)
477 if (queryData->isVerticalText)
SVGTextChunk.h 49 bool isVerticalText() const { return m_chunkStyle & VerticalText; }
SVGTextChunkBuilder.cpp 170 bool isVerticalText = chunk.isVerticalText();
179 processTextLengthSpacingCorrection(isVerticalText, textLengthShift, fragments, atCharacter);
195 buildSpacingAndGlyphsTransform(isVerticalText, textLengthScale, fragments.first(), spacingAndGlyphsTransform);
218 processTextAnchorCorrection(isVerticalText, textAnchorShift, fragments);
222 void SVGTextChunkBuilder::processTextLengthSpacingCorrection(bool isVerticalText, float textLengthShift, Vector<SVGTextFragment>& fragments, unsigned& atCharacter)
228 if (isVerticalText)
237 void SVGTextChunkBuilder::processTextAnchorCorrection(bool isVerticalText, float textAnchorShift, Vector<SVGTextFragment>& fragments)
243 if (isVerticalText)
250 void SVGTextChunkBuilder::buildSpacingAndGlyphsTransform(bool isVerticalText, float scale, const SVGTextFragment& fragment, AffineTransform& spacingAndGlyphsTransform
    [all...]
SVGRenderTreeAsText.cpp 473 bool isVerticalText = svgStyle->isVerticalWritingMode();
476 if (isVerticalText)
481 if (isVerticalText)
484 } else if (isVerticalText)
492 if (isVerticalText)
  /external/webkit/Source/WebCore/svg/
SVGFont.cpp 158 static inline bool isCompatibleGlyph(const SVGGlyphIdentifier& identifier, bool isVerticalText, const String& language,
166 valid = isVerticalText;
169 valid = !isVerticalText;
243 void walk(const TextRun& run, bool isVerticalText, const String& language, int from, int to)
290 if (identifier.isValid && isCompatibleGlyph(identifier, isVerticalText, language, chars, i, i + identifier.nameLength)) {
409 bool isVerticalText = false; // Holds true for HTML text
415 isVerticalText = isVerticalWritingMode(parentRenderer->style()->svgStyle());
422 runWalker.walk(run, isVerticalText, language, from, to);
496 bool isVerticalText = false;
510 isVerticalText = isVerticalWritingMode(referencingRenderObjectParentStyle->svgStyle());
    [all...]
  /external/skia/include/core/
SkPaint.h 212 bool isVerticalText() const {
801 * if isVerticalText() is true, in which case the returned value should
816 * if isVerticalText() is true, in which case the returned value should
    [all...]
  /external/skia/legacy/include/core/
SkPaint.h 211 bool isVerticalText() const {
806 * if isVerticalText() is true, in which case the returned value should
821 * if isVerticalText() is true, in which case the returned value should
    [all...]

Completed in 2043 milliseconds