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

<<31323334353637383940>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AdtPrefs.java 35 import java.util.Locale;
276 mPreviewMode = RenderPreviewMode.valueOf(previewMode.toUpperCase(Locale.US));
592 store.setValue(PREFS_PREVIEWS, previewMode.name().toLowerCase(Locale.US));
  /external/chromium_org/third_party/icu/source/i18n/
smpdtfmt.cpp 152 * with a locale.
192 : fLocale(Locale::getDefault()),
207 fLocale(Locale::getDefault()),
226 fLocale(Locale::getDefault()),
245 const Locale& locale,
248 fLocale(locale),
266 const Locale& locale,
269 fLocale(locale),
    [all...]
gregoimp.h 301 * Construct a CalendarData from the given locale.
302 * @param loc locale to use. The 'calendar' keyword will be ignored.
307 CalendarData(const Locale& loc, const char *type, UErrorCode& status);
350 void initData(const char *locale, const char *type, UErrorCode& status);
  /external/icu4c/i18n/
smpdtfmt.cpp 159 * with a locale.
244 : fLocale(Locale::getDefault()),
260 fLocale(Locale::getDefault()),
280 fLocale(Locale::getDefault()),
300 const Locale& locale,
303 fLocale(locale),
322 const Locale& locale,
325 fLocale(locale),
    [all...]
gregoimp.h 301 * Construct a CalendarData from the given locale.
302 * @param loc locale to use. The 'calendar' keyword will be ignored.
307 CalendarData(const Locale& loc, const char *type, UErrorCode& status);
350 void initData(const char *locale, const char *type, UErrorCode& status);
  /external/icu4c/test/intltest/
rbbitst.cpp 412 (RuleBasedBreakIterator *)BreakIterator::createWordInstance(Locale("th"), status);
694 RuleBasedBreakIterator* bi = (RuleBasedBreakIterator *)BreakIterator::createLineInstance(Locale::getDefault(), status);
697 errcheckln(status, "Failed to create the BreakIterator for default locale in TestEmptyString. - %s", u_errorName(status));
707 const Locale* locList = BreakIterator::getAvailableLocales(locCount);
723 BreakIterator::getDisplayName(Locale::getUS(), result);
724 if (Locale::getDefault() == Locale::getUS() && result != "English (United States)")
728 BreakIterator::getDisplayName(Locale::getFrance(), Locale::getUS(), result);
741 BreakIterator *wb = BreakIterator::createWordInstance(Locale::getDefault(), status)
    [all...]
decoll.cpp 39 myCollation = Collator::createInstance(Locale::getGermany(), status);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncFormatNumb.java 69 // this third argument is not a locale name. It is the name of a
116 dfs = new java.text.DecimalFormatSymbols(java.util.Locale.US);
  /external/chromium/chrome/browser/chromeos/options/
wifi_config_model.cc 34 // Comparison functor for locale-sensitive sorting of certificates by name.
92 // Perform locale-sensitive sorting by certificate name.
97 icu::Locale(g_browser_process->GetApplicationLocale().c_str()),
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputType.h 236 Locale& locale() const;
  /external/chromium_org/third_party/WebKit/Source/platform/text/
LocaleMac.mm 46 static inline String languageFromLocale(const String& locale)
48 String normalizedLocale = locale;
56 static RetainPtr<NSLocale> determineLocale(const String& locale)
60 String localeLanguage = languageFromLocale(locale);
63 // It seems initWithLocaleIdentifier accepts dash-separated locale identifier.
64 return RetainPtr<NSLocale>(AdoptNS, [[NSLocale alloc] initWithLocaleIdentifier:locale]);
67 PassOwnPtr<Locale> Locale::create(const String& locale)
69 return LocaleMac::create(determineLocale(locale).get())
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
decoll.cpp 39 myCollation = Collator::createInstance(Locale::getGermany(), status);
  /external/icu4c/samples/numfmt/
main.cpp 49 Locale us("en", "US");
52 // Create a number formatter for the US locale
57 // and the decimal separator '.', standard in the US locale
96 * usually from the display locale ID used to create this instance)
122 // map the currency code to a locale ID
124 // it would be possible to map to a locale ID, instantiate a currency
185 * usually from the display locale ID used to create this instance)
216 // use locale IDs complete with country code to be sure to
239 printf("show currency formatting (method for %s) in the locale \"%s\"\n",
243 // get a currency formatter for this locale I
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAX1ParserAdapter.java 83 public void setLocale(java.util.Locale locale)
  /frameworks/base/core/java/android/text/
TextDirectionHeuristics.java 73 * Force the paragraph direction to the Locale direction. Falls back to left to right.
75 public static final TextDirectionHeuristic LOCALE = TextDirectionHeuristicLocale.INSTANCE;
246 * Algorithm that uses the Locale direction to force the direction of a paragraph.
256 final int dir = TextUtils.getLayoutDirectionFromLocale(java.util.Locale.getDefault());
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthView.java 48 import java.util.Locale;
202 mFormatter = new Formatter(mStringBuilder, Locale.getDefault());
431 Locale.getDefault()).toUpperCase(Locale.getDefault()), x, y,
  /frameworks/support/v4/java/android/support/v4/text/
TextDirectionHeuristicsCompat.java 66 * Force the paragraph direction to the Locale direction. Falls back to left to right.
68 public static final android.support.v4.text.TextDirectionHeuristicCompat LOCALE =
240 * Algorithm that uses the Locale direction to force the direction of a paragraph.
250 final int dir = TextUtilsCompat.getLayoutDirectionFromLocale(java.util.Locale.getDefault());
  /libcore/luni/src/main/java/java/io/
StreamTokenizer.java 20 import java.util.Locale;
353 sval = sval.toLowerCase(Locale.getDefault());
  /libcore/luni/src/main/native/
libcore_icu_TimeZoneNames.cpp 59 Locale locale = getLocale(env, localeName); local
62 UniquePtr<TimeZoneNames> names(TimeZoneNames::createInstance(locale, status));
  /packages/apps/DeskClock/src/com/android/deskclock/worldclock/
CitiesActivity.java 60 import java.util.Locale;
120 // be in a different language. This map gets reloaded on a locale change, when the new
236 mLayoutDirection = TextUtils.getLayoutDirectionFromLocale(Locale.getDefault());
263 mPattern24 = DateFormat.getBestDateTimePattern(Locale.getDefault(), "Hm");
266 // the list in 12-hour mode in an RTL locale. We can work around this by
268 String pattern12 = DateFormat.getBestDateTimePattern(Locale.getDefault(), "hma");
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
HanziToPinyin.java 23 import java.util.Locale;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateMetadata.java 64 import java.util.Locale;
206 typeString = typeString.toUpperCase(Locale.US);
239 shapeString = shapeString.toUpperCase(Locale.US);
262 sourceTypeString = sourceTypeString.toUpperCase(Locale.US);
  /cts/tests/tests/text/src/android/text/cts/
BidiFormatterTest.java 23 import java.util.Locale;
48 assertEquals(false, BidiFormatter.getInstance(Locale.ENGLISH).isRtlContext());
  /development/samples/Support4Demos/src/com/example/android/supportv4/media/
MediaController.java 37 import java.util.Locale;
164 mFormatter = new Formatter(mFormatBuilder, Locale.getDefault());
  /development/samples/training/location-aware/src/com/example/android/location/
LocationActivity.java 45 import java.util.Locale;
349 Geocoder geocoder = new Geocoder(mContext, Locale.getDefault());

Completed in 1992 milliseconds

<<31323334353637383940>>