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