Lines Matching refs:provider

59      * set of provider implementations of a particular locale sensitive service.
66 * specified provider SPI
72 * A Map that retains Locale->provider mapping
131 for (LocaleServiceProvider provider : ServiceLoader.loadInstalled(c)) {
132 providers.add(provider);
194 * Returns an array of available locales for all the provider classes.
196 * provider, including the JRE.
198 * @return an array of the available locales for all provider classes
207 * provider, including the JRE.
228 * @return list of the provider locales
246 * Returns whether any provider for this locale sensitive
249 * @return true if any provider is available
291 * Returns the provider's localized object for the specified
295 * is called to obtain the provider's instance.
297 * @param params provider specific parameters
298 * @return provider's instance, or null.
307 * Returns the provider's localized name for the specified
311 * is called to obtain the provider's instance.
316 * @param params provider specific parameters
317 * @return provider's instance, or null.
328 * Returns the provider's localized name for the specified
332 * is called to obtain the provider's instance.
339 * @param params provider specific parameters
340 * @return provider's instance, or null.
366 // check whether a provider has an implementation that's closer
392 "A locale sensitive service provider returned null for a localized objects, which should not happen. provider: " + lsp + " locale: " + locale);
428 * Returns a locale service provider instance that supports
432 * @return the provider, or null if there is
433 * no provider available.
441 LocaleServiceProvider provider = providersCache.get(locale);
442 if (provider != NullProvider.INSTANCE) {
443 return provider;
514 * A dummy locale service provider that indicates there is no
515 * provider available
531 * Returns an object from the provider
533 * @param lsp the provider
535 * @param key key string to localize, or null if the provider is not
536 * a name provider
537 * @param params provider specific params
538 * @return localized object from the provider