/external/skia/include/utils/ |
D | SkLua.h | 45 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/ |
D | agg_dash.lua | 13 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/ |
D | locresdata.cpp | 44 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()
|
D | uresdata.c | 73 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()
|
D | ulocimp.h | 32 const char *tableKey,
|
D | locdispnames.cpp | 296 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/ |
D | locdspnm.cpp | 73 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/ |
D | LocaleMatcher.java | 249 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()
|