Searched refs:use7bitOnly (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DSmsMessageBodyTest.java385 void fillData(int enabledLangsIndex, boolean use7bitOnly, int[] values, int length) { argument
416 if (use7bitOnly) {
552 private void callGsmLengthMethods(CharSequence msgBody, boolean use7bitOnly, argument
556 int[] values = android.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly);
564 values = android.telephony.SmsMessage.calculateLength(msgBody, use7bitOnly);
572 com.android.internal.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly);
581 private void callCdmaLengthMethods(CharSequence msgBody, boolean use7bitOnly, argument
586 int[] values = android.telephony.SmsMessage.calculateLength(msgBody, use7bitOnly);
594 com.android.internal.telephony.cdma.SmsMessage.calculateLength(msgBody, use7bitOnly);
600 ted = com.android.internal.telephony.cdma.sms.BearerData.calcTextEncodingDetails(msgBody, use7bitOnly);
[all...]
/frameworks/base/telephony/java/android/telephony/gsm/
H A DSmsMessage.java190 * @param use7bitOnly if true, characters that are not part of the GSM
201 public static int[] calculateLength(CharSequence messageBody, boolean use7bitOnly) { argument
204 .calculateLength(messageBody, use7bitOnly);
219 * @param use7bitOnly if true, characters that are not part of the GSM
230 public static int[] calculateLength(String messageBody, boolean use7bitOnly) { argument
231 return calculateLength((CharSequence)messageBody, use7bitOnly);
/frameworks/base/telephony/java/android/telephony/
H A DSmsMessage.java248 * @param use7bitOnly if true, characters that are not part of the
260 public static int[] calculateLength(CharSequence msgBody, boolean use7bitOnly) { argument
263 com.android.internal.telephony.cdma.SmsMessage.calculateLength(msgBody, use7bitOnly) :
264 com.android.internal.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly);
355 * @param use7bitOnly if true, characters that are not part of the radio
365 public static int[] calculateLength(String messageBody, boolean use7bitOnly) { argument
366 return calculateLength((CharSequence)messageBody, use7bitOnly);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DGsmAlphabet.java704 * @param use7bitOnly allow using space in place of unencodable character if true,
710 * characters are unencodable and use7bitOnly is false
712 public static int countGsmSeptetsUsingTables(CharSequence s, boolean use7bitOnly, argument
728 } else if (use7bitOnly) {
749 * @param use7bitOnly allow using space in place of unencodable character if true,
756 countGsmSeptets(CharSequence s, boolean use7bitOnly) { argument
760 int septets = GsmAlphabet.countGsmSeptetsUsingTables(s, use7bitOnly, 0, 0);
809 if (use7bitOnly) {
869 if (use7bitOnly && unencodableCount > minUnencodableCount) {
872 if ((use7bitOnly
[all...]
H A DSMSDispatcher.java750 * @param use7bitOnly ignore (but still count) illegal characters if true
754 boolean use7bitOnly);
753 calculateLength(CharSequence messageBody, boolean use7bitOnly) argument
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java266 boolean use7bitOnly) {
267 return SmsMessage.calculateLength(messageBody, use7bitOnly);
265 calculateLength(CharSequence messageBody, boolean use7bitOnly) argument
H A DSmsMessage.java440 * @param use7bitOnly ignore (but still count) illegal characters if true
444 boolean use7bitOnly) {
445 return BearerData.calcTextEncodingDetails(messageBody, use7bitOnly);
443 calculateLength(CharSequence messageBody, boolean use7bitOnly) argument
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java265 boolean use7bitOnly) {
266 return SmsMessage.calculateLength(messageBody, use7bitOnly);
264 calculateLength(CharSequence messageBody, boolean use7bitOnly) argument
H A DSmsMessage.java769 * @param use7bitOnly ignore (but still count) illegal characters if true
773 boolean use7bitOnly) {
774 TextEncodingDetails ted = GsmAlphabet.countGsmSeptets(msgBody, use7bitOnly);
772 calculateLength(CharSequence msgBody, boolean use7bitOnly) argument

Completed in 83 milliseconds