Searched defs:use7bitOnly (Results 1 - 10 of 10) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DImsSMSDispatcher.java358 CharSequence messageBody, boolean use7bitOnly) {
357 calculateLength( CharSequence messageBody, boolean use7bitOnly) argument
H A DSMSDispatcher.java799 * @param use7bitOnly ignore (but still count) illegal characters if true
803 boolean use7bitOnly);
802 calculateLength(CharSequence messageBody, boolean use7bitOnly) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java182 boolean use7bitOnly) {
183 return SmsMessage.calculateLength(messageBody, use7bitOnly, false);
181 calculateLength(CharSequence messageBody, boolean use7bitOnly) argument
H A DSmsMessage.java460 * @param use7bitOnly ignore (but still count) illegal characters if true
465 boolean use7bitOnly, boolean isEntireMsg) {
474 return BearerData.calcTextEncodingDetails(newMsgBody, use7bitOnly, isEntireMsg);
464 calculateLength(CharSequence messageBody, boolean use7bitOnly, boolean isEntireMsg) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java214 boolean use7bitOnly) {
215 return SmsMessage.calculateLength(messageBody, use7bitOnly);
213 calculateLength(CharSequence messageBody, boolean use7bitOnly) argument
H A DSmsMessage.java784 * @param use7bitOnly ignore (but still count) illegal characters if true
788 boolean use7bitOnly) {
797 TextEncodingDetails ted = GsmAlphabet.countGsmSeptets(newMsgBody, use7bitOnly);
787 calculateLength(CharSequence msgBody, boolean use7bitOnly) argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DSmsMessageBodyTest.java383 void fillData(int enabledLangsIndex, boolean use7bitOnly, int[] values, int length) { argument
414 if (use7bitOnly) {
554 private void callGsmLengthMethods(CharSequence msgBody, boolean use7bitOnly, argument
558 int[] values = android.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly);
566 values = android.telephony.SmsMessage.calculateLength(msgBody, use7bitOnly);
574 com.android.internal.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly);
583 private void callCdmaLengthMethods(CharSequence msgBody, boolean use7bitOnly, argument
588 int[] values = android.telephony.SmsMessage.calculateLength(msgBody, use7bitOnly);
596 com.android.internal.telephony.cdma.SmsMessage.calculateLength(msgBody, use7bitOnly, true);
602 ted = com.android.internal.telephony.cdma.sms.BearerData.calcTextEncodingDetails(msgBody, use7bitOnly, tru
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DGsmAlphabet.java774 * @param use7bitOnly allow using space in place of unencodable character if true,
780 * characters are unencodable and use7bitOnly is false
782 public static int countGsmSeptetsUsingTables(CharSequence s, boolean use7bitOnly, argument
798 } else if (use7bitOnly) {
819 * @param use7bitOnly allow using space in place of unencodable character if true,
826 countGsmSeptets(CharSequence s, boolean use7bitOnly) { argument
834 int septets = GsmAlphabet.countGsmSeptetsUsingTables(s, use7bitOnly, 0, 0);
883 if (use7bitOnly) {
943 if (use7bitOnly && unencodableCount > minUnencodableCount) {
946 if ((use7bitOnly
[all...]
/frameworks/opt/telephony/src/java/android/telephony/gsm/
H A DSmsMessage.java186 * @param use7bitOnly if true, characters that are not part of the GSM
197 public static int[] calculateLength(CharSequence messageBody, boolean use7bitOnly) { argument
200 .calculateLength(messageBody, use7bitOnly);
215 * @param use7bitOnly if true, characters that are not part of the GSM
226 public static int[] calculateLength(String messageBody, boolean use7bitOnly) { argument
227 return calculateLength((CharSequence)messageBody, use7bitOnly);
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsMessage.java304 * @param use7bitOnly if true, characters that are not part of the
315 public static int[] calculateLength(CharSequence msgBody, boolean use7bitOnly) { argument
318 com.android.internal.telephony.cdma.SmsMessage.calculateLength(msgBody, use7bitOnly,
320 com.android.internal.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly);
428 * @param use7bitOnly if true, characters that are not part of the radio
438 public static int[] calculateLength(String messageBody, boolean use7bitOnly) { argument
439 return calculateLength((CharSequence)messageBody, use7bitOnly);

Completed in 235 milliseconds