Searched refs:newMsgBody (Results 1 – 2 of 2) sorted by relevance
475 String newMsgBody = null; in fragmentText() local481 newMsgBody = Sms7BitEncodingTranslator.translate(text, isCdma && ted.msgCount == 1); in fragmentText()483 if (TextUtils.isEmpty(newMsgBody)) { in fragmentText()484 newMsgBody = text; in fragmentText()488 int textLen = newMsgBody.length(); in fragmentText()498 nextPos = GsmAlphabet.findGsmSeptetLimitIndex(newMsgBody, pos, limit, in fragmentText()502 nextPos = SmsMessageBase.findNextUnicodePosition(pos, limit, newMsgBody); in fragmentText()509 result.add(newMsgBody.substring(pos, nextPos)); in fragmentText()
1148 CharSequence newMsgBody = null; in calculateLength() local1151 newMsgBody = Sms7BitEncodingTranslator.translate(msgBody, false /* isCdmaFormat */); in calculateLength()1153 if (TextUtils.isEmpty(newMsgBody)) { in calculateLength()1154 newMsgBody = msgBody; in calculateLength()1156 TextEncodingDetails ted = GsmAlphabet.countGsmSeptets(newMsgBody, use7bitOnly); in calculateLength()1158 return SmsMessageBase.calcUnicodeEncodingDetails(newMsgBody); in calculateLength()