Lines Matching refs:fCurrent
74 : fCurrent(utf8), fBegin(utf8), fEnd(fCurrent + utf8Bytes) in FontMgrRunIterator()
93 SkASSERT(fCurrent < fEnd); in consume()
95 SkUnichar u = utf8_next(&fCurrent, fEnd); in consume()
116 while (fCurrent < fEnd) { in consume()
117 const char* prev = fCurrent; in consume()
118 u = utf8_next(&fCurrent, fEnd); in consume()
122 fCurrent = prev; in consume()
133 fCurrent = prev; in consume()
140 return fCurrent - fBegin; in endOfCurrentRun()
143 return fCurrent == fEnd; in atEnd()
151 char const * fCurrent; member in FontMgrRunIterator