Home
last modified time | relevance | path

Searched refs:fInput (Results 1 – 7 of 7) sorted by relevance

/external/skia/src/gpu/gl/builders/
DGrGLSLPrettyPrint.cpp37 fInput = strings[i]; in prettify()
73 } else if ('{' == fInput[fIndex]) { in prettify()
78 } else if ('}' == fInput[fIndex]) { in prettify()
89 } else if ('\t' == fInput[fIndex] || '\n' == fInput[fIndex] || in prettify()
90 (fFreshline && ' ' == fInput[fIndex])) { in prettify()
93 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()
[all …]
/external/icu/icu4c/source/i18n/
Duspoof_conf.cpp145 fInput(NULL), in ConfusabledataBuilder()
175 uprv_free(fInput); in ~ConfusabledataBuilder()
219 fInput = static_cast<UChar *>(uprv_malloc((inputLen+1) * sizeof(UChar))); in build()
220 if (fInput == NULL) { in build()
224 u_strFromUTF8(fInput, inputLen+1, NULL, confusables, confusablesLen, &status); in build()
254 if (*fInput == 0xfeff) { in build()
255 *fInput = 0x20; in build()
259 uregex_setText(fParseLine, fInput, inputLen, &status); in build()
274 UChar32 keyChar = SpoofImpl::ScanHex(fInput, uregex_start(fParseLine, 1, &status), in build()
279 uregex_setText(fParseHexNum, &fInput[mapStringStart], mapStringLength, &status); in build()
[all …]
Duspoof_conf.h86 UChar *fInput; variable
Drematch.cpp164 if (fInput) { in ~RegexMatcher()
165 delete fInput; in ~RegexMatcher()
225 fInput = NULL; in init()
1344 if (!fInput) { in input()
1359 (*(const UnicodeString **)&fInput) = result; // pointer assignment, rather than operator= in input()
1362 return *fInput; in input()
1848 delete fInput; in reset()
1849 fInput = NULL; in reset()
1874 delete fInput; in reset()
1875 fInput = NULL; in reset()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java979 StringBuffer fInput = new StringBuffer();
980 WSConfusableDataBuilder.readWholeFileToString(confusables, fInput);
1005 if (fInput.charAt(0) == 0xfeff) {
1006 fInput.setCharAt(0, (char) 0x20);
1010 Matcher matcher = fParseLine.matcher(fInput);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java1016 StringBuffer fInput = new StringBuffer();
1017 WSConfusableDataBuilder.readWholeFileToString(confusables, fInput);
1042 if (fInput.charAt(0) == 0xfeff) {
1043 fInput.setCharAt(0, (char) 0x20);
1047 Matcher matcher = fParseLine.matcher(fInput);
/external/icu/icu4c/source/i18n/unicode/
Dregex.h1802 const UnicodeString *fInput; // The string being matched. Only used for input() variable