Home
last modified time | relevance | path

Searched refs:GlyphSet (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebKit/android/nav/
DFindCanvas.h67 class GlyphSet {
69 GlyphSet(const SkPaint& paint, const UChar* lower, const UChar* upper,
71 ~GlyphSet();
72 GlyphSet& operator=(GlyphSet& src);
83 GlyphSet(GlyphSet& src) { } in GlyphSet() function
186 GlyphSet* getGlyphs(const SkPaint& paint);
204 SkTDArray<GlyphSet> mGlyphSets;
DFindCanvas.cpp72 GlyphSet::GlyphSet(const SkPaint& paint, const UChar* lower, const UChar* upper, in GlyphSet() function in android::GlyphSet
92 GlyphSet::~GlyphSet() { in ~GlyphSet()
101 GlyphSet::GlyphSet& GlyphSet::operator=(GlyphSet& src) { in operator =()
114 bool GlyphSet::characterMatches(uint16_t c, int index) { in characterMatches()
294 GlyphSet* glyphSet = getGlyphs(paint); in findHelper()
467 GlyphSet* FindCanvas::getGlyphs(const SkPaint& paint) { in getGlyphs()
469 GlyphSet* end = mGlyphSets.end(); in getGlyphs()
470 for (GlyphSet* ptr = mGlyphSets.begin();ptr != end; ptr++) { in getGlyphs()
476 GlyphSet set(paint, mLowerText, mUpperText, mLength); in getGlyphs()