/external/chromium/chrome/common/ |
spellcheck_common.cc | 12 // The language. 13 const char* language; member in struct:SpellCheckCommon::__anon3865 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::__anon3866 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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/ |
PacketUserauthBanner.java | 20 String language; field in class:PacketUserauthBanner 22 public PacketUserauthBanner(String message, String language) 25 this.language = language; 46 language = tr.readString(); 59 tw.writeString(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;
|
/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/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
tree-rewrite.rb | 11 language=Ruby; 23 language=Ruby; 35 language=Ruby; 47 language=Ruby; 58 language=Ruby; 70 language=Ruby; 81 language=Ruby; 93 language=Ruby; 104 language=Ruby; 116 language=Ruby [all...] |
/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...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/ |
SimpleExpression.g3 | 37 language=CSharp3;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/ |
T.g | 12 language=ObjC;
|
/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);
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/ |
syn-pred.rb | 10 language = Ruby;
|
/external/skia/src/ports/ |
FontHostConfiguration_android.h | 14 ** See the License for the specific language governing permissions and 56 void getLocale(char* language, char* region);
|