Searched refs:fInput (Results 1 – 10 of 10) sorted by relevance
/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 | GrShaderUtils.cpp | 33 fInput = string.c_str(); in prettify() 70 } else if ('{' == fInput[fIndex]) { in prettify() 75 } else if ('}' == fInput[fIndex]) { in prettify() 86 } else if ('\t' == fInput[fIndex] || '\n' == fInput[fIndex] || in prettify() 87 (fFreshline && ' ' == fInput[fIndex])) { in prettify() 90 this->appendChar(fInput[fIndex]); in prettify() 100 fPretty.appendf("%c", fInput[fIndex++]); in appendChar() 109 if (token[j] != fInput[i]) { in hasToken() 122 if ('\n' == fInput[fIndex]) { in parseUntilNewline() 128 fPretty.appendf("%c", fInput[fIndex++]); in parseUntilNewline() [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/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/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() 1346 if (!fInput) { in input() 1361 (*(const UnicodeString **)&fInput) = result; // pointer assignment, rather than operator= in input() 1364 return *fInput; in input() 1850 delete fInput; in reset() 1851 fInput = NULL; in reset() 1876 delete fInput; in reset() 1877 fInput = NULL; in reset()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | SpoofChecker.java | 812 StringBuffer fInput = new StringBuffer(); in build() local 821 fInput.append(line); in build() 822 fInput.append('\n'); in build() 848 if (fInput.charAt(0) == 0xfeff) { in build() 849 fInput.setCharAt(0, (char) 0x20); in build() 853 Matcher matcher = fParseLine.matcher(fInput); in build()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | SpoofChecker.java | 858 StringBuffer fInput = new StringBuffer(); in build() local 867 fInput.append(line); in build() 868 fInput.append('\n'); in build() 894 if (fInput.charAt(0) == 0xfeff) { in build() 895 fInput.setCharAt(0, (char) 0x20); in build() 899 Matcher matcher = fParseLine.matcher(fInput); in build()
|
/external/icu/icu4c/source/i18n/unicode/ |
D | regex.h | 1801 const UnicodeString *fInput; // The string being matched. Only used for input() variable
|