HomeSort by relevance Sort by last modified time
    Searched refs:BODY (Results 101 - 125 of 150) sorted by null

1 2 3 45 6

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccSmsInterfaceManager.java 351 * @param data the body of the message to send
419 * @param text the body of the message to send
    [all...]
InboundSmsHandler.java 1567 StringBuilder body = new StringBuilder(); local
    [all...]
SMSDispatcher.java 752 * @param data the body of the message to send
779 * @param text the body of the message to send
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/sms/
DatabaseMessages.java 111 Sms.BODY,
    [all...]
MmsUtils.java 240 "<body>" +
241 "%s" + // constructed body goes here
242 "</body>" +
254 "<body>" +
255 "%s" + // constructed body goes here
256 "</body>" +
270 "<body>" +
271 "%s" + // constructed body goes here
272 "</body>" +
282 "<body>"
1055 final StringBuilder body = new StringBuilder(); local
    [all...]
  /prebuilts/go/darwin-x86/src/mime/multipart/
multipart_test.go 176 t.Errorf("part2 body expected long line of length %d; got length %d",
180 t.Errorf("part2 long body didn't match")
197 buf.String(), "body of part 3")
228 body := "--BOUNDARY\r\n" +
233 bodyReader := strings.NewReader(body)
239 t.Errorf("Expected a body part on text %d", testNum)
302 body := strings.Replace(testBody, "\n", "\r\n", -1)
303 bodyReader := strings.NewReader(body)
349 Body
354 Body
    [all...]
  /prebuilts/go/linux-x86/src/mime/multipart/
multipart_test.go 176 t.Errorf("part2 body expected long line of length %d; got length %d",
180 t.Errorf("part2 long body didn't match")
197 buf.String(), "body of part 3")
228 body := "--BOUNDARY\r\n" +
233 bodyReader := strings.NewReader(body)
239 t.Errorf("Expected a body part on text %d", testNum)
302 body := strings.Replace(testBody, "\n", "\r\n", -1)
303 bodyReader := strings.NewReader(body)
349 Body
354 Body
    [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java 86 import com.android.emailcommon.provider.EmailContent.Body;
281 private static final int BODY = BODY_BASE;
305 array.put(BODY_BASE >> BASE_SHIFT, Body.TABLE_NAME);
335 "select " + BodyColumns.MESSAGE_KEY + " from " + Body.TABLE_NAME +
338 private static final String DELETE_ORPHAN_BODIES = "delete from " + Body.TABLE_NAME +
341 private static final String DELETE_BODY = "delete from " + Body.TABLE_NAME +
636 // body database is already attached to the email database and any attempt to use the
637 // body database directly will result in a SQLiteException (the database is locked)
685 // Handle lost Body records here, since this cannot be done in a trigger
3074 Body body = Body.restoreBodyWithMessageId(context, messageId); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContent.java 162 Sms.BODY,
376 mMessageColBody = c.getColumnIndex(BluetoothMapContract.MessageColumns.BODY);
421 mSmsColSubject = c.getColumnIndex(Sms.BODY);
3640 String body = c.getString( local
    [all...]
  /external/deqp/modules/gles3/functional/
es3fVertexTextureTests.cpp     [all...]
es3fNegativeTextureApiTests.cpp 116 #define FOR_CUBE_FACES(FACE_GL_VAR, BODY) \
122 BODY \
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
imaplib.py 438 enclosed in parentheses, eg: "(UID BODY[TEXT])".
    [all...]
  /external/python/cpython2/Lib/
imaplib.py 451 enclosed in parentheses, eg: "(UID BODY[TEXT])".
    [all...]
  /packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
TelephonyBackupAgentTest.java 129 "\"+1232132214124\",\"body\":\"sms 1\",\"subject\":\"sms subject\",\"date\":" +
137 mSmsJson[1] = "{\"address\":\"+1232132214124\",\"body\":\"sms 2\",\"date\":" +
144 "\"+1232221412433 +1232221412444\",\"body\":\"sms 3\",\"date\":\"111111111111\"," +
154 "\"body\":\"sms 4\",\"date\":\"111111111111\"," +
167 11 /*msgBox*/, "location 1" /*contentLocation*/, "MMs body 1" /*body*/,
168 111 /*body charset*/,
183 ",\"charset\":103}],\"mms_body\":\"MMs body 1\",\"mms_charset\":111,\"" +
190 222 /*msgBox*/, "location 2" /*contentLocation*/, "MMs body 2" /*body*/,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/config/i386/
i386.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
tmschema.h 662 TM_PART(10,TABP,BODY)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
imaplib.py 438 enclosed in parentheses, eg: "(UID BODY[TEXT])".
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
imaplib.py 438 enclosed in parentheses, eg: "(UID BODY[TEXT])".
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imaplib.py 438 enclosed in parentheses, eg: "(UID BODY[TEXT])".
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py 438 enclosed in parentheses, eg: "(UID BODY[TEXT])".
    [all...]
  /packages/apps/Email/provider_src/com/android/email/service/
ImapService.java 247 * Load the structure and body of messages not yet synced
602 // mFlagLoaded = UNLOADED -> message created, but none of body loaded
603 // mFlagLoaded = PARTIAL -> message created, a "sane" amt of body has been loaded
604 // mFlagLoaded = COMPLETE -> message body has been completely loaded
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java 45 import com.android.emailcommon.mail.Body;
775 " UID FETCH 1 \\(UID FLAGS INTERNALDATE RFC822\\.SIZE BODY\\.PEEK\\[HEADER.FIELDS" +
779 "fLAGS (\\Seen) bODY[hEADER.FIELDS (dAte sUbject fRom cOntent-type tO cC" +
871 final Body body = message.getBody(); local
1034 Body body = message.getBody(); local
    [all...]
  /external/deqp/modules/gles2/functional/
es2fNegativeTextureApiTests.cpp 65 #define FOR_CUBE_FACES(FACE_GL_VAR, BODY) \
71 BODY \
    [all...]
  /prebuilts/misc/common/robolectric/lib/
nekohtml-1.9.6.2.jar 
  /prebuilts/tools/common/m2/repository/nekohtml/nekohtml/1.9.6.2/
nekohtml-1.9.6.2.jar 

Completed in 5100 milliseconds

1 2 3 45 6