/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/cl/ |
D | cl_util.cpp | 44 SizeT extStart = 0u; in RemoveUnsupportedCLExtensions() local 50 const SizeT length = spacePos - extStart; in RemoveUnsupportedCLExtensions() 51 if (IsCLExtensionSupported(extensions.substr(extStart, length))) in RemoveUnsupportedCLExtensions() 53 extStart = spacePos + 1u; in RemoveUnsupportedCLExtensions() 57 extensions.erase(extStart, length + 1u); in RemoveUnsupportedCLExtensions() 59 spacePos = extensions.find(' ', extStart); in RemoveUnsupportedCLExtensions() 63 if (extStart < extensions.length()) in RemoveUnsupportedCLExtensions() 65 const SizeT length = extensions.length() - extStart; in RemoveUnsupportedCLExtensions() 66 if (!IsCLExtensionSupported(extensions.substr(extStart, length))) in RemoveUnsupportedCLExtensions() 68 extensions.erase(extStart, length); in RemoveUnsupportedCLExtensions()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | brkeng.cpp | 241 const UChar *extStart = u_memrchr(dictfname, 0x002e, dictnlength); // last dot in loadDictionaryMatcherFor() local 242 if (extStart != NULL) { in loadDictionaryMatcherFor() 243 int32_t len = (int32_t)(extStart - dictfname); in loadDictionaryMatcherFor() 244 ext.appendInvariantChars(UnicodeString(FALSE, extStart + 1, dictnlength - len - 1), status); in loadDictionaryMatcherFor()
|
D | brkiter.cpp | 97 UChar* extStart=u_strchr(brkfname, 0x002e); in buildInstance() local 99 if(extStart!=NULL){ in buildInstance() 100 len = (int)(extStart-brkfname); in buildInstance() 101 u_UCharsToChars(extStart+1, ext, sizeof(ext)); // nul terminates the buff in buildInstance()
|
/third_party/node/deps/icu-small/source/common/ |
D | brkeng.cpp | 261 const char16_t *extStart = u_memrchr(dictfname, 0x002e, dictnlength); // last dot in loadDictionaryMatcherFor() local 262 if (extStart != nullptr) { in loadDictionaryMatcherFor() 263 int32_t len = (int32_t)(extStart - dictfname); in loadDictionaryMatcherFor() 264 ext.appendInvariantChars(UnicodeString(false, extStart + 1, dictnlength - len - 1), status); in loadDictionaryMatcherFor()
|
D | brkiter.cpp | 98 char16_t* extStart=u_strchr(brkfname, 0x002e); in buildInstance() local 100 if (extStart != nullptr){ in buildInstance() 101 len = (int)(extStart-brkfname); in buildInstance() 102 u_UCharsToChars(extStart+1, ext, sizeof(ext)); // nul terminates the buff in buildInstance()
|
/third_party/icu/icu4c/source/common/ |
D | brkeng.cpp | 261 const UChar *extStart = u_memrchr(dictfname, 0x002e, dictnlength); // last dot in loadDictionaryMatcherFor() local 262 if (extStart != NULL) { in loadDictionaryMatcherFor() 263 int32_t len = (int32_t)(extStart - dictfname); in loadDictionaryMatcherFor() 264 ext.appendInvariantChars(UnicodeString(false, extStart + 1, dictnlength - len - 1), status); in loadDictionaryMatcherFor()
|
D | brkiter.cpp | 98 UChar* extStart=u_strchr(brkfname, 0x002e); in buildInstance() local 100 if(extStart!=NULL){ in buildInstance() 101 len = (int)(extStart-brkfname); in buildInstance() 102 u_UCharsToChars(extStart+1, ext, sizeof(ext)); // nul terminates the buff in buildInstance()
|
/third_party/lz4/programs/ |
D | lz4cli.c | 305 size_t const extStart= (inSize > extSize) ? inSize-extSize : 0; in determineOpMode() local 306 if (!strcmp(inputFilename+extStart, LZ4_EXTENSION)) return om_decompress; in determineOpMode()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
D | ULocale.java | 988 int extStart = fallback.indexOf('@'); in getFallbackString() local 989 if (extStart == -1) { in getFallbackString() 990 extStart = fallback.length(); in getFallbackString() 992 int last = fallback.lastIndexOf('_', extStart); in getFallbackString() 1004 return fallback.substring(0, last) + fallback.substring(extStart); in getFallbackString()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | ULocale.java | 1041 int extStart = fallback.indexOf('@'); in getFallbackString() local 1042 if (extStart == -1) { in getFallbackString() 1043 extStart = fallback.length(); in getFallbackString() 1045 int last = fallback.lastIndexOf('_', extStart); in getFallbackString() 1057 return fallback.substring(0, last) + fallback.substring(extStart); in getFallbackString()
|