Lines Matching refs:fIndex
31 fIndex = 0; in prettify()
35 while (fLength > fIndex) { in prettify()
70 } else if ('{' == fInput[fIndex]) { in prettify()
75 } else if ('}' == fInput[fIndex]) { in prettify()
86 } else if ('\t' == fInput[fIndex] || '\n' == fInput[fIndex] || in prettify()
87 (fFreshline && ' ' == fInput[fIndex])) { in prettify()
88 fIndex++; in prettify()
90 this->appendChar(fInput[fIndex]); in prettify()
100 fPretty.appendf("%c", fInput[fIndex++]); in appendChar()
107 size_t i = fIndex; in hasToken()
114 fIndex = i; in hasToken()
121 while (fLength > fIndex) { in parseUntilNewline()
122 if ('\n' == fInput[fIndex]) { in parseUntilNewline()
123 fIndex++; in parseUntilNewline()
128 fPretty.appendf("%c", fInput[fIndex++]); in parseUntilNewline()
137 while (fLength > fIndex) { in parseUntil()
141 if ('\n' == fInput[fIndex]) { in parseUntil()
144 fIndex++; in parseUntil()
151 fPretty.appendf("%c", fInput[fIndex++]); in parseUntil()
177 size_t fIndex, fLength; member in GrShaderUtils::GLSLPrettyPrint