HomeSort by relevance Sort by last modified time
    Searched full:resourcebundle (Results 26 - 50 of 514) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
SampleBundleClass.java 20 import java.util.ResourceBundle;
28 private static ResourceBundle bundle;
37 bundle = ResourceBundle.getBundle("tests.api.simple.SampleBundleClass");
ListResourceBundleTest.java 23 import java.util.ResourceBundle;
31 ResourceBundle bundle;
34 bundle = ResourceBundle.getBundle(name, new Locale("fr", "FR", "VAR"));
53 bundle = (ListResourceBundle) ResourceBundle.getBundle(name, new Locale("fr", "FR", "VAR"));
MissingResourceExceptionTest.java 22 import java.util.ResourceBundle;
38 ResourceBundle.getBundle("Non-ExistentBundle");
52 ResourceBundle.getBundle("Non-ExistentBundle");
66 ResourceBundle.getBundle("Non-ExistentBundle");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/support/
P.java 20 import java.util.ResourceBundle;
36 ResourceBundle b = ResourceBundle.getBundle(cls.getName());
  /libcore/ojluni/src/main/java/java/util/
PropertyResourceBundle.java 49 * <code>ResourceBundle</code> that manages resources for a locale
51 * {@link ResourceBundle ResourceBundle} for more information about resource
57 * files containing the resource data. <code>ResourceBundle.getBundle</code>
60 * {@link ResourceBundle#getBundle(java.lang.String, java.util.Locale, java.lang.ClassLoader) ResourceBundle.getBundle}
112 * @see ResourceBundle
117 public class PropertyResourceBundle extends ResourceBundle {
152 // Implements java.util.ResourceBundle.handleGetObject; inherits javadoc specification.
162 * this <code>ResourceBundle</code> and its parent bundles
    [all...]
ResourceBundle.java 113 * the <code>ResourceBundle</code> class using the
118 * ResourceBundle myResources =
119 * ResourceBundle.getBundle("MyResources", currentLocale);
163 * Besides <code>getString</code>, <code>ResourceBundle</code> also provides
175 * The Java Platform provides two subclasses of <code>ResourceBundle</code>,
185 * do not suit your needs, you can write your own <code>ResourceBundle</code>
189 * <h4>ResourceBundle.Control</h4>
191 * The {@link ResourceBundle.Control} class provides information necessary
193 * factory methods that take a <code>ResourceBundle.Control</code>
212 * ResourceBundle.Control.getTimeToLive}, and {@lin
    [all...]
ListResourceBundle.java 47 * <code>ResourceBundle</code> that manages resources for a locale
48 * in a convenient and easy to use list. See <code>ResourceBundle</code> for
108 * @see ResourceBundle
112 public abstract class ListResourceBundle extends ResourceBundle {
120 // Implements java.util.ResourceBundle.handleGetObject; inherits javadoc specification.
134 * this <code>ResourceBundle</code> and its parent bundles.
137 * this <code>ResourceBundle</code> and its parent bundles.
146 ResourceBundle parent = this.parent;
153 * <em>only</em> in this <code>ResourceBundle</code>.
156 * <code>ResourceBundle</code
    [all...]
  /external/icu/icu4c/source/common/unicode/
resbund.h 74 * The ResourceBundle class is not suitable for subclassing.
78 class U_COMMON_API ResourceBundle : public UObject {
90 * ResourceBundle passing Locale::FRENCH for the "locale" parameter,
106 ResourceBundle(const UnicodeString& packageName,
121 ResourceBundle(const UnicodeString& packageName,
130 ResourceBundle(UErrorCode &err);
146 ResourceBundle(const char* packageName,
156 ResourceBundle(const ResourceBundle &original);
167 ResourceBundle(UResourceBundle *res
    [all...]
ures.h 216 *@param resourceBundle resource bundle containing the desired strings
229 ures_countArrayItems(const UResourceBundle* resourceBundle,
238 * @param resourceBundle a pointer to a resourceBundle struct. Can be NULL.
243 ures_close(UResourceBundle* resourceBundle);
266 * Return the version number associated with this ResourceBundle as a string. Please
269 * @param resourceBundle The resource bundle for which the version is checked.
276 ures_getVersionNumber(const UResourceBundle* resourceBundle);
280 * Return the version number associated with this ResourceBundle as an
294 * Return the name of the Locale associated with this ResourceBundle. This API allow
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
DataBinder.java 21 import android.databinding.tool.store.ResourceBundle;
43 public DataBinder(ResourceBundle resourceBundle) {
45 for (Map.Entry<String, List<ResourceBundle.LayoutFileBundle>> entry :
46 resourceBundle.getLayoutBundles().entrySet()) {
47 for (ResourceBundle.LayoutFileBundle bundle : entry.getValue()) {
  /libcore/ojluni/src/main/java/sun/util/resources/
OpenListResourceBundle.java 46 import java.util.ResourceBundle;
51 * Subclass of <code>ResourceBundle</code> which mimics
60 public abstract class OpenListResourceBundle extends ResourceBundle {
68 // Implements java.util.ResourceBundle.handleGetObject; inherits javadoc specification.
79 * Implementation of ResourceBundle.getKeys.
82 ResourceBundle parent = this.parent;
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/iuc/
Sample40_PopMsg.java 38 UResourceBundle resourceBundle =
45 String pattern = resourceBundle.getString("welcome");
54 String info = resourceBundle.getString("info");
  /external/icu/icu4c/source/tools/genrb/
parse.h 29 /* Parse a ResourceBundle text file */
  /external/icu/icu4c/source/test/intltest/
restsnew.cpp 252 ResourceBundle test1((UnicodeString)testdatapath, err);
253 ResourceBundle test2(testdatapath, locale, err);
281 strcpy(versionID1, "44.0"); // hardcoded, please change if the default.txt file or ResourceBundle::kVersionSeparater is changed.
283 strcpy(versionID2, "55.0"); // hardcoded, please change if the te_IN.txt file or ResourceBundle::kVersionSeparater is changed.
321 ResourceBundle test1(testdatapath, *locale, err);
339 ResourceBundle bundle = test1.get(data[i], err);
358 ResourceBundle rowbundle=bundle.get(row, err);
387 ResourceBundle errbundle=bundle.getNext(err);
409 // TODO: add operator== and != to ResourceBundle
411 equalRB(ResourceBundle &a, ResourceBundle &b)
    [all...]
  /external/apache-harmony/logging/src/test/java-internal/java/util/logging/
LoggerExtension.java 20 import java.util.ResourceBundle;
27 public static ResourceBundle loadResourceBundle(String resourceBundleName) {
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsI18N2.java 22 import com.beust.jcommander.ResourceBundle;
25 @ResourceBundle("MessageBundle")
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/test/
StubResourceBundle.groovy 19 * Stub implementation of ResourceBundle for testing. Provide an optional Map of entries in the constructor,
23 class StubResourceBundle extends ResourceBundle {
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/
MockLayoutBinder.java 18 import android.databinding.tool.store.ResourceBundle;
25 super(new ResourceBundle.LayoutFileBundle(new File("./blah.xml"), "blah.xml", "layout",
  /external/jcommander/src/main/java/com/beust/jcommander/
ParameterDescription.java 32 import java.util.ResourceBundle;
48 private ResourceBundle m_bundle;
57 ResourceBundle bundle, JCommander jc) {
70 ResourceBundle bundle, JCommander jc) {
81 private ResourceBundle findResourceBundle(Object o) {
82 ResourceBundle result = null;
85 if (p != null && ! isEmpty(p.resourceBundle())) {
86 result = ResourceBundle.getBundle(p.resourceBundle(), Locale.getDefault());
88 com.beust.jcommander.ResourceBundle a = o.getClass().getAnnotation
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/res/
XResourceBundle.java 26 import java.util.ResourceBundle;
50 * Return a named ResourceBundle for a particular locale. This method mimics the behavior
51 * of ResourceBundle.getBundle().
68 return (XResourceBundle) ResourceBundle.getBundle(resourceName, locale);
77 return (XResourceBundle) ResourceBundle.getBundle(
  /libcore/ojluni/src/main/java/java/util/logging/
LogRecord.java 61 * <li> The ResourceBundle is not transmitted as part of the serialized
141 private transient ResourceBundle resourceBundle;
209 * This is the ResourceBundle that should be used to localize
212 * ResourceBundle is available.
214 public ResourceBundle getResourceBundle() {
215 return resourceBundle;
223 public void setResourceBundle(ResourceBundle bundle) {
224 resourceBundle = bundle;
230 * This is the name for the ResourceBundle that should b
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Holiday.java 14 import java.util.ResourceBundle;
52 ResourceBundle bundle = UResourceBundle.getBundleInstance("android.icu.impl.data.HolidayBundle", locale);
147 * as a key to look up the holiday's localized name in a ResourceBundle object
152 * @see ResourceBundle
163 * as a key to look up the holiday's localized name in a ResourceBundle object
168 * @see ResourceBundle
176 ResourceBundle bundle = UResourceBundle.getBundleInstance("android.icu.impl.data.HolidayBundle", locale);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Holiday.java 13 import java.util.ResourceBundle;
54 ResourceBundle bundle = UResourceBundle.getBundleInstance("com.ibm.icu.impl.data.HolidayBundle", locale);
155 * as a key to look up the holiday's localized name in a ResourceBundle object
160 * @see ResourceBundle
172 * as a key to look up the holiday's localized name in a ResourceBundle object
177 * @see ResourceBundle
186 ResourceBundle bundle = UResourceBundle.getBundleInstance("com.ibm.icu.impl.data.HolidayBundle", locale);
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/1.0/
compilerCommon-1.0-javadoc.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/1.1/
compilerCommon-1.1-javadoc.jar 

Completed in 1047 milliseconds

12 3 4 5 6 7 8 91011>>