Lines Matching defs:bundle

43  * flag to distinguish whether this struct is for a real bundle with a pool,
47 char *fName; /* name of the locale for bundle - still to decide whether it is original or fallback */
48 char *fPath; /* path to bundle - used for distinguishing between resources with the same name */
80 * an ancestor bundle.
105 * StackUResourceBundle bundle;
106 * foo(bundle.getAlias());
110 * UResourceBundle bundle;
111 * ures_initStackObject(&bundle);
112 * foo(&bundle);
113 * ures_close(&bundle);
130 UResourceBundle* getAlias() { return &bundle; }
132 UResourceBundle& ref() { return bundle; }
133 const UResourceBundle& ref() const { return bundle; }
142 UResourceBundle bundle;
150 * Opens a resource bundle for the locale;
151 * if there is not even a base language bundle, then loads the root bundle;
195 * the supplied resource, for example, if you have "en_US" resource bundle opened, you might ask for
248 * is defined in a resource bundle and a parent resource bundle, normally no fallback occurs
249 * on the sub-resources because the table is defined in the current resource bundle, but this
270 * is defined in a resource bundle and a parent resource bundle, normally no fallback occurs
271 * on the sub-resources because the table is defined in the current resource bundle, but this
292 ures_getValueWithFallback(const UResourceBundle *bundle, const char *path,
297 * Locates the resource specified by `path` in the resource bundle specified by `bundle` (performing any
299 * resource. Then walks the bundle's parent chain, calling `put()` on the sink for each item in the
301 * @param bundle The bundle to search
307 ures_getAllItemsWithFallback(const UResourceBundle *bundle, const char *path,
311 * Locates the resource specified by `path` in the resource bundle specified by `bundle` (performing any
315 * if that value is an alias, the value you get by following the alias). Then walks back over the bundle's
318 * @param bundle The bundle to search
326 ures_getAllChildrenWithFallback(const UResourceBundle *bundle, const char *path,
333 * @param resB bundle containing version number
349 * @param resourceBundle The resource bundle for which the version is checked.
350 * @return A version number string as specified in the resource bundle or its parent.
360 * "en_US_CALIFORNIA" and only "en_US" bundle exists, "en_US" will be returned.
366 * @param resourceBundle resource bundle in question
375 * Same as ures_openDirect() but uses the fill-in parameter instead of allocating a new bundle.