Home
last modified time | relevance | path

Searched refs:dataPath (Results 1 - 15 of 15) sorted by relevance

/third_party/icu/icu4c/source/i18n/
H A Dpluralranges.cpp62 CharString dataPath; in getPluralRangesData() local
63 dataPath.append("locales/", -1, status); in getPluralRangesData()
64 dataPath.append(locale.getLanguage(), -1, status); in getPluralRangesData()
69 const UChar* set = ures_getStringByKeyWithFallback(rb.getAlias(), dataPath.data(), &setLen, &internalStatus); in getPluralRangesData()
72 dataPath.clear(); in getPluralRangesData()
73 dataPath.append("rules/", -1, status); in getPluralRangesData()
74 dataPath.appendInvariantChars(set, setLen, status); in getPluralRangesData()
77 ures_getAllItemsWithFallback(rb.getAlias(), dataPath.data(), sink, status); in getPluralRangesData()
H A Dnumrange_impl.cpp99 CharString dataPath; in getNumberRangeData() local
100 dataPath.append("NumberElements/", -1, status); in getNumberRangeData()
101 dataPath.append(nsName, -1, status); in getNumberRangeData()
102 dataPath.append("/miscPatterns", -1, status); in getNumberRangeData()
106 ures_getAllItemsWithFallback(rb.getAlias(), dataPath.data(), sink, localStatus); in getNumberRangeData()
/third_party/node/deps/icu-small/source/i18n/
H A Dpluralranges.cpp62 CharString dataPath; in getPluralRangesData() local
63 dataPath.append("locales/", -1, status); in getPluralRangesData()
64 dataPath.append(locale.getLanguage(), -1, status); in getPluralRangesData()
69 const char16_t* set = ures_getStringByKeyWithFallback(rb.getAlias(), dataPath.data(), &setLen, &internalStatus); in getPluralRangesData()
72 dataPath.clear(); in getPluralRangesData()
73 dataPath.append("rules/", -1, status); in getPluralRangesData()
74 dataPath.appendInvariantChars(set, setLen, status); in getPluralRangesData()
77 ures_getAllItemsWithFallback(rb.getAlias(), dataPath.data(), sink, status); in getPluralRangesData()
H A Dnumrange_impl.cpp99 CharString dataPath; in getNumberRangeData() local
100 dataPath.append("NumberElements/", -1, status); in getNumberRangeData()
101 dataPath.append(nsName, -1, status); in getNumberRangeData()
102 dataPath.append("/miscPatterns", -1, status); in getNumberRangeData()
106 ures_getAllItemsWithFallback(rb.getAlias(), dataPath.data(), sink, localStatus); in getNumberRangeData()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dpluralranges.cpp62 CharString dataPath; in getPluralRangesData() local
63 dataPath.append("locales/", -1, status); in getPluralRangesData()
64 dataPath.append(locale.getLanguage(), -1, status); in getPluralRangesData()
69 const UChar* set = ures_getStringByKeyWithFallback(rb.getAlias(), dataPath.data(), &setLen, &internalStatus); in getPluralRangesData()
72 dataPath.clear(); in getPluralRangesData()
73 dataPath.append("rules/", -1, status); in getPluralRangesData()
74 dataPath.appendInvariantChars(set, setLen, status); in getPluralRangesData()
77 ures_getAllItemsWithFallback(rb.getAlias(), dataPath.data(), sink, status); in getPluralRangesData()
H A Dnumrange_impl.cpp89 CharString dataPath; in getNumberRangeData() local
90 dataPath.append("NumberElements/", -1, status); in getNumberRangeData()
91 dataPath.append(nsName, -1, status); in getNumberRangeData()
92 dataPath.append("/miscPatterns", -1, status); in getNumberRangeData()
96 ures_getAllItemsWithFallback(rb.getAlias(), dataPath.data(), sink, localStatus); in getNumberRangeData()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUBinary.java284 // Normally com.ibm.icu.impl.ICUBinary.dataPath.
285 String dataPath = ICUConfig.get(ICUBinary.class.getName() + ".dataPath");
286 if (dataPath != null) {
287 addDataFilesFromPath(dataPath, icuDataFiles);
291 private static void addDataFilesFromPath(String dataPath, List<DataFile> files) { in addDataFilesFromPath() argument
298 while (pathStart < dataPath.length()) { in addDataFilesFromPath()
299 int sepIndex = dataPath.indexOf(File.pathSeparatorChar, pathStart); in addDataFilesFromPath()
304 pathLimit = dataPath.length(); in addDataFilesFromPath()
306 String path = dataPath in addDataFilesFromPath()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DICUBinary.java288 // Normally ohos.global.icu.impl.ICUBinary.dataPath.
289 String dataPath = ICUConfig.get(ICUBinary.class.getName() + ".dataPath");
290 if (dataPath != null) {
291 addDataFilesFromPath(dataPath, icuDataFiles);
295 private static void addDataFilesFromPath(String dataPath, List<DataFile> files) { in addDataFilesFromPath() argument
302 while (pathStart < dataPath.length()) { in addDataFilesFromPath()
303 int sepIndex = dataPath.indexOf(File.pathSeparatorChar, pathStart); in addDataFilesFromPath()
308 pathLimit = dataPath.length(); in addDataFilesFromPath()
310 String path = dataPath in addDataFilesFromPath()
[all...]
/third_party/icu/icu4c/source/common/
H A Dudata.cpp995 const char *dataPath, const char *tocEntryPathSuffix, in doLoadFromIndividualFiles()
1008 UDataPathIterator iter(dataPath, pkgName, path, tocEntryPathSuffix, false, pErrorCode); in doLoadFromIndividualFiles()
1053 const char * /*dataPath*/, const char * /*tocEntryPathSuffix*/, const char *tocEntryName, in doLoadFromCommonData()
1171 const char *dataPath; in doOpenChoice() local
1307 dataPath = u_getDataDirectory(); in doOpenChoice()
1348 pkgName.data(), dataPath, tocEntryPathSuffix, tocEntryName.data(), in doOpenChoice()
1361 /* Check to make sure that there is a dataPath to iterate over */ in doOpenChoice()
1362 if ((dataPath && *dataPath) || !isICUData) { in doOpenChoice()
1363 retVal = doLoadFromIndividualFiles(pkgName.data(), dataPath, tocEntryPathSuffi in doOpenChoice()
994 doLoadFromIndividualFiles(const char *pkgName, const char *dataPath, const char *tocEntryPathSuffix, const char *path, const char *type, const char *name, UDataMemoryIsAcceptable *isAcceptable, void *context, UErrorCode *subErrorCode, UErrorCode *pErrorCode) doLoadFromIndividualFiles() argument
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dudata.cpp989 const char *dataPath, const char *tocEntryPathSuffix, in doLoadFromIndividualFiles()
1002 UDataPathIterator iter(dataPath, pkgName, path, tocEntryPathSuffix, false, pErrorCode); in doLoadFromIndividualFiles()
1047 const char * /*dataPath*/, const char * /*tocEntryPathSuffix*/, const char *tocEntryName, in doLoadFromCommonData()
1165 const char *dataPath; in doOpenChoice() local
1301 dataPath = u_getDataDirectory(); in doOpenChoice()
1325 pkgName.data(), dataPath, tocEntryPathSuffix, tocEntryName.data(), in doOpenChoice()
1338 /* Check to make sure that there is a dataPath to iterate over */ in doOpenChoice()
1339 if ((dataPath && *dataPath) || !isICUData) { in doOpenChoice()
1340 retVal = doLoadFromIndividualFiles(pkgName.data(), dataPath, tocEntryPathSuffi in doOpenChoice()
988 doLoadFromIndividualFiles(const char *pkgName, const char *dataPath, const char *tocEntryPathSuffix, const char *path, const char *type, const char *name, UDataMemoryIsAcceptable *isAcceptable, void *context, UErrorCode *subErrorCode, UErrorCode *pErrorCode) doLoadFromIndividualFiles() argument
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dudata.cpp989 const char *dataPath, const char *tocEntryPathSuffix, in doLoadFromIndividualFiles()
1002 UDataPathIterator iter(dataPath, pkgName, path, tocEntryPathSuffix, FALSE, pErrorCode); in doLoadFromIndividualFiles()
1047 const char * /*dataPath*/, const char * /*tocEntryPathSuffix*/, const char *tocEntryName, in doLoadFromCommonData()
1165 const char *dataPath; in doOpenChoice() local
1301 dataPath = u_getDataDirectory(); in doOpenChoice()
1325 pkgName.data(), dataPath, tocEntryPathSuffix, tocEntryName.data(), in doOpenChoice()
1338 /* Check to make sure that there is a dataPath to iterate over */ in doOpenChoice()
1339 if ((dataPath && *dataPath) || !isICUData) { in doOpenChoice()
1340 retVal = doLoadFromIndividualFiles(pkgName.data(), dataPath, tocEntryPathSuffi in doOpenChoice()
988 doLoadFromIndividualFiles(const char *pkgName, const char *dataPath, const char *tocEntryPathSuffix, const char *path, const char *type, const char *name, UDataMemoryIsAcceptable *isAcceptable, void *context, UErrorCode *subErrorCode, UErrorCode *pErrorCode) doLoadFromIndividualFiles() argument
[all...]
/third_party/icu/icu4c/source/extra/uconv/
H A Duconv.cpp86 char dataPath[2048]; /* XXX Sloppy: should be PATH_MAX. */ in initMsg() local
115 uprv_strcpy(dataPath, u_getDataDirectory()); in initMsg()
116 uprv_strcat(dataPath, U_FILE_SEP_STRING); in initMsg()
117 uprv_strcat(dataPath, UCONVMSG); in initMsg()
119 gBundle = u_wmsg_setPath(dataPath, &err); in initMsg()
123 pname, dataPath, u_errorName(err)); in initMsg()
/third_party/skia/third_party/externals/icu/source/extra/uconv/
H A Duconv.cpp86 char dataPath[2048]; /* XXX Sloppy: should be PATH_MAX. */ in initMsg() local
115 uprv_strcpy(dataPath, u_getDataDirectory()); in initMsg()
116 uprv_strcat(dataPath, U_FILE_SEP_STRING); in initMsg()
117 uprv_strcat(dataPath, UCONVMSG); in initMsg()
119 gBundle = u_wmsg_setPath(dataPath, &err); in initMsg()
123 pname, dataPath, u_errorName(err)); in initMsg()
/third_party/node/deps/npm/lib/commands/
H A Downer.js203 const dataPath = `/${spec.escapedName}/-rev/${encodeURIComponent(data._rev)}`
206 return npmFetch.json(dataPath, {
/third_party/skia/third_party/externals/angle2/scripts/
H A Dgen_vk_gl_cts_build.py138 dataPath = os.path.join(deqpSrcDir, dataDir)
139 for root, directories, filenames in os.walk(dataPath):

Completed in 17 milliseconds