HomeSort by relevance Sort by last modified time
    Searched refs:body (Results 51 - 75 of 999) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/services/Telephony/src/org/apache/james/mime4j/decoder/
DecoderUtil.java 102 * RFC 2047) found in a header field body.
118 * RFC 2047) found in a header field body.
153 * @param body the string to decode.
156 public static String decodeEncodedWords(String body) {
160 if (body.indexOf("=?") == -1) {
161 return body;
170 int begin = body.indexOf("=?", previousEnd);
178 int qm1 = body.indexOf('?', begin + 2);
182 int qm2 = body.indexOf('?', qm1 + 1);
186 int end = body.indexOf("?=", qm2 + 1)
    [all...]
  /packages/services/Telephony/src/org/apache/james/mime4j/field/
AddressListField.java 33 protected AddressListField(String name, String body, String raw, AddressList addressList, ParseException parseException) {
34 super(name, body, raw);
50 public Field parse(final String name, final String body, final String raw) {
54 addressList = AddressList.parse(body);
58 log.debug("Parsing value '" + body + "': "+ e.getMessage());
62 return new AddressListField(name, body, raw, addressList, parseException);
MailboxField.java 35 protected MailboxField(final String name, final String body, final String raw, final Mailbox mailbox, final ParseException parseException) {
36 super(name, body, raw);
52 public Field parse(final String name, final String body, final String raw) {
56 MailboxList mailboxList = AddressList.parse(body).flatten();
63 log.debug("Parsing value '" + body + "': "+ e.getMessage());
67 return new MailboxField(name, body, raw, mailbox, parseException);
MailboxListField.java 35 protected MailboxListField(final String name, final String body, final String raw, final MailboxList mailboxList, final ParseException parseException) {
36 super(name, body, raw);
52 public Field parse(final String name, final String body, final String raw) {
56 mailboxList = AddressList.parse(body).flatten();
60 log.debug("Parsing value '" + body + "': "+ e.getMessage());
64 return new MailboxListField(name, body, raw, mailboxList, parseException);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListWithMailMessages.java 77 public MailMessage(String subject, String body) {
78 this(subject, body, false);
82 public MailMessage(String subject, String body, boolean focusable) {
84 mBody = body;
100 public void setBody(String body) {
101 this.mBody = body;
138 WebView body = (WebView) messageUi.findViewById(R.id.body); local
139 body.loadData(message.getBody(), mimeType, null);
140 // body.setText(message.getBody())
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
config.py 112 def _gen_temp_sourcefile(self, body, headers, lang):
119 file.write(body)
120 if body[-1] != "\n":
125 def _preprocess(self, body, headers, include_dirs, lang):
126 src = self._gen_temp_sourcefile(body, headers, lang)
132 def _compile(self, body, headers, include_dirs, lang):
133 src = self._gen_temp_sourcefile(body, headers, lang)
141 def _link(self, body, headers, include_dirs, libraries, library_dirs,
143 (src, obj) = self._compile(body, headers, include_dirs, lang)
178 def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
config.py 112 def _gen_temp_sourcefile(self, body, headers, lang):
119 file.write(body)
120 if body[-1] != "\n":
125 def _preprocess(self, body, headers, include_dirs, lang):
126 src = self._gen_temp_sourcefile(body, headers, lang)
132 def _compile(self, body, headers, include_dirs, lang):
133 src = self._gen_temp_sourcefile(body, headers, lang)
141 def _link(self, body, headers, include_dirs, libraries, library_dirs,
143 (src, obj) = self._compile(body, headers, include_dirs, lang)
178 def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c")
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Request.java 28 * An HTTP request. Instances of this class are immutable if their {@link #body}
35 private final RequestBody body; field in class:Request
46 this.body = builder.body;
89 public RequestBody body() { method in class:Request
90 return body;
129 private RequestBody body; field in class:Request.Builder
141 this.body = request.body;
208 public Builder post(RequestBody body) {
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_dump.c 1484 const uint8_t *body = (const uint8_t *)data; local
1801 const uint8_t *body = (const uint8_t *)&header[1]; local
    [all...]
  /external/chromium-trace/trace-viewer/third_party/WebOb/docs/wiki-example-code/
example.py 12 <body>
22 </body>
31 <body>
49 </body></html>
155 match = re.search(r'<body[^>]*>(.*?)</body>', content, re.I|re.S)
169 new_content = """<html><head><title>%s</title></head><body>%s</body></html>""" % (
  /external/chromium-trace/trace-viewer/third_party/Paste/tests/
test_request_form.py 16 def make_post(body):
19 'CONTENT_LENGTH': str(len(body)),
21 'wsgi.input': six.BytesIO(body),
test_urlmap.py 9 body = response_text % environ
11 body = body.encode('ascii')
12 return [body]
51 assert b'--><script' not in res.body
53 assert b'--\x01><script>' not in res.body
  /external/vboot_reference/tests/
vb2_firmware_tests.sh 22 # Dummy firmware body
23 echo 'This is a test firmware body. This is only a test. Lalalalala' \
24 > body.test
49 --fv body.test \
56 ${BUILD_RUN}/tests/vb20_verify_fw gbb.test vblock.test body.test
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
Entity.java 30 * MIME entity. An entity has a header and a body (see RFC 2045).
37 private Body body = null; field in class:Entity
79 * Gets the body of this entity.
81 * @return the body,
83 public Body getBody() {
84 return body;
88 * Sets the body of this entity.
90 * @param body the body
    [all...]
  /developers/build/prebuilts/gradle/PermissionRequest/Application/src/main/assets/
sample.css 17 body {
  /developers/samples/android/content/webview/PermissionRequest/Application/src/main/assets/
sample.css 17 body {
  /external/doclava/res/assets/templates/
trailer.cs 1 </div> <!-- end body-content --> <?cs # normally opened by header.cs ?>
  /external/mesa3d/src/glsl/
ir_function_can_inline.cpp 33 * (0) loop surrounding the function body.
66 v.run((exec_list *) &callee->body);
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail();
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
proxy.py 21 * Rewriting body? (Probably not on this one -- that can be done with
96 body = environ['wsgi.input'].read(-1)
97 headers['content-length'] = str(len(body))
101 body = environ['wsgi.input'].read(length)
103 body = ''
119 body, headers)
128 body = res.read(int(length))
130 body = res.read()
132 return [body]
219 body = environ['wsgi.input'].read(length
    [all...]
  /external/clang/lib/ARCMigrate/
TransUnusedInitDelegate.cpp 35 Stmt *Body;
42 : Body(nullptr), Pass(pass) { }
44 void transformBody(Stmt *body, Decl *ParentD) {
45 Body = body;
46 collectRemovables(body, Removables);
47 TraverseStmt(body);
  /external/libunwind/src/ia64/
longjmp.S 34 .body
  /external/srtp/include/
rtp_priv.h 56 char body[RTP_MAX_BUF_LEN]; member in struct:__anon18759
  /external/wpa_supplicant_8/hs20/server/www/
free-remediation.php 5 <body>
18 </body>
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
MultimediaMessagePdu.java 27 * The body.
42 * @param body the body of this PDU
44 public MultimediaMessagePdu(PduHeaders header, PduBody body) {
46 mMessageBody = body;
59 * Get body of the PDU.
61 * @return the body
68 * Set body of the PDU.
70 * @param body the body
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
MultimediaMessagePdu.java 25 * The body.
40 * @param body the body of this PDU
42 public MultimediaMessagePdu(PduHeaders header, PduBody body) {
44 mMessageBody = body;
57 * Get body of the PDU.
59 * @return the body
66 * Set body of the PDU.
68 * @param body the body
    [all...]

Completed in 839 milliseconds

1 23 4 5 6 7 8 91011>>