Searched refs:language (Results 1 - 25 of 246) sorted by relevance

12345678910

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSmsBroadcastConfigInfo.java13 * See the License for the specific language governing permissions and
28 * language defines a language code of Broadcast Message
30 * All other values can be treated as empty language code.
46 int language, boolean selected) {
49 mLanguage = language;
45 CdmaSmsBroadcastConfigInfo(int fromServiceCategory, int toServiceCategory, int language, boolean selected) argument
/frameworks/base/tools/aapt/tests/
H A DResourceFilter_test.cpp13 * See the License for the specific language governing permissions and
28 // such as language or density.
39 config.language[0] = 'f';
40 config.language[1] = 'r';
60 config.language[0] = 'f';
61 config.language[1] = 'r';
71 config.language[0] = 'f';
72 config.language[1] = 'r';
83 config.language[0] = 'e';
84 config.language[
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSmsCbMessage.java13 * See the License for the specific language governing permissions and
71 String language = null;
75 language = p.first;
83 header.getServiceCategory(), language, sb.toString(), priority,
104 * text into mBody, and optionally the language code into mLanguage
108 * @return a Pair of Strings containing the language and body of the message
112 String language = null;
116 // Extract encoding and language from DCS, as defined in 3gpp TS 23.038,
121 language = LANGUAGE_CODES_GROUP_0[dataCodingScheme & 0x0f];
135 language
236 unpackBody(byte[] pdu, int encoding, int offset, int length, boolean hasLanguageIndicator, String language) argument
[all...]
/frameworks/base/libs/androidfw/tests/
H A DConfigLocale_test.cpp13 * See the License for the specific language governing permissions and
28 EXPECT_EQ('e', config.language[0]);
29 EXPECT_EQ('n', config.language[1]);
67 EXPECT_EQ('\x99', config.language[0]);
68 EXPECT_EQ('\xA4', config.language[1]);
91 EXPECT_EQ(char(0xbc), config.language[0]);
92 EXPECT_EQ(char(0xd3), config.language[1]);
176 EXPECT_EQ('e', test.language[0]);
177 EXPECT_EQ('n', test.language[1]);
199 EXPECT_EQ('e', test.language[
[all...]
/frameworks/base/tools/aapt/
H A DResourceFilter.cpp76 // the locale we are matching only has a language specified,
78 if (config.language[0] &&
79 memcmp(config.language, entry.first.language, sizeof(config.language)) == 0) {
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisRequest.java13 * 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
86 * Gets the ISO 3-letter language code for the language to use.
93 * Gets the ISO 3-letter country code for the language to use.
100 * Gets the language variant to use.
137 void setLanguage(String language, String country, String variant) { argument
138 mLanguage = language;
[all...]
H A DTtsEngines.java13 * License for the specific language governing permissions and limitations under
76 /** Mapping of various language strings to the normalized Locale form */
85 for (String language : Locale.getISOLanguages()) {
87 normalizeLanguage.put(new Locale(language).getISO3Language(), language);
376 * "deu-deu". At the end, we test if the resulting locale can return ISO3 language and
381 String language = "", country = "", variant = "";
385 language = split[0].toLowerCase();
405 String normalizedLanguage = sNormalizeLanguage.get(language);
407 language
[all...]
/frameworks/base/location/java/android/location/
H A DGeocoderParams.java13 * 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);
/frameworks/base/telephony/java/android/telephony/cdma/
H A DCdmaSmsCbProgramResults.java13 * See the License for the specific language governing permissions and
66 public CdmaSmsCbProgramResults(int category, int language, int categoryResult) { argument
68 mLanguage = language;
101 * Returns the CDMA language code for this service category.
102 * @return one of the language values defined in BearerData.LANGUAGE_*
119 + ", language=" + mLanguage + ", result=" + mCategoryResult + '}';
H A DCdmaSmsCbProgramData.java13 * See the License for the specific language governing permissions and
97 public CdmaSmsCbProgramData(int operation, int category, int language, int maxMessages, argument
101 mLanguage = language;
150 * Returns the CDMA language code for this service category.
151 * @return one of the language values defined in BearerData.LANGUAGE_*
174 * Returns the service category name, in the language specified by {@link #getLanguage()}.
184 + ", language=" + mLanguage + ", max messages=" + mMaxMessages
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DGsmSmsTest.java13 * See the License for the specific language governing permissions and
348 private void decodeSingle(int language) throws Exception { argument
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/
H A Dconfiguration.cpp13 * See the License for the specific language governing permissions and
53 outLanguage[0] = config->language[0];
54 outLanguage[1] = config->language[1];
141 void AConfiguration_setLanguage(AConfiguration* config, const char* language) { argument
142 config->language[0] = language[0];
143 config->language[1] = language[1];
/frameworks/base/media/java/android/media/tv/
H A DTvTrackInfo.java13 * See the License for the specific language governing permissions and
52 private TvTrackInfo(int type, String id, String language, int audioChannelCount, argument
57 mLanguage = language;
94 * Returns the language information encoded by either ISO 639-1 or ISO 639-2/T. If the language
234 * Sets the language information of the current track.
236 * @param language The language string encoded by either ISO 639-1 or ISO 639-2/T.
238 public final Builder setLanguage(String language) { argument
239 mLanguage = language;
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dasm_common.S13 @ See the License for the specific language governing permissions and
/frameworks/base/core/tests/coretests/apks/install_jni_lib/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/base/core/tests/hosttests/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/base/core/tests/hosttests/test-apps/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/base/core/tests/hosttests/test-apps/AutoLocTestApp/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/base/core/tests/hosttests/test-apps/AutoLocVersionedTestApp_v1/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/base/core/tests/hosttests/test-apps/AutoLocVersionedTestApp_v2/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocAllPermsTestApp/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocPermsFLTestApp/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocTestApp/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocVersionedTestApp_v1/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocVersionedTestApp_v2/
H A DAndroid.mk12 # See the License for the specific language governing permissions and

Completed in 3354 milliseconds

12345678910