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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java309 boolean use7bitOnly) {
310 return SmsMessage.calculateLength(messageBody, use7bitOnly);
308 calculateLength(CharSequence messageBody, boolean use7bitOnly) argument
H A DSmsMessage.java443 * @param use7bitOnly ignore (but still count) illegal characters if true
447 boolean use7bitOnly) {
448 return BearerData.calcTextEncodingDetails(messageBody, use7bitOnly);
446 calculateLength(CharSequence messageBody, boolean use7bitOnly) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java267 boolean use7bitOnly) {
268 return SmsMessage.calculateLength(messageBody, use7bitOnly);
266 calculateLength(CharSequence messageBody, boolean use7bitOnly) argument
H A DSmsMessage.java778 * @param use7bitOnly ignore (but still count) illegal characters if true
782 boolean use7bitOnly) {
783 TextEncodingDetails ted = GsmAlphabet.countGsmSeptets(msgBody, use7bitOnly);
781 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);
599 ted = com.android.internal.telephony.cdma.sms.BearerData.calcTextEncodingDetails(msgBody, use7bitOnly);
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DGsmAlphabet.java753 * @param use7bitOnly allow using space in place of unencodable character if true,
759 * characters are unencodable and use7bitOnly is false
761 public static int countGsmSeptetsUsingTables(CharSequence s, boolean use7bitOnly, argument
777 } else if (use7bitOnly) {
798 * @param use7bitOnly allow using space in place of unencodable character if true,
805 countGsmSeptets(CharSequence s, boolean use7bitOnly) { argument
813 int septets = GsmAlphabet.countGsmSeptetsUsingTables(s, use7bitOnly, 0, 0);
862 if (use7bitOnly) {
922 if (use7bitOnly && unencodableCount > minUnencodableCount) {
925 if ((use7bitOnly
[all...]
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsMessage.java250 * @param use7bitOnly if true, characters that are not part of the
261 public static int[] calculateLength(CharSequence msgBody, boolean use7bitOnly) { argument
264 com.android.internal.telephony.cdma.SmsMessage.calculateLength(msgBody, use7bitOnly) :
265 com.android.internal.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly);
356 * @param use7bitOnly if true, characters that are not part of the radio
366 public static int[] calculateLength(String messageBody, boolean use7bitOnly) { argument
367 return calculateLength((CharSequence)messageBody, use7bitOnly);
/frameworks/opt/telephony/src/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/opt/telephony/src/java/com/android/internal/telephony/
H A DSMSDispatcher.java814 * @param use7bitOnly ignore (but still count) illegal characters if true
818 boolean use7bitOnly);
817 calculateLength(CharSequence messageBody, boolean use7bitOnly) argument

Completed in 179 milliseconds