Lines Matching refs:fInput
35 fInput = strings[i]; 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()
92 this->appendChar(fInput[fIndex]); in prettify()
102 fPretty.appendf("%c", fInput[fIndex++]); in appendChar()
111 if (token[j] != fInput[i]) { in hasToken()
124 if ('\n' == fInput[fIndex]) { in parseUntilNewline()
130 fPretty.appendf("%c", fInput[fIndex++]); in parseUntilNewline()
143 if ('\n' == fInput[fIndex]) { in parseUntil()
153 fPretty.appendf("%c", fInput[fIndex++]); in parseUntil()
187 const char* fInput; member in GrSKSLPrettyPrint::GLSLPrettyPrint