HomeSort by relevance Sort by last modified time
    Searched refs:language (Results 1 - 25 of 4758) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/common/
spellcheck_common.cc 12 // The language.
13 const char* language; member in struct:SpellCheckCommon::__anon3386
15 // The corresponding language and region, used by the dictionaries.
58 // This function returns the language-region version of language name.
63 if (g_supported_spellchecker_languages[i].language == input_language) {
79 // The language input.
80 const char* language; member in struct:SpellCheckCommon::__anon3387
110 // version string, depending on the language.
111 std::string language = GetSpellCheckLanguageRegion(input_language) local
    [all...]
spellcheck_common.h 24 std::string GetCorrespondingSpellCheckLanguage(const std::string& language);
  /external/chromium/chrome/browser/
language_order_table_model.cc 28 const std::string& language(languages_vector.at(i));
29 if (!language.empty() && added.count(language) == 0) {
30 languages_.push_back(language);
31 added.insert(language);
50 bool LanguageOrderTableModel::Add(const std::string& language) {
51 if (language.empty())
53 // Check for selecting duplicated language.
56 if (*cit == language)
58 languages_.push_back(language);
    [all...]
spellcheck_host.cc 18 const std::string& language,
22 language,
43 // The current dictionary language should be there.
57 std::string language = local
59 if (!language.empty() &&
60 std::find(languages->begin(), languages->end(), language) ==
62 languages->push_back(language);
  /external/clang/utils/TestUtils/
pch-test.pl 12 my $language = shift;
20 my $code = system("clang -fsyntax-only -x $language $file > /dev/null 2>&1");
23 $code = system("clang -cc1 -emit-pch -x $language -o $file.pch $file > /dev/null 2>&1");
25 $code = system("clang -cc1 -include-pch $file.pch -x $language -ast-dump /dev/null > /dev/null 2>&1");
  /external/nist-sip/java/javax/sip/header/
ContentLanguageHeader.java 6 String NAME = "Content-Language";
9 void setContentLanguage(Locale language);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Regress/
regress-314887.js 12 * for the specific language governing rights and limitations under the
46 <script language="JavaScript" type="text/JavaScript">
  /external/webkit/Source/WebKit/chromium/public/
WebSpeechInputControllerMock.h 47 virtual void addMockRecognitionResult(const WebString& result, double confidence, const WebString& language) = 0;
WebSpeechInputController.h 48 virtual bool startRecognition(int requestId, const WebRect& elementRect, const WebString& language, const WebString& grammar, const WebSecurityOrigin& origin)
  /external/svox/pico/src/com/svox/pico/
GetSampleText.java 13 * See the License for the specific language governing permissions and
29 * Returns the sample text string for the language requested
40 String language = i.getExtras().getString("language"); local
44 if (language.equals("eng")) {
50 } else if (language.equals("fra")) {
52 } else if (language.equals("ita")) {
54 } else if (language.equals("deu")) {
56 } else if (language.equals("spa")) {
  /external/webkit/Source/WebCore/platform/mock/
SpeechInputClientMock.cpp 54 bool SpeechInputClientMock::startRecognition(int requestId, const IntRect& elementRect, const AtomicString& language, const String& grammar, SecurityOrigin* origin)
60 m_language = language;
85 void SpeechInputClientMock::addRecognitionResult(const String& result, double confidence, const AtomicString& language)
87 if (language.isEmpty())
90 if (!m_recognitionResults.contains(language))
91 m_recognitionResults.set(language, SpeechInputResultArray());
92 m_recognitionResults.find(language)->second.append(SpeechInputResult::create(result, confidence));
116 // Empty language case must be handled separately to avoid problems with HashMap and empty keys.
130 // Can't avoid setting a result even if no result was set for the given language.
132 String error("error: no result found for language '");
    [all...]
SpeechInputClientMock.h 52 void addRecognitionResult(const String& result, double confidence, const AtomicString& language);
57 bool startRecognition(int requestId, const IntRect& elementRect, const AtomicString& language, const String& grammar, SecurityOrigin*);
  /external/svox/pico/compat/src/com/android/tts/compat/
SynthProxy.java 13 * License for the specific language governing permissions and limitations under
91 * Queries for language support.
94 public int isLanguageAvailable(String language, String country, String variant) {
95 return native_isLanguageAvailable(mJniData, language, country, variant);
106 * Sets the language.
108 public int setLanguage(String language, String country, String variant) {
109 return native_setLanguage(mJniData, language, country, variant);
113 * Loads the language: it's not set, but prepared for use later.
115 public int loadLanguage(String language, String country, String variant) {
116 return native_loadLanguage(mJniData, language, country, variant)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AcceptLanguage.java 36 * Accept Language body.
45 * Accept-Language = "Accept-Language" ":"
46 * 1#( language-range [ ";" "q" "=" qvalue ] )
47 * language-range = ( ( 1*8ALPHA *( "-" 1*8ALPHA ) ) | "*" )
123 * @param languageRange is the language range to set.
159 * Gets the language value of the AcceptLanguageHeader.
163 * @return the language Locale value of this AcceptLanguageHeader
178 * Sets the language parameter of this AcceptLanguageHeader.
182 * @param language - the new Locale value of the language o
    [all...]
  /external/chromium/base/win/
i18n.cc 41 // MUI_LANGUAGE_NAME). Returns true if at least one language is placed in
87 bool GetUserDefaultUILanguage(std::wstring* language, std::wstring* region) {
88 DCHECK(language);
98 DPCHECK(0 != result_length) << "Failed getting language id";
100 language->assign(&result_buffer[0], result_length - 1);
115 NOTREACHED() << "Cannot determine language for a supplemental locale.";
123 std::wstring language; local
128 language.assign(&*scan);
129 while (!language.empty()) {
130 languages->push_back(language);
    [all...]
  /external/chromium/chrome/browser/translate/
translate_prefs.h 43 // translation for a specific language. (So we can present a UI to black-list
44 // that language if the user keeps denying translations).
45 int GetTranslationDeniedCount(const std::string& language);
46 void IncrementTranslationDeniedCount(const std::string& language);
47 void ResetTranslationDeniedCount(const std::string& language);
50 // translation for a specific language. (So we can present a UI to white-list
52 int GetTranslationAcceptedCount(const std::string& language);
53 void IncrementTranslationAcceptedCount(const std::string& language);
54 void ResetTranslationAcceptedCount(const std::string& language);
72 // denied for a language, creating it if necessary
    [all...]
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...]
  /external/icu4c/test/letest/
cfonts.h 22 const char *le_getNameString(le_font *font, le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language);
24 const LEUnicode16 *le_getUnicodeNameString(le_font *font, le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language);
cfonts.cpp 34 const char *le_getNameString(le_font *font, le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language)
38 return pfi->getNameString(nameID, platform, encoding, language);
41 const LEUnicode16 *le_getUnicodeNameString(le_font *font, le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language)
45 return pfi->getUnicodeNameString(nameID, platform, encoding, language);
  /external/libvpx/examples/includes/geshi/contrib/
cssgen2.php 54 foreach ($languages as $language) {
55 $geshi->set_language($language);
  /external/webkit/Source/WebKit/chromium/src/
WebSpeechInputControllerMockImpl.h 60 bool startRecognition(int requestId, const WebRect& elementRect, const WebString& language, const WebString& grammar, const WebSecurityOrigin&);
65 void addMockRecognitionResult(const WebString& result, double confidence, const WebString& language);
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/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/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...]

Completed in 488 milliseconds

1 2 3 4 5 6 7 8 91011>>