Searched defs:language (Results 26 - 41 of 41) sorted by relevance

12

/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecController.java13 * See the License for the specific language governing permissions and
342 * Informs CEC HAL about the current system language.
344 * @param language Three-letter code defined in ISO/FDIS 639-2. Must be lowercase letters.
347 void setLanguage(String language) { argument
349 if (!LanguageTag.isLanguage(language)) {
352 nativeSetLanguage(mNativePtr, language);
682 private static native void nativeSetLanguage(long controllerPtr, String language); argument
H A DHdmiCecLocalDeviceTv.java13 * See the License for the specific language governing permissions and
551 boolean broadcastMenuLanguage(String language) { argument
554 mAddress, language);
H A DHdmiControlService.java13 * See the License for the specific language governing permissions and
158 String language = getMenuLanguage();
159 if (!mLanguage.equals(language)) {
160 onLanguageChanged(language);
2095 private void onLanguageChanged(String language) { argument
2097 mLanguage = language;
2100 tv().broadcastMenuLanguage(language);
2101 mCecController.setLanguage(language);
/frameworks/base/services/core/jni/
H A Dcom_android_server_hdmi_HdmiCecController.cpp13 * See the License for the specific language governing permissions and
78 // Informs CEC HAL about the current system language.
79 void setLanguage(hidl_string language);
295 void HdmiCecController::setLanguage(hidl_string language) { argument
296 Return<void> ret = mHdmiCec->setLanguage(language);
298 ALOGE("Failed to set language.");
416 static void nativeSetLanguage(JNIEnv* env, jclass clazz, jlong controllerPtr, jstring language) { argument
418 const char *languageStr = env->GetStringUTFChars(language, NULL);
420 env->ReleaseStringUTFChars(language, languageStr);
/frameworks/minikin/libs/minikin/
H A DCmapCoverage.cpp13 * See the License for the specific language governing permissions and
447 uint32_t language; local
457 language = readU16(cmap_data, offset + languageOffset);
466 language = readU32(cmap_data, offset + languageOffset);
474 if (language != 0) {
476 // platform (which we don't support), or an invalid subtable since language field
/frameworks/av/media/libstagefright/httplive/
H A DM3UParser.cpp13 * See the License for the specific language governing permissions and
56 const char *language,
103 const char *language,
114 if (language) {
115 item.mLanguage = language;
217 format->setString("language", lang);
1102 } else if (!strcasecmp("language", key.c_str())) {
100 addMedia( const char *name, const char *uri, const char *language, uint32_t flags) argument
/frameworks/base/media/java/android/media/
H A DMediaFormat.java13 * See the License for the specific language governing permissions and
97 * <tr><td>{@link #KEY_LANGUAGE}</td><td>String</td><td>The language of the content.</td></tr>
147 * A key describing the language of the content, using either ISO 639-1
150 public static final String KEY_LANGUAGE = "language";
969 * @param language The language of the content, using either ISO 639-1 or 639-2/T
970 * codes. Specify null or "und" if language information is only included
971 * in the content. (This will also work if there are multiple language
976 String language) {
979 format.setString(KEY_LANGUAGE, language);
974 createSubtitleFormat( String mime, String language) argument
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeechService.java13 * License for the specific language governing permissions and limitations under
61 * The first three deal primarily with language management, and are used to
62 * query the engine for it's support for a given language and indicate to it
63 * that requests in a given language are imminent.
143 // Load default language
162 * Checks whether the engine supports a given language.
168 * @param lang ISO-3 language code.
181 * Returns the language, country and variant currently being used by the TTS engine.
188 * @return A 3-element array, containing language (ISO 3-letter code),
199 * Notifies the engine that it should load a speech synthesis language
1188 LoadLanguageItem(Object callerIdentity, int callerUid, int callerPid, String language, String country, String variant) argument
[all...]
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp13 * See the License for the specific language governing permissions and
411 * (2) persist.sys.language/country/localevar (country and localevar are
412 * inspected iff. language is non-empty.
414 * (4) ro.product.locale.language/region
416 * Note that we need to inspect persist.sys.language/country/localevar to
417 * preserve language settings for devices that are upgrading from Lollipop
418 * to M. The same goes for ro.product.locale.language/region as well.
427 const std::string language = getProperty("persist.sys.language", ""); local
428 if (!language
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DBearerData.java13 * See the License for the specific language governing permissions and
165 public int language = LANGUAGE_UNKNOWN; field in class:BearerData
370 * Returns the language indicator as a two-character ISO 639 string.
371 * @return a two character ISO 639 language code
374 return getLanguageCodeForValue(language);
378 * Converts a CDMA language indicator value to an ISO 639 two character language code.
379 * @param languageValue the CDMA language value to convert
380 * @return the two character ISO 639 language code for the specified value, or null if unknown
420 builder.append(", language
[all...]
/frameworks/base/tools/aapt/
H A DAaptAssets.h62 char language[4]; member in struct:AaptLocaleValue
92 void setLanguage(const char* language);
93 void setRegion(const char* language);
/frameworks/base/libs/androidfw/include/androidfw/
H A DResourceTypes.h13 * See the License for the specific language governing permissions and
888 // - a 3 char language code
922 // - Two 7 bit ascii values interpreted as ISO-639-1 language
927 // ISO-639-2 3 letter language code. This will be of the form:
931 // bit[0, 4] = first letter of the language code
932 // bit[5, 9] = second letter of the language code
933 // bit[10, 14] = third letter of the language code.
941 char language[2]; member in struct:android::ResTable_config::__anon1178::__anon1179
950 // in the same manner as the language codes, though we should need
1255 // and language, i
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp13 * See the License for the specific language governing permissions and
1780 // language code.
1824 void ResTable_config::packLanguage(const char* language) { argument
1825 packLanguageOrRegion(language, 'a', this->language);
1832 size_t ResTable_config::unpackLanguage(char language[4]) const {
1833 return unpackLanguageOrRegion(this->language, 'a', language);
1878 // The language & region are equal, so compare the scripts and variants.
1887 // The language, regio
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...

Completed in 8547 milliseconds

12