Home
last modified time | relevance | path

Searched refs:tableKey (Results 1 – 8 of 8) sorted by relevance

/external/skia/include/utils/
DSkLua.h45 void pushBool(bool, const char tableKey[] = NULL);
46 void pushString(const char[], const char tableKey[] = NULL);
47 void pushString(const char[], size_t len, const char tableKey[] = NULL);
48 void pushString(const SkString&, const char tableKey[] = NULL);
49 void pushArrayU16(const uint16_t[], int count, const char tableKey[] = NULL);
52 void pushColor(SkColor, const char tableKey[] = NULL);
53 void pushU32(uint32_t, const char tableKey[] = NULL);
54 void pushScalar(SkScalar, const char tableKey[] = NULL);
55 void pushRect(const SkRect&, const char tableKey[] = NULL);
56 void pushRRect(const SkRRect&, const char tableKey[] = NULL);
[all …]
/external/skia/tools/lua/
Dagg_dash.lua13 function increment(table, tableKey, key, value)
14 if (table[tableKey] == nil) then
15 table[tableKey] = {}
17 increment_inner(table[tableKey], key, value)
/external/icu/icu4c/source/common/
Dlocresdata.cpp44 const char *tableKey, const char *subTableKey, in uloc_getTableStringWithFallback() argument
76 ures_getByKeyWithFallback(rb, tableKey, &table, &errorCode); in uloc_getTableStringWithFallback()
97 if(uprv_strcmp(tableKey, "Countries")==0){ in uloc_getTableStringWithFallback()
99 }else if(uprv_strcmp(tableKey, "Languages")==0){ in uloc_getTableStringWithFallback()
Duresdata.c73 const char *tableKey; in _res_findTableItem() local
82 tableKey = RES_GET_KEY16(pResData, keyOffsets[mid]); in _res_findTableItem()
84 result = uprv_strcmp(key, tableKey); in _res_findTableItem()
86 result = uprv_compareInvCharsAsAscii(key, tableKey); in _res_findTableItem()
94 *realKey=tableKey; in _res_findTableItem()
104 const char *tableKey; in _res_findTable32Item() local
113 tableKey = RES_GET_KEY32(pResData, keyOffsets[mid]); in _res_findTable32Item()
115 result = uprv_strcmp(key, tableKey); in _res_findTable32Item()
117 result = uprv_compareInvCharsAsAscii(key, tableKey); in _res_findTable32Item()
125 *realKey=tableKey; in _res_findTable32Item()
Dulocimp.h32 const char *tableKey,
Dlocdispnames.cpp296 const char *tableKey, in _getStringOrCopyKey() argument
312 s=ures_getStringByKey(rb, tableKey, &length, pErrorCode); in _getStringOrCopyKey()
318 if (!uprv_strncmp(tableKey, "Languages", 9) && uprv_strtol(itemKey, NULL, 10)) { in _getStringOrCopyKey()
323 tableKey, in _getStringOrCopyKey()
/external/icu/icu4c/source/i18n/
Dlocdspnm.cpp73 UnicodeString& get(const char* tableKey, const char* itemKey,
75 UnicodeString& get(const char* tableKey, const char* subTableKey, const char* itemKey,
78 UnicodeString& getNoFallback(const char* tableKey, const char* itemKey,
80 UnicodeString& getNoFallback(const char* tableKey, const char* subTableKey, const char* itemKey,
85 ICUDataTable::get(const char* tableKey, const char* itemKey, UnicodeString& result) const { in get() argument
86 return get(tableKey, NULL, itemKey, result); in get()
90 ICUDataTable::getNoFallback(const char* tableKey, const char* itemKey, UnicodeString& result) const… in getNoFallback() argument
91 return getNoFallback(tableKey, NULL, itemKey, result); in getNoFallback()
120 ICUDataTable::get(const char* tableKey, const char* subTableKey, const char* itemKey, in get() argument
126 tableKey, subTableKey, itemKey, in get()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DLocaleMatcher.java249 for (final ULocale tableKey : maximizedLanguageToWeight.keySet()) { in getBestMatchInternal()
250 R2<ULocale, Double> row = maximizedLanguageToWeight.get(tableKey); in getBestMatchInternal()
251 final double match = match(languageCode, maximized, tableKey, row.get0()); in getBestMatchInternal()
253 System.out.println("\t" + tableKey + ";\t" + row.toString() + ";\t" + match + "\n"); in getBestMatchInternal()
258 bestTableMatch = tableKey; in getBestMatchInternal()