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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DImsSMSDispatcher.java352 CharSequence messageBody, boolean use7bitOnly) {
351 calculateLength( CharSequence messageBody, boolean use7bitOnly) argument
H A DSMSDispatcher.java803 * @param use7bitOnly ignore (but still count) illegal characters if true
807 boolean use7bitOnly);
806 calculateLength(CharSequence messageBody, boolean use7bitOnly) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java181 boolean use7bitOnly) {
182 return SmsMessage.calculateLength(messageBody, use7bitOnly, false);
180 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.java212 boolean use7bitOnly) {
213 return SmsMessage.calculateLength(messageBody, use7bitOnly);
211 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.java382 void fillData(int enabledLangsIndex, boolean use7bitOnly, int[] values, int length) { argument
413 if (use7bitOnly) {
551 private void callGsmLengthMethods(CharSequence msgBody, boolean use7bitOnly, argument
555 int[] values = android.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly);
563 values = android.telephony.SmsMessage.calculateLength(msgBody, use7bitOnly);
571 com.android.internal.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly);
580 private void callCdmaLengthMethods(CharSequence msgBody, boolean use7bitOnly, argument
585 int[] values = android.telephony.SmsMessage.calculateLength(msgBody, use7bitOnly);
593 com.android.internal.telephony.cdma.SmsMessage.calculateLength(msgBody, use7bitOnly, true);
599 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.java289 * @param use7bitOnly if true, characters that are not part of the
300 public static int[] calculateLength(CharSequence msgBody, boolean use7bitOnly) { argument
303 com.android.internal.telephony.cdma.SmsMessage.calculateLength(msgBody, use7bitOnly,
305 com.android.internal.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly);
413 * @param use7bitOnly if true, characters that are not part of the radio
423 public static int[] calculateLength(String messageBody, boolean use7bitOnly) { argument
424 return calculateLength((CharSequence)messageBody, use7bitOnly);

Completed in 209 milliseconds