Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrSKSLPrettyPrint.cpp34 fInput = strings[i]; in prettify()
71 } else if ('{' == fInput[fIndex]) { in prettify()
76 } else if ('}' == fInput[fIndex]) { in prettify()
87 } else if ('\t' == fInput[fIndex] || '\n' == fInput[fIndex] || in prettify()
88 (fFreshline && ' ' == fInput[fIndex])) { in prettify()
91 this->appendChar(fInput[fIndex]); in prettify()
101 fPretty.appendf("%c", fInput[fIndex++]); in appendChar()
110 if (token[j] != fInput[i]) { in hasToken()
123 if ('\n' == fInput[fIndex]) { in parseUntilNewline()
129 fPretty.appendf("%c", fInput[fIndex++]); in parseUntilNewline()
[all …]
/external/skia/tests/
DSkPEGTest.cpp44 const char* fInput; in test_EOS() member
54 const auto match = EOS::Match(gTests[i].fInput); in test_EOS()
56 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput : nullptr)); in test_EOS()
62 const char* fInput; in test_LIT() member
74 const auto match = LIT<'X'>::Match(gTests[i].fInput); in test_LIT()
76 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_LIT()
88 const char* fInput; in test_Alpha() member
109 const auto match = Alpha::Match(gTests[i].fInput); in test_Alpha()
111 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_Alpha()
120 const char* fInput; in test_Digit() member
[all …]
/external/icu/icu4c/source/i18n/
Duspoof_conf.cpp149 fInput(NULL), in ConfusabledataBuilder()
172 uprv_free(fInput); in ~ConfusabledataBuilder()
212 fInput = static_cast<UChar *>(uprv_malloc((inputLen+1) * sizeof(UChar))); in build()
213 if (fInput == NULL) { in build()
217 u_strFromUTF8(fInput, inputLen+1, NULL, confusables, confusablesLen, &status); in build()
247 if (*fInput == 0xfeff) { in build()
248 *fInput = 0x20; in build()
252 uregex_setText(fParseLine, fInput, inputLen, &status); in build()
267 UChar32 keyChar = SpoofImpl::ScanHex(fInput, uregex_start(fParseLine, 1, &status), in build()
272 uregex_setText(fParseHexNum, &fInput[mapStringStart], mapStringLength, &status); in build()
[all …]
Duspoof_conf.h90 UChar *fInput; variable
Drematch.cpp168 if (fInput) { in ~RegexMatcher()
169 delete fInput; in ~RegexMatcher()
229 fInput = NULL; in init()
1348 if (!fInput) { in input()
1363 (*(const UnicodeString **)&fInput) = result; // pointer assignment, rather than operator= in input()
1366 return *fInput; in input()
1852 delete fInput; in reset()
1853 fInput = NULL; in reset()
1878 delete fInput; in reset()
1879 fInput = NULL; in reset()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java829 StringBuffer fInput = new StringBuffer(); in build() local
838 fInput.append(line); in build()
839 fInput.append('\n'); in build()
865 if (fInput.charAt(0) == 0xfeff) { in build()
866 fInput.setCharAt(0, (char) 0x20); in build()
870 Matcher matcher = fParseLine.matcher(fInput); in build()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java787 StringBuffer fInput = new StringBuffer(); in build() local
796 fInput.append(line); in build()
797 fInput.append('\n'); in build()
823 if (fInput.charAt(0) == 0xfeff) { in build()
824 fInput.setCharAt(0, (char) 0x20); in build()
828 Matcher matcher = fParseLine.matcher(fInput); in build()
/external/icu/icu4c/source/i18n/unicode/
Dregex.h1804 const UnicodeString *fInput; // The string being matched. Only used for input() variable