/external/webkit/Source/WebCore/page/ |
SpeechInputClient.h | 54 virtual bool startRecognition(int requestId, const IntRect& elementRect, const AtomicString& language, const String& grammar, SecurityOrigin*) = 0;
|
/external/webkit/Source/WebKit/chromium/public/ |
WebSpeechInputController.h | 48 virtual bool startRecognition(int requestId, const WebRect& elementRect, const WebString& language, const WebString& grammar, const WebSecurityOrigin& origin)
|
/external/webkit/Source/WebKit/chromium/src/ |
WebSpeechInputControllerMockImpl.cpp | 60 void WebSpeechInputControllerMockImpl::addMockRecognitionResult(const WebString& result, double confidence, const WebString &language) 62 m_webcoreMock->addRecognitionResult(result, confidence, language); 85 bool WebSpeechInputControllerMockImpl::startRecognition(int requestId, const WebRect& elementRect, const WebString& language, const WebString& grammar, const WebSecurityOrigin& origin) 87 return m_webcoreMock->startRecognition(requestId, elementRect, language, grammar, origin.get());
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
rewrites.rb | 62 options {language=Ruby;output=AST;} 75 options {language=Ruby;output=AST;} 89 options {language=Ruby;output=AST;} 103 options {language=Ruby;output=AST;} 117 options {language=Ruby;output=AST;} 130 options {language=Ruby;output=AST;} 144 options {language=Ruby;output=AST;} 158 options {language=Ruby;output=AST;} 173 options {language=Ruby;output=AST;} 187 options {language=Ruby;output=AST; [all...] |
auto-ast.rb | 63 options {language=Ruby;output=AST;} 75 options {language=Ruby;output=AST;} 87 options {language=Ruby;output=AST;} 99 options {language=Ruby;output=AST;} 111 options {language=Ruby;output=AST;} 124 options {language=Ruby;output=AST;} 136 options {language=Ruby;output=AST;} 148 options {language=Ruby;output=AST;} 160 options {language=Ruby;output=AST;} 172 options {language=Ruby;output=AST; [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/shader/ |
ShaderKey.java | 46 protected String language; field in class:ShaderKey 55 this.language = lang; 107 return language; 115 oc.write(language, "language", null); 123 language = ic.readString("language", null);
|
/packages/inputmethods/LatinIME/tools/maketext/src/com/android/inputmethod/latin/maketext/ |
MoreKeysResources.java | 13 * See the License for the specific language governing permissions and 45 private static final String NO_LANGUAGE_DISPLAY_NAME = "No language"; 48 // Language to string resources map. 61 final String language = getLanguageFromResDir(parentName); local 64 mResourcesMap.put(language, new StringResourceMap(stream)); 77 final String language = dirName.substring(languagePos + 1); local 78 final int countryPos = language.indexOf("-r"); 80 return language; 82 return language.replace("-r", "_"); 153 for (final String language : allLanguages) [all...] |
/external/chromium/chrome/browser/translate/ |
translate_prefs.cc | 93 int TranslatePrefs::GetTranslationDeniedCount(const std::string& language) { 97 return dict->GetInteger(language, &count) ? count : 0; 101 const std::string& language) { 106 dict->GetInteger(language, &count); 107 dict->SetInteger(language, count + 1); 110 void TranslatePrefs::ResetTranslationDeniedCount(const std::string& language) { 112 update.Get()->SetInteger(language, 0); 115 int TranslatePrefs::GetTranslationAcceptedCount(const std::string& language) { 119 return dict->GetInteger(language, &count) ? count : 0; 123 const std::string& language) { [all...] |
translate_tab_helper.cc | 39 void TranslateTabHelper::OnLanguageDetermined(const std::string& language, 41 language_state_.LanguageDetermined(language, page_translatable); 43 std::string lang = language;
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
GsmSmsCbMessage.java | 13 * See the License for the specific language governing permissions and 70 String language = null; local 74 language = p.first; 82 header.getServiceCategory(), language, sb.toString(), priority, 103 * text into mBody, and optionally the language code into mLanguage 107 * @return a Pair of Strings containing the language and body of the message 111 String language = null; local 115 // Extract encoding and language from DCS, as defined in 3gpp TS 23.038, 120 language = LANGUAGE_CODES_GROUP_0[dataCodingScheme & 0x0f]; 134 language = LANGUAGE_CODES_GROUP_2[dataCodingScheme & 0x0f] [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/delegation/ |
import.rb | 19 options { language=Ruby; } 29 options { language=Ruby; } 50 language=Ruby; 61 options {language=Ruby;} 81 language=Ruby; 97 language=Ruby; 115 language=Ruby; 128 language=Ruby; 140 language=Ruby; 158 language=Ruby [all...] |
/external/webkit/Source/WebCore/platform/text/mac/ |
HyphenationMac.mm | 49 CFStringRef language = reinterpret_cast<CFStringRef>(CFDictionaryGetValue(components.get(), kCFLocaleLanguageCode)); 51 return language && CFEqual(language, englishLanguage);
|
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/ |
MappingFileProvider.java | 13 * See the License for the specific language governing permissions and 38 * calling code and language that the text descriptions are in. 144 * the language specified. 148 * @param language two-letter lowercase ISO language codes as defined by ISO 639-1 154 String getFileName(int countryCallingCode, String language, String script, String region) { 155 if (language.length() == 0) { 164 String languageCode = findBestMatchingLanguageCode(setOfLangs, language, script, region); 175 Set<String> setOfLangs, String language, String script, String region) { 176 StringBuilder fullLocale = constructFullLocale(language, script, region) [all...] |
/external/openssl/crypto/x509v3/ |
v3_pci.c | 66 BIO_printf(out, "%*sPolicy Language: ", indent, ""); 76 ASN1_OBJECT **language, ASN1_INTEGER **pathlen, 81 if (strcmp(val->name, "language") == 0) 83 if (*language) 89 if (!(*language = OBJ_txt2obj(val->value, 0))) 248 ASN1_OBJECT *language = NULL; local 279 &language, &pathlen, &policy); 288 &language, &pathlen, &policy)) 296 /* Language is mandatory */ 297 if (!language) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/ |
FastSimpleExpression.g3 | 37 language=CSharp3;
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/ |
nuances.rb | 9 options { language = Ruby; } 35 language = Ruby;
|
/external/chromium/chrome/browser/ |
language_order_table_model.h | 26 // Set Language List. 29 // Add at the end. Return true if the language was added. 30 bool Add(const std::string& language); 35 // Returns index corresponding to a given language. Returns -1 if the 36 // language is not found. 37 int GetIndex(const std::string& language);
|
/external/chromium/chrome/browser/tab_contents/ |
language_state.h | 14 // This class holds the language state of the current page. 19 // - user is on page in language A that they had translated to language B. 20 // - user clicks a link in that page that takes them to a page also in language 32 // Should be called when the language of the page has been determined. 38 // Returns the language the current page should be translated to, based on the 40 // the language page has been determined. 49 void set_current_language(const std::string& language) { 50 current_lang_ = language; 71 // Note that these might be empty if the page language has not been determine [all...] |
/external/e2fsprogs/intl/ |
loadinfo.h | 92 MASK, LANGUAGE, TERRITORY, CODESET, NORMALIZED_CODESET, MODIFIER, 104 const char *language, const char *territory, 115 /* Split a locale name NAME into its pieces: language, modifier, 118 there. *LANGUAGE gets assigned NAME. Each of *MODIFIER, *TERRITORY, 133 extern int _nl_explode_name (char *name, const char **language, 140 /* Split a locale name NAME into a leading language part and all the 141 rest. Return a pointer to the first character after the language,
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
ContentLanguage.java | 40 * 14.12 Content-Language 42 * The Content-Language entity-header field describes the natural 43 * language(s) of the intended audience for the enclosed entity. Note 47 * Content-Language = "Content-Language" ":" 1#language-tag 49 * Language tags are defined in section 3.10. The primary purpose of 50 * Content-Language is to allow a user to identify and differentiate 51 * entities according to the user's own preferred language. Thus, if the 55 * Content-Language: d [all...] |
/external/qemu/ |
keymaps.c | 63 const char *language, 79 if (android_core_qemu_find_file(QEMU_FILE_TYPE_KEYMAP, language, 82 "Could not read keymap file: '%s'\n", language); 86 filename = qemu_find_file(QEMU_FILE_TYPE_KEYMAP, language); 89 "Could not read keymap file: '%s'\n", language); 98 "Could not read keymap file: '%s'\n", language); 168 void *init_keyboard_layout(const name2keysym_t *table, const char *language) 170 return parse_keyboard_layout(table, language, NULL);
|
keymaps.h | 55 void *init_keyboard_layout(const name2keysym_t *table, const char *language);
|
/frameworks/base/core/java/android/speech/tts/ |
SynthesisRequest.java | 13 * License for the specific language governing permissions and limitations under 24 * <li>The synthesis locale, represented as a language, country and a variant. 25 * The language is an ISO 639-3 letter language code, and the country is an 59 * Gets the ISO 3-letter language code for the language to use. 66 * Gets the ISO 3-letter country code for the language to use. 73 * Gets the language variant to use. 103 void setLanguage(String language, String country, String variant) { 104 mLanguage = language; [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/ |
GoogleSearch.java | 13 * See the License for the specific language governing permissions and 73 * Construct the language code (hl= paramater) for the given locale. 76 String language = locale.getLanguage(); local 77 StringBuilder hl = new StringBuilder(language); 80 if (!TextUtils.isEmpty(country) && useLangCountryHl(language, country)) { 85 if (DBG) Log.d(TAG, "language " + language + ", country " + country + " -> hl=" + hl); 90 private static boolean useLangCountryHl(String language, String country) { 92 if ("en".equals(language)) { 94 } else if ("zh".equals(language)) { [all...] |
/packages/inputmethods/LatinIME/tools/maketext/res/com/android/inputmethod/keyboard/internal/ |
KeyboardTextsSet.tmpl | 13 * License for the specific language governing permissions and limitations under 47 // Language to texts map. 57 public void setLanguage(final String language) { 58 mTexts = sLocaleToTextsMap.get(language); 130 final String language = (String)LANGUAGES_AND_TEXTS[i]; 132 sLocaleToTextsMap.put(language, texts);
|