HomeSort by relevance Sort by last modified time
    Searched refs:newMsgBody (Results 1 - 3 of 3) sorted by null

  /frameworks/opt/telephony/src/java/android/telephony/
SmsMessage.java 368 String newMsgBody = null;
371 newMsgBody = Sms7BitEncodingTranslator.translate(text);
373 if (TextUtils.isEmpty(newMsgBody)) {
374 newMsgBody = text;
377 int textLen = newMsgBody.length();
387 nextPos = GsmAlphabet.findGsmSeptetLimitIndex(newMsgBody, pos, limit,
398 result.add(newMsgBody.substring(pos, nextPos));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsMessage.java 788 CharSequence newMsgBody = null;
791 newMsgBody = Sms7BitEncodingTranslator.translate(msgBody);
793 if (TextUtils.isEmpty(newMsgBody)) {
794 newMsgBody = msgBody;
796 TextEncodingDetails ted = GsmAlphabet.countGsmSeptets(newMsgBody, use7bitOnly);
799 int octets = newMsgBody.length() * 2;
800 ted.codeUnitCount = newMsgBody.length();
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
SmsMessage.java 466 CharSequence newMsgBody = null;
469 newMsgBody = Sms7BitEncodingTranslator.translate(messageBody);
471 if (TextUtils.isEmpty(newMsgBody)) {
472 newMsgBody = messageBody;
474 return BearerData.calcTextEncodingDetails(newMsgBody, use7bitOnly, isEntireMsg);
    [all...]

Completed in 81 milliseconds