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

  /frameworks/opt/telephony/src/java/android/telephony/
SmsMessage.java 371 String newMsgBody = null;
374 newMsgBody = Sms7BitEncodingTranslator.translate(text);
376 if (TextUtils.isEmpty(newMsgBody)) {
377 newMsgBody = text;
380 int textLen = newMsgBody.length();
390 nextPos = GsmAlphabet.findGsmSeptetLimitIndex(newMsgBody, pos, limit,
394 nextPos = SmsMessageBase.findNextUnicodePosition(pos, limit, newMsgBody);
401 result.add(newMsgBody.substring(pos, nextPos));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsMessage.java 789 CharSequence newMsgBody = null;
792 newMsgBody = Sms7BitEncodingTranslator.translate(msgBody);
794 if (TextUtils.isEmpty(newMsgBody)) {
795 newMsgBody = msgBody;
797 TextEncodingDetails ted = GsmAlphabet.countGsmSeptets(newMsgBody, use7bitOnly);
799 return SmsMessageBase.calcUnicodeEncodingDetails(newMsgBody);
    [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...]
  /external/robolectric/v3/runtime/
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 

Completed in 209 milliseconds