Searched defs:getInstance (Results 201 - 205 of 205) sorted by relevance

123456789

/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
H A DX509Name.java326 public static X509Name getInstance( method in class:X509Name
330 return getInstance(ASN1Sequence.getInstance(obj, explicit));
333 public static X509Name getInstance( method in class:X509Name
/dalvik/libcore/text/src/main/java/java/text/
H A DNumberFormat.java52 * myString = NumberFormat.getInstance().format(myNumber);
63 * NumberFormat nf = NumberFormat.getInstance();
72 * {@code getInstance}.
76 * NumberFormat nf = NumberFormat.getInstance(Locale.FRENCH);
90 * Use {@code getInstance} or {@code getNumberInstance} to get the normal number
333 * @return the currency that was set in getInstance() or in setCurrency(),
362 return getInstance(localeData.currencyPattern, locale);
387 NumberFormat result = getInstance(localeData.integerPattern, locale);
399 public final static NumberFormat getInstance() { method in class:NumberFormat
411 public static NumberFormat getInstance(Local method in class:NumberFormat
416 private static NumberFormat getInstance(String pattern, Locale locale) { method in class:NumberFormat
[all...]
H A DDateFormat.java541 public final static DateFormat getInstance() { method in class:DateFormat
/dalvik/libcore/luni/src/main/java/java/util/
H A DCalendar.java42 * method, {@code getInstance}, for getting a default instance of
43 * this class for general use. {@code Calendar}'s {@code getInstance} method
47 * <pre>Calendar rightNow = Calendar.getInstance()</pre>
959 public static synchronized Calendar getInstance() { method in class:Calendar
971 public static synchronized Calendar getInstance(Locale locale) { method in class:Calendar
984 public static synchronized Calendar getInstance(TimeZone timezone) { method in class:Calendar
999 public static synchronized Calendar getInstance(TimeZone timezone, method in class:Calendar
/dalvik/libcore/security/src/main/java/java/security/
H A DKeyStore.java125 public static KeyStore getInstance(String type) throws KeyStoreException { method in class:KeyStore
131 engine.getInstance(type, null);
161 public static KeyStore getInstance(String type, String provider) method in class:KeyStore
171 return getInstance(type, impProvider);
197 public static KeyStore getInstance(String type, Provider provider) method in class:KeyStore
209 engine.getInstance(type, provider, null);
1059 .getInstance(typeForKeyStore) : KeyStore
1060 .getInstance(typeForKeyStore, providerForKeyStore));

Completed in 127 milliseconds

123456789