Lines Matching refs:table
30 * Lookup a resource bundle table item with fallback on the table level.
33 * This function takes the name of a top-level table and of an item in that table
34 * and performs a lookup of both, falling back until a bundle contains a table
50 UResourceBundle *rb=NULL, table, subTable;
74 ures_initStackObject(&table);
76 ures_getByKeyWithFallback(rb, tableKey, &table, &errorCode);
80 ures_getByKeyWithFallback(&table,subTableKey, &subTable, &errorCode);
88 ures_getByKeyWithFallback(&table,subTableKey, &table, &errorCode);
91 item = ures_getStringByKeyWithFallback(&table, itemKey, pLength, &errorCode);
104 item = ures_getStringByKeyWithFallback(&table, replacement, pLength, &errorCode);
123 fallbackLocale = ures_getStringByKeyWithFallback(&table, "Fallback", &len, &errorCode);
147 /* done with the locale string - ready to close table and rb */
149 ures_close(&table);