HomeSort by relevance Sort by last modified time
    Searched refs:language (Results 126 - 150 of 4591) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
InternalLocaleBuilder.java 38 public InternalLocaleBuilder setLanguage(String language) throws LocaleSyntaxException {
39 if (language == null || language.length() == 0) {
42 if (!LanguageTag.isLanguage(language)) {
43 throw new LocaleSyntaxException("Ill-formed language: " + language, 0);
45 _language = language;
316 * Reset Builder's internal state with the given language tag
323 String language = langtag.getLanguage(); local
324 if (!language.equals(LanguageTag.UNDETERMINED))
346 String language = base.getLanguage(); local
460 String language = _language; local
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
InternalLocaleBuilder.java 34 public InternalLocaleBuilder setLanguage(String language) throws LocaleSyntaxException {
35 if (language == null || language.length() == 0) {
38 if (!LanguageTag.isLanguage(language)) {
39 throw new LocaleSyntaxException("Ill-formed language: " + language, 0);
41 _language = language;
312 * Reset Builder's internal state with the given language tag
319 String language = langtag.getLanguage(); local
320 if (!language.equals(LanguageTag.UNDETERMINED))
342 String language = base.getLanguage(); local
456 String language = _language; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
InternalLocaleBuilder.java 34 public InternalLocaleBuilder setLanguage(String language) throws LocaleSyntaxException {
35 if (language == null || language.length() == 0) {
38 if (!LanguageTag.isLanguage(language)) {
39 throw new LocaleSyntaxException("Ill-formed language: " + language, 0);
41 _language = language;
312 * Reset Builder's internal state with the given language tag
319 String language = langtag.getLanguage(); local
320 if (!language.equals(LanguageTag.UNDETERMINED))
342 String language = base.getLanguage(); local
456 String language = _language; local
    [all...]
  /external/libphonenumber/geocoder/src/com/google/i18n/phonenumbers/geocoding/
PhoneNumberOfflineGeocoder.java 13 * See the License for the specific language governing permissions and
63 * Returns the customary display name in the given language for the given territory the phone
66 private String getCountryNameForNumber(PhoneNumber number, Locale language) {
70 return getRegionDisplayName(regionCodes.get(0), language);
83 return getRegionDisplayName(regionWhereNumberIsValid, language);
88 * Returns the customary display name in the given language for the given region.
90 private String getRegionDisplayName(String regionCode, Locale language) {
93 ? "" : new Locale("", regionCode).getDisplayCountry(language);
97 * Returns a text description for the given phone number, in the language provided. The
107 * @param languageCode the language code for which the description should be writte
    [all...]
  /libcore/ojluni/src/main/java/sun/util/locale/
LanguageTag.java 51 // Language subtag fields
53 private String language = ""; // language subtag field in class:LanguageTag
91 // / "no-bok" ; are not extended language
139 * Language-Tag = langtag ; normal language tags
144 * langtag = language
151 * language = 2*3ALPHA ; shortest ISO 639 code
153 * ; extended language subtags
155 * / 5*8ALPHA ; or registered language subta
419 String language = baseLocale.getLanguage(); local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
resres.c 116 rc_uint_type language; local
141 language = -1;
144 (const rc_res_id *) NULL, &language, 1);
150 language = -1;
154 &language, 1);
194 resinfo.language = windres_get_16 (wrbfd, l.language, 2);
208 res_add_resource (r, &type, &name, resinfo.language, 0);
216 const rc_res_id *type, const rc_res_id *name, rc_uint_type *language,
240 /* If we're at level 3, then this key represents a language
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmSmsTest.java 13 * See the License for the specific language governing permissions and
348 private void decodeSingle(int language) throws Exception {
374 String decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, 128, 0, language, 0);
375 byte[] reEncoded = GsmAlphabet.stringToGsm7BitPacked(decoded, language, 0);
377 assertEquals(sBasicTables[language], decoded);
418 for (int language = 0; language < 3; language++) {
419 int[] tableIndex = sExtendedTableIndexes[language];
452 0, language);
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/tree-parser/
basic.rb 12 language=Ruby;
23 language=Ruby;
48 language=Ruby;
59 language=Ruby;
84 language=Ruby;
97 language=Ruby;
123 language=Ruby;
136 language=Ruby;
161 language=Ruby;
174 language=Ruby
    [all...]
  /frameworks/base/native/android/
configuration.cpp 13 * See the License for the specific language governing permissions and
53 outLanguage[0] = config->language[0];
54 outLanguage[1] = config->language[1];
145 void AConfiguration_setLanguage(AConfiguration* config, const char* language) {
146 config->language[0] = language[0];
147 config->language[1] = language[1];
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
OSUInfo.java 222 private static int languageScore(String language, Locale locale) {
223 if (language.length() == 3 && language.equalsIgnoreCase(locale.getISO3Language()) ||
224 language.length() == 2 && language.equalsIgnoreCase(locale.getLanguage())) {
226 } else if (language.equalsIgnoreCase(GenericLocale)) {
228 } else if (language.equalsIgnoreCase("eng")) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
utils.py 251 def encode_rfc2231(s, charset=None, language=None):
254 If neither charset nor language is given, then s is returned as-is. If
255 charset is given but not language, the string is encoded using the empty
256 string for language.
260 if charset is None and language is None:
262 if language is None:
263 language = ''
264 return "%s'%s'%s" % (charset, language, s)
308 # language specifiers at the beginning of the string.
316 charset, language, value = decode_rfc2231(value
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
utils.py 251 def encode_rfc2231(s, charset=None, language=None):
254 If neither charset nor language is given, then s is returned as-is. If
255 charset is given but not language, the string is encoded using the empty
256 string for language.
260 if charset is None and language is None:
262 if language is None:
263 language = ''
264 return "%s'%s'%s" % (charset, language, s)
308 # language specifiers at the beginning of the string.
316 charset, language, value = decode_rfc2231(value
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
utils.py 251 def encode_rfc2231(s, charset=None, language=None):
254 If neither charset nor language is given, then s is returned as-is. If
255 charset is given but not language, the string is encoded using the empty
256 string for language.
260 if charset is None and language is None:
262 if language is None:
263 language = ''
264 return "%s'%s'%s" % (charset, language, s)
308 # language specifiers at the beginning of the string.
316 charset, language, value = decode_rfc2231(value
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
utils.py 251 def encode_rfc2231(s, charset=None, language=None):
254 If neither charset nor language is given, then s is returned as-is. If
255 charset is given but not language, the string is encoded using the empty
256 string for language.
260 if charset is None and language is None:
262 if language is None:
263 language = ''
264 return "%s'%s'%s" % (charset, language, s)
308 # language specifiers at the beginning of the string.
316 charset, language, value = decode_rfc2231(value
    [all...]
  /libcore/ojluni/src/main/native/
java_props_md.c 139 char *language = NULL, *country = NULL, *variant = NULL, local
183 * <language name>_<country name>.<encoding name>@<variant name>
191 /* Parse the language, country, encoding, and variant from the
194 * preceded by their delimiter (except for language).
199 * locale_aliases list are locales that include a language name but
200 * no country name, and this facility is used to map each language
226 language = temp;
240 /* Normalize the language name */
243 if (language != NULL && mapLookup(language_names, language, std_language) == 0)
    [all...]
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertAudio.java 13 * See the License for the specific language governing permissions and
59 /** Extra for text-to-speech preferred language (if speech enabled in settings). */
63 /** Extra for text-to-speech default language when preferred language is
160 loge("TTS engine not ready or language not supported or speak() failed");
193 // try to set the TTS language to match the broadcast
203 * Try to set the TTS engine language to the preferred language. If failed, set
204 * it to the default language. mTtsLanguageSupported will be updated based on the response.
208 String language = mMessagePreferredLanguage local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
rule-methods.rb 11 language = Ruby;
59 options { language = Ruby; }
114 options { language=Ruby; }
actions.rb 9 options { language = Ruby; }
53 options { language = Ruby; }
121 language = Ruby;
153 options { language=Ruby; }
  /external/e2fsprogs/intl/
finddomain.c 54 const char *language; local
67 language[_territory[.codeset]][@modifier]
71 language[_territory][+audience][+special][,[sponsor][_revision]]
135 look for the language. Termination symbols are `_' and `@' if
137 mask = _nl_explode_name (locale, &language, &modifier, &territory,
144 strlen (dirname) + 1, mask, language, territory,
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/
LocaleIDs.java 15 * Utilities for mapping between old and new language, country, and other
31 * Returns a list of all 2-letter language codes defined in ISO 639.
66 * Returns a three-letter abbreviation for the language. If language is
68 * a lowercase ISO 639-2/T language code.
69 * The ISO 639-2 language codes can be found on-line at
72 * three-letter language abbreviation is not available for this locale.
75 public static String getISO3Language(String language) {
78 int offset = findIndex(_languages, language);
82 offset = findIndex(_obsoleteLanguages, language);
    [all...]
  /external/libmicrohttpd/src/examples/
demo.c 94 "<dt>Language:</dt><dd>"\
95 "<input type=\"radio\" name=\"language\" value=\"no-lang\" checked>none</input>"\
96 "<input type=\"radio\" name=\"language\" value=\"en\">English</input>"\
97 "<input type=\"radio\" name=\"language\" value=\"de\">German</input>"\
98 "<input type=\"radio\" name=\"language\" value=\"fr\">French</input>"\
99 "<input type=\"radio\" name=\"language\" value=\"es\">Spanish</input></dd>\n"\
130 * Specification of a supported language.
132 struct Language
135 * Directory name for the language.
150 static const struct Language languages[]
310 const struct Language *language; local
399 char *language; member in struct:UploadContext
    [all...]
demo_https.c 95 "<dt>Language:</dt><dd>"\
96 "<input type=\"radio\" name=\"language\" value=\"no-lang\" checked>none</input>"\
97 "<input type=\"radio\" name=\"language\" value=\"en\">English</input>"\
98 "<input type=\"radio\" name=\"language\" value=\"de\">German</input>"\
99 "<input type=\"radio\" name=\"language\" value=\"fr\">French</input>"\
100 "<input type=\"radio\" name=\"language\" value=\"es\">Spanish</input></dd>\n"\
131 * Specification of a supported language.
133 struct Language
136 * Directory name for the language.
151 static const struct Language languages[]
311 const struct Language *language; local
400 char *language; member in struct:UploadContext
    [all...]
  /toolchain/binutils/binutils-2.25/intl/
finddomain.c 57 const char *language; local
70 language[_territory[.codeset]][@modifier]
74 language[_territory][+audience][+special][,[sponsor][_revision]]
138 look for the language. Termination symbols are `_' and `@' if
140 mask = _nl_explode_name (locale, &language, &modifier, &territory,
147 strlen (dirname) + 1, mask, language, territory,
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSpelunker.java 35 * of interest. Currently: name, type, imports, tokenVocab, language option.
56 protected String language = "Java"; // default field in class:GrammarSpelunker
124 if ( name.equals("language") ) language = value;
147 public String getLanguage() { return language; }
246 System.out.println("language="+g.language);
  /external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/
Interpreter.java 13 * License for the specific language governing permissions and limitations under
19 import com.googlecode.android_scripting.language.Language;
20 import com.googlecode.android_scripting.language.SupportedLanguages;
48 private Language mLanguage;
165 protected void setLanguage(Language language) {
166 mLanguage = language;
169 public Language getLanguage() {

Completed in 1162 milliseconds

1 2 3 4 56 7 8 91011>>