• Home
  • Raw
  • Download

Lines Matching full:resource

20 *                           constructor which attempts to read resource bundle
29 * 3/13/97 aliu Rewrote to load in entire resource bundle and store
59 * \brief C++ API: Resource Bundle
65 * A class representing a collection of resource information pertaining to a given
66 * locale. A resource bundle provides a way of accessing locale- specfic information in
67 * a data file. You create a resource bundle that manages the resources for a given
70 * Resource bundles in ICU4C are currently defined using text files which conform to the following
72 * More on resource bundle concepts and syntax can be found in the
90 * @param locale This is the locale this resource bundle is for. To get resources
93 * and all subsequent calls to that resource bundle will return
113 * Construct a resource bundle for the default bundle in the specified package.
127 * Construct a resource bundle for the ICU default bundle.
135 * Standard constructor, onstructs a resource bundle for the locale-specific
144 * @param locale The locale for which to open a resource bundle.
155 * @param original The resource bundle to copy.
161 * Constructor from a C UResourceBundle. The resource bundle is
163 * original resource bundle.
165 * @param res A pointer to the C resource bundle.
175 * @param other The resource bundle to copy.
200 … * Returns the size of a resource. Size for scalar types is always 1, and for vector/table types is
206 * @return number of resources in a given resource.
213 * returns a string from a string resource type
226 … * returns a binary data from a resource. Can be used at most primitive resource types (binaries,
242 * returns an integer vector from a resource.
256 * returns an unsigned integer from a resource.
270 * returns a signed integer from a resource.
284 * Checks whether the resource has another element to iterate over.
293 * Resets the internal context of a resource so that iteration starts from the first element.
301 * Returns the key associated with this resource. Not all the resources have a key - only
304 * @return a key associated to this resource, or NULL if it doesn't have a key
311 * Gets the locale ID of the resource bundle as a string.
314 * @return the locale ID of the resource bundle as a string
322 * Returns the type of a resource. Available types are defined in enum UResType
324 * @return type of the given resource.
331 * Returns the next resource in a given resource or NULL if there are no more resources
341 * Returns the next string in a resource or NULL if there are no more resources
352 * Returns the next string in a resource or NULL if there are no more resources
365 * Returns the resource in a resource at the specified index.
367 * @param index an index to the wanted resource.
369 * @return ResourceBundle object. If there is an error, resource is invalid.
377 * Returns the string in a given resource at the specified index.
389 * Returns a resource in a resource that has a given key. This procedure works only with table
392 * @param key a key associated with the wanted resource
394 * @return ResourceBundle object. If there is an error, resource is invalid.
402 * Returns a string in a resource that has a given key. This procedure works only with table
419 * @return A version number string as specified in the resource bundle or its parent.
432 * as specified in the resource bundle or its parent.