Lines Matching refs:table
32 * Lookup a resource bundle table item with fallback on the table level.
35 * This function takes the name of a top-level table and of an item in that table
36 * and performs a lookup of both, falling back until a bundle contains a table
52 UResourceBundle *rb=NULL, table, subTable;
76 ures_initStackObject(&table);
78 ures_getByKeyWithFallback(rb, tableKey, &table, &errorCode);
82 ures_getByKeyWithFallback(&table,subTableKey, &subTable, &errorCode);
90 ures_getByKeyWithFallback(&table,subTableKey, &table, &errorCode);
93 item = ures_getStringByKeyWithFallback(&table, itemKey, pLength, &errorCode);
106 item = ures_getStringByKeyWithFallback(&table, replacement, pLength, &errorCode);
125 fallbackLocale = ures_getStringByKeyWithFallback(&table, "Fallback", &len, &errorCode);
149 /* done with the locale string - ready to close table and rb */
151 ures_close(&table);