Home
last modified time | relevance | path

Searched refs:itemKey (Results 1 – 12 of 12) sorted by relevance

/external/icu/icu4c/source/common/
Dlocresdata.cpp47 const char *itemKey, in uloc_getTableStringWithFallback() argument
93 item = ures_getStringByKeyWithFallback(&table, itemKey, pLength, &errorCode); in uloc_getTableStringWithFallback()
100 replacement = uloc_getCurrentCountryID(itemKey); in uloc_getTableStringWithFallback()
102 replacement = uloc_getCurrentLanguageID(itemKey); in uloc_getTableStringWithFallback()
105 if(replacement!=NULL && itemKey != replacement){ in uloc_getTableStringWithFallback()
Dlocdspnm.cpp75 UnicodeString& get(const char* tableKey, const char* itemKey,
77 UnicodeString& get(const char* tableKey, const char* subTableKey, const char* itemKey,
80 UnicodeString& getNoFallback(const char* tableKey, const char* itemKey,
82 UnicodeString& getNoFallback(const char* tableKey, const char* subTableKey, const char* itemKey,
87 ICUDataTable::get(const char* tableKey, const char* itemKey, UnicodeString& result) const { in get() argument
88 return get(tableKey, NULL, itemKey, result); in get()
92 ICUDataTable::getNoFallback(const char* tableKey, const char* itemKey, UnicodeString& result) const… in getNoFallback() argument
93 return getNoFallback(tableKey, NULL, itemKey, result); in getNoFallback()
122 ICUDataTable::get(const char* tableKey, const char* subTableKey, const char* itemKey, in get() argument
128 tableKey, subTableKey, itemKey, in get()
[all …]
Dulocimp.h36 const char *itemKey,
Dlocdispnames.cpp300 const char *itemKey, in _getStringOrCopyKey() argument
307 if(itemKey==NULL) { in _getStringOrCopyKey()
320 if (!uprv_strncmp(tableKey, "Languages", 9) && uprv_strtol(itemKey, NULL, 10)) { in _getStringOrCopyKey()
327 itemKey, in _getStringOrCopyKey()
Duresdata.cpp1139 const char *itemKey=gUnknownKey; in ures_swapResource() local
1143 itemKey=(const char *)outBundle+keyOffset; in ures_swapResource()
1148 itemKey=(const char *)outBundle+keyOffset; in ures_swapResource()
1152 ures_swapResource(ds, inBundle, outBundle, item, itemKey, pTempTable, pErrorCode); in ures_swapResource()
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
DResourceBundlePerf.java318 String itemKey = (String) menu_items[j][0];
320 if(!expected[p++].equals(itemKey)) throw new Error("not equal");
347 String itemKey = menu_item.getKey();
349 if(!expected[p++].equals(itemKey)) throw new Error("not equal");
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/composer/
DComposer.java233 Node itemKey = composeKeyNode(node); in composeMappingChildren() local
234 if (itemKey.getTag().equals(Tag.MERGE)) { in composeMappingChildren()
238 children.add(new NodeTuple(itemKey, itemValue)); in composeMappingChildren()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DICUResourceBundleImpl.java244 … String itemKey = ((ICUResourceBundleReader.Table)value).getKey(wholeBundle.reader, index); in handleGet() local
245 if (itemKey == null) { in handleGet()
248 … return createBundleObject(itemKey, getContainerResource(index), aliasesVisited, requested); in handleGet()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DICUResourceBundleImpl.java243 … String itemKey = ((ICUResourceBundleReader.Table)value).getKey(wholeBundle.reader, index); in handleGet() local
244 if (itemKey == null) { in handleGet()
247 … return createBundleObject(itemKey, getContainerResource(index), aliasesVisited, requested); in handleGet()
/external/icu/icu4c/source/tools/toolutil/
Dpkgitems.cpp324 const char *itemKey; in ures_enumDependencies() local
325 Resource item=res_getTableItemByIndex(pResData, res, i, &itemKey); in ures_enumDependencies()
328 item, itemKey, in ures_enumDependencies()
335 itemName, res, i, itemKey, item); in ures_enumDependencies()
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DTemplateTranslator.java349 JavaExpression itemKey = variableTranslator.translate(node.getVariable()); in caseAWithCommand() local
354 java.writeStatement(callOn(DATA_CONTEXT, methodName, itemKey, value)); in caseAWithCommand()
429 JavaExpression itemKey = variableTranslator.translate(itemVariable); in writeLoop() local
442 java.writeStatement(callOn(DATA_CONTEXT, "createLocalVariableByValue", itemKey, symbol( in writeLoop()
458 JavaExpression itemKey = variableTranslator.translate(itemVariable); in writeEach() local
466 java.writeStatement(callOn(DATA_CONTEXT, "createLocalVariableByPath", itemKey, callOn( in writeEach()
/external/emma/core/java12/com/vladium/emma/report/html/
DReportGenerator.java1415 private static File getItemFile (final File parentDir, final String itemKey) in getItemFile() argument
1418 return new File (itemKey.concat (FILE_EXTENSION)); in getItemFile()
1420 return new File (parentDir, itemKey.concat (FILE_EXTENSION)); in getItemFile()