Home
last modified time | relevance | path

Searched refs:glyphAt (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DGlyphBufferTest.cpp55 EXPECT_EQ(42, glyphBuffer.glyphAt(0)); in TEST()
56 EXPECT_EQ(43, glyphBuffer.glyphAt(1)); in TEST()
57 EXPECT_EQ(44, glyphBuffer.glyphAt(2)); in TEST()
195 EXPECT_EQ(44, glyphBuffer.glyphAt(0)); in TEST()
196 EXPECT_EQ(43, glyphBuffer.glyphAt(1)); in TEST()
197 EXPECT_EQ(42, glyphBuffer.glyphAt(2)); in TEST()
DGlyphPage.h126 return glyphAt(indexForCharacter(c)); in glyphForCharacter()
129 ALWAYS_INLINE Glyph glyphAt(unsigned index) const in glyphAt() function
DGlyphPageTreeNode.cpp289 if (parentPage->glyphAt(i)) { in initializePage()
291 } else if (fallbackPage->glyphAt(i)) { in initializePage()
298 } else if (fallbackPage->customFontToLoadAt(i) && !parentPage->glyphAt(i)) { in initializePage()
DGlyphBuffer.h64 Glyph glyphAt(unsigned index) const in glyphAt() function
DGlyphPageTreeNodeTest.cpp71 EXPECT_TRUE(node->page()->glyphAt('a')); in TEST()
72 EXPECT_FALSE(node->page()->glyphAt('A')); in TEST()
DSimpleFontData.cpp160 return node->page() ? node->page()->glyphAt(character & 0xFF) : 0; in glyphForCharacter()
DFont.cpp819 markBuffer.add(glyphBuffer.glyphAt(i) ? markGlyph : spaceGlyph, markFontData, advance); in drawEmphasisMarks()
822 …markBuffer.add(glyphBuffer.glyphAt(glyphBuffer.size() - 1) ? markGlyph : spaceGlyph, markFontData,… in drawEmphasisMarks()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGTextRunRenderingContext.cpp78 glyphId = !glyphBuffer.isEmpty() ? glyphBuffer.glyphAt(0) : 0; in floatWidthUsingSVGFont()
112 Glyph glyph = glyphBuffer.glyphAt(from + i); in drawSVGGlyphs()
DSVGTextMetricsBuilder.cpp126 Glyph glyphId = glyphBuffer.glyphAt(0); in computeMetricsForCharacterSimple()
/external/skia/src/gpu/
DGrTextStrike.h43 const GrGlyph* glyphAt(int index) const { in glyphAt() function