Home
last modified time | relevance | path

Searched refs:extStart (Results 1 – 4 of 4) sorted by relevance

/external/icu4c/common/
Dlistformatter.cpp224 const char* extStart = locale_getKeywordsStart(localeString); in getFallbackLocale() local
225 if (extStart == NULL) { in getFallbackLocale()
226 extStart = uprv_strchr(localeString, 0); in getFallbackLocale()
228 const char* last = extStart; in getFallbackLocale()
245 fullLocale.append(localeString, localePortionLen, errorCode).append(extStart, errorCode); in getFallbackLocale()
Dbrkeng.cpp294 const UChar *extStart = u_memrchr(dictfname, 0x002e, dictnlength); // last dot in loadDictionaryMatcherFor() local
295 if (extStart != NULL) { in loadDictionaryMatcherFor()
296 int32_t len = (int32_t)(extStart - dictfname); in loadDictionaryMatcherFor()
297 ext.appendInvariantChars(UnicodeString(FALSE, extStart + 1, dictnlength - len - 1), status); in loadDictionaryMatcherFor()
Dbrkiter.cpp100 UChar* extStart=u_strchr(brkfname, 0x002e); in buildInstance() local
102 if(extStart!=NULL){ in buildInstance()
103 len = (int)(extStart-brkfname); in buildInstance()
104 u_UCharsToChars(extStart+1, ext, sizeof(ext)); // nul terminates the buff in buildInstance()
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
DMaterialLoader.java93 int extStart = content.lastIndexOf("."); in readTextureImage() local
94 for (int i = extStart; i < content.length(); i++){ in readTextureImage()