HomeSort by relevance Sort by last modified time
    Searched refs:Locale (Results 801 - 825 of 1279) sorted by null

<<31323334353637383940>>

  /frameworks/base/media/java/android/media/
MediaFile.java 31 import java.util.Locale;
283 return sFileTypeMap.get(path.substring(lastDot + 1).toUpperCase(Locale.ROOT));
329 String extension = fileName.substring(lastDot + 1).toUpperCase(Locale.ROOT);
  /frameworks/base/services/java/com/android/server/location/
ComprehensiveCountryDetector.java 32 import java.util.Locale;
44 * <li>Phone's locale</li>
253 * @return the country from the system's locale.
256 Locale defaultLocale = Locale.getDefault();
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DayPickerView.java 40 import java.util.Locale;
64 private static SimpleDateFormat YEAR_FORMAT = new SimpleDateFormat("yyyy", Locale.getDefault());
445 sbuf.append(cal.getDisplayName(Calendar.MONTH, Calendar.LONG, Locale.getDefault()));
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLCipherRSA.java 36 import java.util.Locale;
89 final String modeUpper = mode.toUpperCase(Locale.ROOT);
99 final String paddingUpper = padding.toUpperCase(Locale.ROOT);
  /libcore/luni/src/test/java/libcore/java/lang/
OldStringTest.java 22 import java.util.Locale;
435 Locale l = new Locale("UK");
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 25 import java.util.Locale;
336 if (encoding != null && encoding.toLowerCase(Locale.US).startsWith("utf")) {
346 if (encoding.toLowerCase(Locale.US).startsWith("utf")) {
  /packages/apps/Camera2/src/com/android/camera/ui/
DetailsDialog.java 39 import java.util.Locale;
78 private final Locale mDefaultLocale = Locale.getDefault();
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
DialogDetailsView.java 44 import java.util.Locale;
122 private final Locale mDefaultLocale = Locale.getDefault();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryAddWordContents.java 34 import java.util.Locale;
49 public static final String EXTRA_LOCALE = "locale";
111 // locale may be null, this means default locale
113 /* package */ void updateLocale(final String locale) {
114 mLocale = null == locale ? Locale.getDefault().toString() : locale;
192 + "=? AND " + UserDictionary.Words.LOCALE + "=?";
194 + "=? AND " + UserDictionary.Words.LOCALE + " is null"
    [all...]
UserDictionarySettings.java 43 import java.util.Locale;
87 // Either the locale is empty (means the word is applicable to all locales)
88 // or the word equals our current locale
90 UserDictionary.Words.LOCALE + "=?";
92 UserDictionary.Words.LOCALE + " is null";
127 null == intent ? null : intent.getStringExtra("locale");
131 null == arguments ? null : arguments.getString("locale");
133 final String locale; local
135 locale = localeFromArguments;
137 locale = localeFromIntent
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
NewItemSelectionDialog.java 45 import java.util.Locale;
315 name = name.substring(1).toLowerCase(Locale.US);
323 String name2 = desc.getXmlLocalName().toLowerCase(Locale.US);
  /cts/tests/tests/telephony/src/android/telephony/cts/
PhoneNumberUtilsTest.java 33 import java.util.Locale;
124 int formatType = PhoneNumberUtils.getFormatTypeForLocale(Locale.CHINA);
126 formatType = PhoneNumberUtils.getFormatTypeForLocale(Locale.US);
128 formatType = PhoneNumberUtils.getFormatTypeForLocale(Locale.JAPAN);
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
AttributedCharacterIteratorAttributeTest.java 28 import java.util.Locale;
  /external/chromium_org/third_party/icu/source/i18n/
brktrans.cpp 162 // tied to the Thai locale.
163 bi = BreakIterator::createWordInstance(Locale::getEnglish(), status);
format.cpp 191 Locale
  /external/chromium_org/third_party/icu/source/test/intltest/
escoll.cpp 38 myCollation = Collator::createInstance(Locale("es", "ES", ""),status);
trcoll.cpp 22 myCollation = Collator::createInstance(Locale("tr", "", ""),status);
  /external/icu4c/i18n/
brktrans.cpp 162 // tied to the Thai locale.
163 bi = BreakIterator::createWordInstance(Locale::getEnglish(), status);
format.cpp 195 Locale
  /external/icu4c/i18n/unicode/
tznames.h 82 * by <a href="http://www.unicode.org/reports/tr35/">UTS#35 Unicode Locale Data Markup Language (LDML)</a>.
91 * In <a href="http://cldr.unicode.org/">CLDR</a> (which uses LDML for representing locale data), the display name
123 * uses the locale data imported from CLDR. In CLDR, set of meta zone IDs and mappings between zone IDs and meta zone
126 * what locale is used for getting an instance of <code>TimeZoneNames</code>.
164 * Returns an instance of <code>TimeZoneDisplayNames</code> for the specified locale.
166 * @param locale The locale.
171 static TimeZoneNames* U_EXPORT2 createInstance(const Locale& locale, UErrorCode& status);
  /external/icu4c/test/intltest/
caltest.h 194 * @param i index of 'other' locale to return
195 * @return locale ID
209 * Construct a calendar of the specified locale, and determine its earliest supported date
211 * @param locale locale of calendar to check
215 static UDate minDateOfCalendar(const Locale& locale, UBool &isGregorian, UErrorCode& status);
escoll.cpp 38 myCollation = Collator::createInstance(Locale("es", "ES", ""),status);
trcoll.cpp 22 myCollation = Collator::createInstance(Locale("tr", "", ""),status);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 197 SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd'T'HHmmss", Locale.ENGLISH);
198 SimpleDateFormat dfShort = new SimpleDateFormat("yyyyMMdd", Locale.ENGLISH);
216 Strftime strftime = new Strftime(format, Locale.getDefault());
351 * @see #Strftime(String, Locale)
362 * @param locale the locale to use for locale-specific conversions
364 public Strftime(String origFormat, Locale locale) {
366 simpleDateFormat = new SimpleDateFormat(convertedFormat, locale);
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
main.java 42 import java.util.Locale;
88 Locale locale = new Locale("en", "US"); local
89 Locale.setDefault(locale);

Completed in 3247 milliseconds

<<31323334353637383940>>