Home
last modified time | relevance | path

Searched refs:ComplexPath (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DFontTest.cpp52 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(start, 1)); in TestSpecificUCharRange()
53 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(midway, 1)); in TestSpecificUCharRange()
54 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(end, 1)); in TestSpecificUCharRange()
78 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(c3, 1)); in TEST()
80 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(c4, 1)); in TEST()
82 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(c5, 1)); in TEST()
128 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(c7, 2)); in TEST()
130 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(c8, 2)); in TEST()
132 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(c9, 2)); in TEST()
139 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(c12, 2)); in TEST()
[all …]
DFont.cpp116 …if (codePathToUse != ComplexPath && fontDescription().typesettingFeatures() && (runInfo.from || ru… in drawText()
117 codePathToUse = ComplexPath; in drawText()
119 if (codePathToUse != ComplexPath) in drawText()
132 …if (codePathToUse != ComplexPath && fontDescription().typesettingFeatures() && (runInfo.from || ru… in drawEmphasisMarks()
133 codePathToUse = ComplexPath; in drawEmphasisMarks()
135 if (codePathToUse != ComplexPath) in drawEmphasisMarks()
155 if (codePathToUse != ComplexPath) { in width()
162 bool isCacheable = codePathToUse == ComplexPath in width()
177 if (codePathToUse == ComplexPath) { in width()
217 …if (codePathToUse != ComplexPath && fontDescription().typesettingFeatures() && (runInfo.from || ru… in buildTextBlob()
[all …]
DCharacter.cpp153 return ComplexPath; in characterRangeCodePath()
158 return ComplexPath; in characterRangeCodePath()
168 return ComplexPath; in characterRangeCodePath()
/external/chromium_org/third_party/WebKit/Source/platform/text/
DTextPath.h36 enum CodePath { AutoPath, SimplePath, ComplexPath, SimpleWithGlyphOverflowPath }; enumerator
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGTextMetricsBuilder.cpp83 m_isComplexText = codePath == ComplexPath; in SVGTextMetricsCalculator()