HomeSort by relevance Sort by last modified time
    Searched refs:locale (Results 601 - 625 of 2351) sorted by null

<<21222324252627282930>>

  /packages/apps/Tag/src/com/android/apps/tag/record/
TextRecord.java 35 import java.util.Locale;
61 public String getSnippet(Context context, Locale locale) {
72 * TODO: this should return a {@link java.util.Locale}
129 public static NdefRecord newTextRecord(String text, Locale locale) {
130 return newTextRecord(text, locale, true);
133 public static NdefRecord newTextRecord(String text, Locale locale, boolean encodeInUtf8) {
135 Preconditions.checkNotNull(locale);
    [all...]
  /external/chromium/chrome/browser/chromeos/
customization_document.cc 111 const std::string& locale,
120 if (dictionary_content->GetDictionary(locale, &locale_dictionary)) {
206 const std::string& locale) const {
207 return GetLocaleSpecificString(locale, kSetupContentAttr, kHelpPageAttr);
211 const std::string& locale) const {
212 return GetLocaleSpecificString(locale, kSetupContentAttr, kEulaPageAttr);
233 const std::string& locale, const std::string& id) const {
237 if (localized_strings->GetDictionary(locale, &locale_dict) &&
347 const std::string& locale) const {
349 locale, kAppContentAttr, kInitialStartPageAttr)
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
resbund.h 30 * Modified to load locale index out of new file
64 * locale. A resource bundle provides a way of accessing locale- specfic information in
66 * locale and then ask it for individual resources.
83 * @param packageName The packageName and locale together point to an ICU udata object,
84 * as defined by <code> udata_open( packageName, "res", locale, err) </code>
88 * @param locale This is the locale this resource bundle is for. To get resources
89 * for the French locale, for example, you would create a
90 * ResourceBundle passing Locale::FRENCH for the "locale" parameter
    [all...]
  /external/chromium_org/v8/test/intl/break-iterator/
property-override.js 30 // Object.defineProperty(Array.prototype, 'locale', {
38 // would throw in case of (JS) x.locale = 'us' or (C++) x->Set('locale', 'us').
53 'type', 'locale'
64 var locale = Intl.v8BreakIterator().resolvedOptions().locale; variable
  /external/chromium_org/v8/test/intl/collator/
property-override.js 30 // Object.defineProperty(Array.prototype, 'locale', {
38 // would throw in case of (JS) x.locale = 'us' or (C++) x->Set('locale', 'us').
54 'locale', 'numeric', 'usage', 'collation'
65 var locale = Intl.Collator().resolvedOptions().locale; variable
  /external/icu4c/common/unicode/
resbund.h 30 * Modified to load locale index out of new file
64 * locale. A resource bundle provides a way of accessing locale- specfic information in
66 * locale and then ask it for individual resources.
83 * @param packageName The packageName and locale together point to an ICU udata object,
84 * as defined by <code> udata_open( packageName, "res", locale, err) </code>
88 * @param locale This is the locale this resource bundle is for. To get resources
89 * for the French locale, for example, you would create a
90 * ResourceBundle passing Locale::FRENCH for the "locale" parameter
    [all...]
  /external/icu4c/i18n/unicode/
plurrule.h 107 * could be defined by users or from ICU locale data. There are 6
188 * locale.
189 * Same as forLocale(locale, UPLURAL_TYPE_CARDINAL, status).
191 * @param locale The locale for which a <code>PluralRules</code> object is
196 * this locale. If there's no predefined rules for this locale,
197 * the rules for the closest parent in the locale hierarchy
202 static PluralRules* U_EXPORT2 forLocale(const Locale& locale, UErrorCode& status)
    [all...]
  /external/icu4c/test/perf/DateFmtPerf/
DateFmtPerf.h 84 boundary = BreakIterator::createCharacterInstance(Locale::getUS(), *status);
145 char locale[25]; member in class:DateFmtFunction
156 strcpy(locale, loc);
173 Locale loc(locale);
239 char locale[25]; member in class:NumFmtFunction
250 strcpy(locale, loc);
255 Locale loc(locale);
258 // Create a number formatter for the locale
368 char locale[25]; member in class:StdioNumFmtFunction
427 char locale[25]; member in class:CollationFunction
    [all...]
  /external/srec/srec/Vocabulary/src/
Vocabulary.c 25 ESR_ReturnCode SR_VocabularyCreate(ESR_Locale locale, SR_Vocabulary** self)
33 impl->locale = locale;
34 impl->ttp_lang = TTP_LANG(locale);
75 ESR_ReturnCode SR_VocabularyGetLanguage(SR_Vocabulary* self, ESR_Locale* locale)
82 return self->getLanguage(self, locale);
111 static ESR_ReturnCode getTable(ESR_Locale locale, const LCHAR* m[])
116 switch (locale)
211 ESR_ReturnCode SR_Vocabulary_etiinf_conv_multichar(ESR_Locale locale, const LCHAR* single, LCHAR* multi, size_t max_len)
215 ESR_ReturnCode rc = getTable(locale, m)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.locales/
imbue.pass.cpp 14 // locale imbue(const locale& loc);
18 #include <locale>
21 #include "platform_support.h" // locale name macros
83 std::locale l = b.imbue(std::locale(LOCALE_en_US_UTF_8));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate/locale.collate.members/
compare.pass.cpp 10 // <locale>
17 #include <locale>
22 std::locale l = std::locale::classic();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
is_1.pass.cpp 10 // <locale>
16 #include <locale>
21 std::locale l = std::locale::classic();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/
put_bool.pass.cpp 10 // <locale>
16 #include <locale>
84 ios.imbue(std::locale(std::locale::classic(), new my_numpunct));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DownloadOverMeteredDialog.java 29 import java.util.Locale;
39 final public static String LOCALE_KEY = "locale";
58 final Locale locale = LocaleUtils.constructLocaleFromString(localeString); local
59 final String language = (null == locale ? "" : locale.getDisplayLanguage());
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
ctype.h 68 In the thread-specific locale model (see `uselocale' in <locale.h>)
220 /* The concept of one static locale per category is not very well
225 the functions using locale data exist which have an additional
231 /* Structure for reentrant locale using functions. This is an
236 take as an argument a handle for the locale which shall be used. */
237 # define __isctype_l(c, type, locale) \
238 ((locale)->__ctype_b[(int) (c)] & (unsigned short int) type)
244 int isCHARACTERISTIC(int c, locale_t *locale);
262 /* Return the lowercase version of C in locale L. *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
ctype.h 68 In the thread-specific locale model (see `uselocale' in <locale.h>)
220 /* The concept of one static locale per category is not very well
225 the functions using locale data exist which have an additional
231 /* Structure for reentrant locale using functions. This is an
236 take as an argument a handle for the locale which shall be used. */
237 # define __isctype_l(c, type, locale) \
238 ((locale)->__ctype_b[(int) (c)] & (unsigned short int) type)
244 int isCHARACTERISTIC(int c, locale_t *locale);
262 /* Return the lowercase version of C in locale L. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
ctype.h 68 In the thread-specific locale model (see `uselocale' in <locale.h>)
220 /* The concept of one static locale per category is not very well
225 the functions using locale data exist which have an additional
231 /* Structure for reentrant locale using functions. This is an
236 take as an argument a handle for the locale which shall be used. */
237 # define __isctype_l(c, type, locale) \
238 ((locale)->__ctype_b[(int) (c)] & (unsigned short int) type)
244 int isCHARACTERISTIC(int c, locale_t *locale);
262 /* Return the lowercase version of C in locale L. *
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
account_screen.cc 149 const std::string locale = g_browser_process->GetApplicationLocale(); local
151 locale, input_method::kAllInputMethods, "");
174 const std::string locale = g_browser_process->GetApplicationLocale(); local
176 locale, input_method::kKeyboardLayoutsOnly, "");
registration_screen.cc 88 const std::string locale = g_browser_process->GetApplicationLocale(); local
90 locale, input_method::kAllInputMethods, "");
139 const std::string locale = g_browser_process->GetApplicationLocale(); local
141 locale, input_method::kKeyboardLayoutsOnly, "");
  /external/chromium/chrome/browser/extensions/
extension_tts_api_chromeos.cc 24 const std::string& locale,
57 const std::string& locale,
70 if (!locale.empty()) {
73 locale,
  /external/chromium_org/chrome/browser/translate/
translate_browser_metrics.h 51 void ReportLocalesOnDisabledByPrefs(const std::string& locale);
54 // a undisplayable language in the user's locale.
  /external/chromium_org/chrome/common/
localized_error.h 35 const std::string& locale,
  /external/chromium_org/components/variations/
variations_seed_processor.h 30 // specified configuration (locale, current date, version and channel).
32 const std::string& locale,
75 const std::string& locale,
96 // Checks whether a study is applicable for the given |locale| per |filter|.
97 bool CheckStudyLocale(const Study_Filter& filter, const std::string& locale);
122 const std::string& locale,
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
DateInputType.cpp 107 layoutParameters.dateTimeFormat = layoutParameters.locale.dateFormat();
113 layoutParameters.placeholderForDay = locale().queryString(WebLocalizedString::PlaceholderForDayOfMonthField);
114 layoutParameters.placeholderForMonth = locale().queryString(WebLocalizedString::PlaceholderForMonthField);
115 layoutParameters.placeholderForYear = locale().queryString(WebLocalizedString::PlaceholderForYearField);
EmailInputType.cpp 194 return locale().queryString(WebLocalizedString::ValidationTypeMismatchForEmailEmpty);
198 return locale().queryString(WebLocalizedString::ValidationTypeMismatchForEmailNoAtSign, atSign, invalidAddress);
205 return locale().queryString(WebLocalizedString::ValidationTypeMismatchForEmailEmptyLocal, atSign, unicodeAddress);
207 return locale().queryString(WebLocalizedString::ValidationTypeMismatchForEmailEmptyDomain, atSign, unicodeAddress);
211 return locale().queryString(WebLocalizedString::ValidationTypeMismatchForEmailInvalidLocal, atSign, localPart.substring(invalidCharIndex, charLength));
216 return locale().queryString(WebLocalizedString::ValidationTypeMismatchForEmailInvalidDomain, atSign, domain.substring(invalidCharIndex, charLength));
221 return locale().queryString(WebLocalizedString::ValidationTypeMismatchForEmailInvalidDots, String("."), unicodeAddress.substring(atIndexInUnicode + 1));
224 return locale().queryString(WebLocalizedString::ValidationTypeMismatchForMultipleEmail);
225 return locale().queryString(WebLocalizedString::ValidationTypeMismatchForEmail);

Completed in 1739 milliseconds

<<21222324252627282930>>