/third_party/skia/src/gpu/ |
H A 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[fInde in parseUntilNewline() 178 const char* fInput; global() member in GrShaderUtils::GLSLPrettyPrint [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | uspoof_conf.cpp | 156 fInput(NULL), in ConfusabledataBuilder() 200 uprv_free(fInput); in ~ConfusabledataBuilder() 240 fInput = static_cast<UChar *>(uprv_malloc((inputLen+1) * sizeof(UChar))); in build() 241 if (fInput == NULL) { in build() 245 u_strFromUTF8(fInput, inputLen+1, NULL, confusables, confusablesLen, &status); in build() 275 if (*fInput == 0xfeff) { in build() 276 *fInput = 0x20; in build() 280 uregex_setText(fParseLine, fInput, inputLen, &status); in build() 295 UChar32 keyChar = SpoofImpl::ScanHex(fInput, uregex_start(fParseLine, 1, &status), in build() 300 uregex_setText(fParseHexNum, &fInput[mapStringStar in build() [all...] |
H A D | uspoof_conf.h | 93 UChar *fInput; member in ConfusabledataBuilder
|
H A D | rematch.cpp | 168 if (fInput) { in ~RegexMatcher() 169 delete fInput; in ~RegexMatcher() 231 fInput = NULL; in init() 1358 if (!fInput) { in input() 1373 (*(const UnicodeString **)&fInput) = result; // pointer assignment, rather than operator= in input() 1376 return *fInput; in input() 1862 delete fInput; in reset() 1863 fInput = NULL; in reset() 1891 delete fInput; in reset() 1892 fInput in reset() [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | uspoof_conf.cpp | 156 fInput(nullptr), in ConfusabledataBuilder() 200 uprv_free(fInput); in ~ConfusabledataBuilder() 240 fInput = static_cast<char16_t *>(uprv_malloc((inputLen+1) * sizeof(char16_t))); in build() 241 if (fInput == nullptr) { in build() 245 u_strFromUTF8(fInput, inputLen+1, nullptr, confusables, confusablesLen, &status); in build() 275 if (*fInput == 0xfeff) { in build() 276 *fInput = 0x20; in build() 280 uregex_setText(fParseLine, fInput, inputLen, &status); in build() 295 UChar32 keyChar = SpoofImpl::ScanHex(fInput, uregex_start(fParseLine, 1, &status), in build() 300 uregex_setText(fParseHexNum, &fInput[mapStringStar in build() [all...] |
H A D | uspoof_conf.h | 93 char16_t *fInput; member in ConfusabledataBuilder
|
H A D | rematch.cpp | 168 if (fInput) { in ~RegexMatcher() 169 delete fInput; in ~RegexMatcher() 231 fInput = nullptr; in init() 1358 if (!fInput) { in input() 1373 (*(const UnicodeString **)&fInput) = result; // pointer assignment, rather than operator= in input() 1376 return *fInput; in input() 1862 delete fInput; in reset() 1863 fInput = nullptr; in reset() 1891 delete fInput; in reset() 1892 fInput in reset() [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A 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[mapStringStar in build() [all...] |
H A D | uspoof_conf.h | 92 UChar *fInput; member in ConfusabledataBuilder
|
H A D | rematch.cpp | 168 if (fInput) { in ~RegexMatcher() 169 delete fInput; in ~RegexMatcher() 231 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() 1881 delete fInput; in reset() 1882 fInput in reset() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | SpoofChecker.java | 864 StringBuffer fInput = new StringBuffer(); in build() 873 fInput.append(line); in build() 874 fInput.append('\n'); in build() 900 if (fInput.charAt(0) == 0xfeff) { in build() 901 fInput.setCharAt(0, (char) 0x20); in build() 905 Matcher matcher = fParseLine.matcher(fInput); in build()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | SpoofChecker.java | 812 StringBuffer fInput = new StringBuffer(); in build() 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()
|
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | regex.h | 1797 const UnicodeString *fInput; // The string being matched. Only used for input() member in U_FINAL
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | regex.h | 1797 const UnicodeString *fInput; // The string being matched. Only used for input() member in final
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | regex.h | 1797 const UnicodeString *fInput; // The string being matched. Only used for input() member in U_FINAL
|
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |