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

/external/skia/include/utils/
H A 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[]
[all...]
/external/skia/tools/lua/
H A 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/
H A Dlocresdata.cpp44 const char *tableKey, const char *subTableKey,
76 ures_getByKeyWithFallback(rb, tableKey, &table, &errorCode);
97 if(uprv_strcmp(tableKey, "Countries")==0){
99 }else if(uprv_strcmp(tableKey, "Languages")==0){
43 uloc_getTableStringWithFallback(const char *path, const char *locale, const char *tableKey, const char *subTableKey, const char *itemKey, int32_t *pLength, UErrorCode *pErrorCode) argument
H A Dulocimp.h32 const char *tableKey,
H A Duresdata.c73 const char *tableKey; local
82 tableKey = RES_GET_KEY16(pResData, keyOffsets[mid]);
84 result = uprv_strcmp(key, tableKey);
86 result = uprv_compareInvCharsAsAscii(key, tableKey);
94 *realKey=tableKey;
104 const char *tableKey; local
113 tableKey = RES_GET_KEY32(pResData, keyOffsets[mid]);
115 result = uprv_strcmp(key, tableKey);
117 result = uprv_compareInvCharsAsAscii(key, tableKey);
125 *realKey=tableKey;
[all...]
H A Dlocdispnames.cpp296 const char *tableKey,
312 s=ures_getStringByKey(rb, tableKey, &length, pErrorCode);
318 if (!uprv_strncmp(tableKey, "Languages", 9) && uprv_strtol(itemKey, NULL, 10)) {
323 tableKey,
295 _getStringOrCopyKey(const char *path, const char *locale, const char *tableKey, const char* subTableKey, const char *itemKey, const char *substitute, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
/external/icu/icu4c/source/i18n/
H A 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 { argument
86 return get(tableKey, NULL, itemKey, result);
90 ICUDataTable::getNoFallback(const char* tableKey, const char* itemKey, UnicodeString& result) const { argument
91 return getNoFallback(tableKey, NULL, itemKey, result);
120 ICUDataTable::get(const char* tableKey, const char* subTableKey, const char* itemKey, argument
126 tableKey, subTableKe
135 getNoFallback(const char* tableKey, const char* subTableKey, const char* itemKey, UnicodeString& result) const argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DLocaleMatcher.java249 for (final ULocale tableKey : maximizedLanguageToWeight.keySet()) {
250 R2<ULocale, Double> row = maximizedLanguageToWeight.get(tableKey);
251 final double match = match(languageCode, maximized, tableKey, row.get0());
253 System.out.println("\t" + tableKey + ";\t" + row.toString() + ";\t" + match + "\n");
258 bestTableMatch = tableKey;

Completed in 235 milliseconds