Lines Matching refs:fIndex
33 fIndex = 0; in prettify()
37 while (fLength > fIndex) { in prettify()
72 } else if ('{' == fInput[fIndex]) { in prettify()
77 } else if ('}' == fInput[fIndex]) { in prettify()
88 } else if ('\t' == fInput[fIndex] || '\n' == fInput[fIndex] || in prettify()
89 (fFreshline && ' ' == fInput[fIndex])) { in prettify()
90 fIndex++; in prettify()
92 this->appendChar(fInput[fIndex]); in prettify()
102 fPretty.appendf("%c", fInput[fIndex++]); in appendChar()
109 size_t i = fIndex; in hasToken()
116 fIndex = i; in hasToken()
123 while (fLength > fIndex) { in parseUntilNewline()
124 if ('\n' == fInput[fIndex]) { in parseUntilNewline()
125 fIndex++; in parseUntilNewline()
130 fPretty.appendf("%c", fInput[fIndex++]); in parseUntilNewline()
139 while (fLength > fIndex) { in parseUntil()
143 if ('\n' == fInput[fIndex]) { in parseUntil()
146 fIndex++; in parseUntil()
153 fPretty.appendf("%c", fInput[fIndex++]); in parseUntil()
186 size_t fIndex, fLength; member in GrSKSLPrettyPrint::GLSLPrettyPrint