Home | History | Annotate | Download | only in activity

Lines Matching defs:FROM

66     private static final String FROM = "Fred From <from@google.com>";
101 /** Note - these are copied from private strings in MessageCompose. Make them package? */
172 * To = Reply-To or From: (if REPLY)
173 * To = (Reply-To or From:) + To: + Cc: (if REPLY_ALL)
407 * The to should be: FROM
417 msg.mFrom = Address.parseAndPack(FROM);
429 String expected = Address.parseAndPack(FROM);
441 * The to should be: FROM and TO2
451 msg.mFrom = Address.parseAndPack(FROM);
462 String expected = Address.parseAndPack(FROM + ',' + TO2);
477 * The to should be: FROM, TO1, and TO2
487 msg.mFrom = Address.parseAndPack(FROM);
498 String expected = Address.parseAndPack(FROM + ',' + TO1 + ',' + TO2);
513 * The to should be: FROM, TO1, TO2, and TO3
523 msg.mFrom = Address.parseAndPack(FROM);
534 String expected = Address.parseAndPack(FROM + ',' + TO1 + ',' + TO2 + ',' + TO3);
723 * Must call from UI thread.
750 assertTrue("from address", addresses.length > 0);