Home
last modified time | relevance | path

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

/external/skqp/src/gpu/
DGrSKSLPrettyPrint.cpp35 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()
[all …]
/external/skia/src/gpu/
DGrSKSLPrettyPrint.cpp35 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()
[all …]
/external/skqp/tests/
DSkPEGTest.cpp45 const char* fInput; in test_EOS() member
55 const auto match = EOS::Match(gTests[i].fInput); in test_EOS()
57 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput : nullptr)); in test_EOS()
63 const char* fInput; in test_LIT() member
75 const auto match = LIT<'X'>::Match(gTests[i].fInput); in test_LIT()
77 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_LIT()
89 const char* fInput; in test_Alpha() member
110 const auto match = Alpha::Match(gTests[i].fInput); in test_Alpha()
112 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_Alpha()
121 const char* fInput; in test_Digit() member
[all …]
/external/skia/tests/
DSkPEGTest.cpp45 const char* fInput; in test_EOS() member
55 const auto match = EOS::Match(gTests[i].fInput); in test_EOS()
57 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput : nullptr)); in test_EOS()
63 const char* fInput; in test_LIT() member
75 const auto match = LIT<'X'>::Match(gTests[i].fInput); in test_LIT()
77 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_LIT()
89 const char* fInput; in test_Alpha() member
110 const auto match = Alpha::Match(gTests[i].fInput); in test_Alpha()
112 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_Alpha()
121 const char* fInput; in test_Digit() member
[all …]
/external/icu/icu4c/source/i18n/
Duspoof_conf.cpp157 fInput(NULL), in ConfusabledataBuilder()
201 uprv_free(fInput); in ~ConfusabledataBuilder()
241 fInput = static_cast<UChar *>(uprv_malloc((inputLen+1) * sizeof(UChar))); in build()
242 if (fInput == NULL) { in build()
246 u_strFromUTF8(fInput, inputLen+1, NULL, confusables, confusablesLen, &status); in build()
276 if (*fInput == 0xfeff) { in build()
277 *fInput = 0x20; in build()
281 uregex_setText(fParseLine, fInput, inputLen, &status); in build()
296 UChar32 keyChar = SpoofImpl::ScanHex(fInput, uregex_start(fParseLine, 1, &status), in build()
301 uregex_setText(fParseHexNum, &fInput[mapStringStart], mapStringLength, &status); in build()
[all …]
Duspoof_conf.h92 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/skia/modules/particles/src/
DSkParticleAffector.cpp217 , fInput(input) in SkPositionOnPathAffector()
230 float t = fInput.eval(params, ps[i]); in REFLECTED()
251 v->visit("Input", fInput); in visitFields()
262 SkParticleValue fInput; member in SkPositionOnPathAffector
292 , fInput(input) in SkPositionOnTextAffector()
306 float t = fInput.eval(params, ps[i]); in REFLECTED()
328 v->visit("Input", fInput); in visitFields()
341 SkParticleValue fInput; member in SkPositionOnTextAffector
DSkCurve.cpp85 float x = fInput.eval(params, ps); in eval()
110 v->visit("Input", fInput); in visitFields()
158 float x = fInput.eval(params, ps); in eval()
178 v->visit("Input", fInput); in visitFields()
/external/skia/modules/particles/include/
DSkCurve.h79 SkParticleValue fInput; member
124 SkParticleValue fInput; member
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java814 StringBuffer fInput = new StringBuffer(); in build() local
823 fInput.append(line); in build()
824 fInput.append('\n'); in build()
850 if (fInput.charAt(0) == 0xfeff) { in build()
851 fInput.setCharAt(0, (char) 0x20); in build()
855 Matcher matcher = fParseLine.matcher(fInput); in build()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java859 StringBuffer fInput = new StringBuffer(); in build() local
868 fInput.append(line); in build()
869 fInput.append('\n'); in build()
895 if (fInput.charAt(0) == 0xfeff) { in build()
896 fInput.setCharAt(0, (char) 0x20); in build()
900 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