/external/skqp/src/gpu/ |
D | GrSKSLPrettyPrint.cpp | 35 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/ |
D | GrSKSLPrettyPrint.cpp | 35 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/ |
D | SkPEGTest.cpp | 45 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/ |
D | SkPEGTest.cpp | 45 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/ |
D | uspoof_conf.cpp | 157 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 …]
|
D | uspoof_conf.h | 92 UChar *fInput; variable
|
D | rematch.cpp | 168 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/ |
D | SkParticleAffector.cpp | 217 , 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
|
D | SkCurve.cpp | 85 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/ |
D | SkCurve.h | 79 SkParticleValue fInput; member 124 SkParticleValue fInput; member
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | SpoofChecker.java | 814 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/ |
D | SpoofChecker.java | 859 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/ |
D | regex.h | 1804 const UnicodeString *fInput; // The string being matched. Only used for input() variable
|