HomeSort by relevance Sort by last modified time
    Searched refs:language (Results 51 - 75 of 4823) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/base/i18n/
rtl.cc 23 // Extract language and country, ignore keywords, concatenate using dash.
25 const char* language = locale.getLanguage(); local
29 (language != NULL && *language != '\0') ? language : "und";
70 std::string language = locale.getLanguage(); local
72 if (LowerCaseEqualsASCII(language, "es") &&
74 language += '-';
75 language += country;
76 return language;
    [all...]
  /external/webkit/Source/WebCore/page/
SpeechInput.cpp 96 bool SpeechInput::startRecognition(int listenerId, const IntRect& elementRect, const AtomicString& language, const String& grammar, SecurityOrigin* origin)
99 return m_client->startRecognition(listenerId, elementRect, language, grammar, origin);
  /external/webkit/Source/WebKit/chromium/src/
SpeechInputClientImpl.cpp 67 bool SpeechInputClientImpl::startRecognition(int requestId, const WebCore::IntRect& elementRect, const AtomicString& language, const String& grammar, WebCore::SecurityOrigin* origin)
70 return m_controller->startRecognition(requestId, elementRect, language, grammar, WebSecurityOrigin(origin));
  /frameworks/base/location/java/android/location/
GeocoderParams.java 13 * See the License for the specific language governing permissions and
28 * language, country and variant information from the Geocoder's locale
71 String language = in.readString();
74 gp.mLocale = new Locale(language, country, variant);
  /cts/tools/signature-tools/lib/
stringtemplate.jar 
  /frameworks/base/tools/localize/
file_utils.cpp 73 string language, region; local
75 language = "";
78 else if (!split_locale(locale, &language, &region)) {
82 if (language != "") {
84 result += language;
Configuration.h 35 bool split_locale(const string& in, string* language, string* region);
  /frameworks/base/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...]
  /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];
136 void AConfiguration_setLanguage(AConfiguration* config, const char* language) {
137 config->language[0] = language[0];
138 config->language[1] = language[1];
  /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,
  /cts/tools/signature-tools/src/signature/io/html/
TemplateStore.java 13 * See the License for the specific language governing permissions and
24 import org.antlr.stringtemplate.language.DefaultTemplateLexer;
  /external/chromium/base/
file_version_info_win.h 21 FileVersionInfoWin(void* data, int language, int code_page);
  /external/chromium/chrome/browser/ui/views/infobars/
translate_infobar_base.h 34 // Sets the text of the provided language menu button to reflect the current
37 LanguagesMenuModel::LanguageType language);
  /external/icu4c/common/
ulocimp.h 49 char *language, int32_t languageCapacity,
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
PhoneNumberOfflineGeocoder.java 13 * See the License for the specific language governing permissions and
45 // The mappingFileProvider knows for which combination of countryCallingCode and language a phone
74 int countryCallingCode, String language, String script, String region) {
75 String fileName = mappingFileProvider.getFileName(countryCallingCode, language, script, region);
128 * Returns the customary display name in the given language for the given territory the phone
131 private String getCountryNameForNumber(PhoneNumber number, Locale language) {
134 ? "" : new Locale("", regionCode).getDisplayCountry(language);
138 * Returns a text description for the given language code for the given phone number. The
144 * @param languageCode the language code for which the description should be written
145 * @return a text description for the given language code for the given phone numbe
    [all...]
  /external/libvpx/examples/includes/geshi/contrib/
example.php 6 * and the language files in subdirectory "../geshi/")
33 $_POST['language'] = preg_replace('#[^a-zA-Z0-9\-_]#', '', $_POST['language']);
34 $_POST['source'] = implode('', @file($path . 'geshi/' . $_POST['language'] . '.php'));
35 $_POST['language'] = 'php';
42 // First the initialisation: source code to highlight and the language to use. Make sure
46 $geshi = new GeSHi($_POST['source'], $_POST['language']);
95 // make sure we don't preselect any language
96 $_POST['language'] = null;
162 include_path, and that the language files are in a subdirectory of GeSHi's directory called <strong>geshi/</strong>.</p
    [all...]
  /packages/apps/Browser/src/com/android/browser/search/
SearchEngineInfo.java 13 * See the License for the specific language governing permissions and
49 private static final String PARAMETER_LANGUAGE = "{language}";
84 // Add the current language/country information to the URIs.
86 StringBuilder language = new StringBuilder(locale.getLanguage()); local
88 language.append('-');
89 language.append(locale.getCountry());
92 String language_str = language.toString();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
LatinKeyboard.java 13 * License for the specific language governing permissions and limitations under
70 // Height in space key the language name will be drawn. (proportional to space key height)
72 // If the full language name needs to be smaller than this value to be drawn on space key,
73 // its short language name will be used instead.
211 // Layout local language name and left and right arrow on spacebar.
216 // Estimate appropriate language name text size to fit in maxTextWidth.
217 String language = Utils.getFullDisplayName(locale, true); local
218 int textWidth = getTextWidth(paint, language, origTextSize, bounds);
222 textWidth = getTextWidth(paint, language, textSize, bounds);
229 language = Utils.getMiddleDisplayLanguage(locale)
289 final String language = layoutSpacebar(paint, inputLocale, width, getTextSizeFromTheme( local
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
InputModeSwitcher.java 13 * See the License for the specific language governing permissions and
96 * Used to indicate which language the current input mode is in. If the
98 * also used to get language information. For example, a Chinese symbol soft
100 * tell user the language information. BTW, the smiley soft keyboard mode
108 * Used to indicate the current language. An input mode should be anded with
114 * Used to indicate the current language. An input mode should be anded with
226 * Used to remember recent mode to input language.
556 // try to keep the previous mode to input language text.
558 // soft keyboard related information from the previous language
664 int language = (mInputMode & MASK_LANGUAGE) local
673 int language = (mInputMode & MASK_LANGUAGE); local
682 int language = (mInputMode & MASK_LANGUAGE); local
741 int language = (mInputMode & MASK_LANGUAGE); local
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_tts_api_win.cc 23 const std::string& language,
55 const std::string& language,
  /external/harfbuzz/src/
harfbuzz-shape.h 65 * Language tags, of the form en-us; represented as interned, canonicalized
72 const char *hb_language_to_string(HB_Language language);
136 HB_Language language; member in struct:_HB_ShapeInput
  /external/icu4c/test/letest/
PortableFontInstance.h 75 virtual const char *getNameString(le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language) const;
77 virtual const LEUnicode16 *getUnicodeNameString(le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language) const;
  /external/libvpx/examples/
gen_example_doxy.php 22 $geshi_path = dirname($argv[0])."/includes/geshi/geshi/"; // Language files
74 $language = 'c'; variable
78 $geshi = new GeSHi($matches[1], $language);
  /external/webkit/Source/WebCore/dom/
ScriptElement.cpp 108 static bool isLegacySupportedJavaScriptLanguage(const String& language)
135 return languages.contains(language);
142 // - Allowing a different set of languages for language= and type=. language= supports Javascript 1.1 and 1.4-1.6, but type= does not.
145 String language = languageAttributeValue(); local
146 if (type.isEmpty() && language.isEmpty())
149 type = "text/" + language.lower();
150 if (MIMETypeRegistry::isSupportedJavaScriptMIMEType(type) || isLegacySupportedJavaScriptLanguage(language))
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertService.java 13 * See the License for the specific language governing permissions and
116 String language = cbm.getLanguageCode(); local
117 if (cbm.isEtwsMessage() && !"ja".equals(language)) {
118 Log.w(TAG, "bad language code for ETWS - using Japanese TTS");
119 language = "ja";
120 } else if (cbm.isCmasMessage() && !"en".equals(language)) {
121 Log.w(TAG, "bad language code for CMAS - using English TTS");
122 language = "en";
125 language);

Completed in 1667 milliseconds

1 23 4 5 6 7 8 91011>>