Lines Matching refs:fInput
33 fInput = string.c_str(); 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()
90 this->appendChar(fInput[fIndex]); in prettify()
100 fPretty.appendf("%c", fInput[fIndex++]); in appendChar()
109 if (token[j] != fInput[i]) { in hasToken()
122 if ('\n' == fInput[fIndex]) { in parseUntilNewline()
128 fPretty.appendf("%c", fInput[fIndex++]); in parseUntilNewline()
141 if ('\n' == fInput[fIndex]) { in parseUntil()
151 fPretty.appendf("%c", fInput[fIndex++]); in parseUntil()
178 const char* fInput; member in GrShaderUtils::GLSLPrettyPrint