Searched refs:newMsgBody (Results 1 – 3 of 3) sorted by relevance
380 String newMsgBody = null; in fragmentText() local383 newMsgBody = Sms7BitEncodingTranslator.translate(text); in fragmentText()385 if (TextUtils.isEmpty(newMsgBody)) { in fragmentText()386 newMsgBody = text; in fragmentText()389 int textLen = newMsgBody.length(); in fragmentText()399 nextPos = GsmAlphabet.findGsmSeptetLimitIndex(newMsgBody, pos, limit, in fragmentText()403 nextPos = SmsMessageBase.findNextUnicodePosition(pos, limit, newMsgBody); in fragmentText()410 result.add(newMsgBody.substring(pos, nextPos)); in fragmentText()
789 CharSequence newMsgBody = null; in calculateLength() local792 newMsgBody = Sms7BitEncodingTranslator.translate(msgBody); in calculateLength()794 if (TextUtils.isEmpty(newMsgBody)) { in calculateLength()795 newMsgBody = msgBody; in calculateLength()797 TextEncodingDetails ted = GsmAlphabet.countGsmSeptets(newMsgBody, use7bitOnly); in calculateLength()799 return SmsMessageBase.calcUnicodeEncodingDetails(newMsgBody); in calculateLength()
374 CharSequence newMsgBody = null; in calculateLength() local377 newMsgBody = Sms7BitEncodingTranslator.translate(messageBody); in calculateLength()379 if (TextUtils.isEmpty(newMsgBody)) { in calculateLength()380 newMsgBody = messageBody; in calculateLength()382 return BearerData.calcTextEncodingDetails(newMsgBody, use7bitOnly, isEntireMsg); in calculateLength()