/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/ |
ReceiverActivity.java | 38 byte[] body; 41 body = in.getByteArrayExtra("data"); 46 Log.d(LOG_TAG, "body:"); 47 Log.d(LOG_TAG, HexDump.dumpHexString(body)); 49 DataVerify.SetLastReceivedPdu(body);
|
ReceiverService.java | 48 byte[] body; 50 body = intent.getByteArrayExtra("data"); 55 Log.d(LOG_TAG, "body:"); 56 Log.d(LOG_TAG, HexDump.dumpHexString(body)); 58 DataVerify.SetLastReceivedPdu(body);
|
/packages/apps/Email/emailcommon/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);
177 int qm1 = body.indexOf('?', endScan + 2);
178 int qm2 = body.indexOf('?', qm1 + 1);
184 int end = begin == -1 ? -1 : body.indexOf("?=", endScan); [all...] |
/packages/apps/Email/emailcommon/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; 139 WebView body = (WebView) messageUi.findViewById(R.id.body); local 140 body.loadData(message.getBody(), mimeType, encoding); 141 // body.setText(message.getBody()) [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/css/ |
options.css | 12 body { 66 body.rtl .col1, body.rtl .col2 { 69 body.rtl { 72 body.rtl .col2 { 75 body.rtl .checkBox, body.rtl .checkBoxTopic { 78 body.rtl table.contentTable { 81 body.rtl #save_div{ 84 body.rtl #countryList [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
PropertiesSidebarPane.js | 37 var body = this.bodyElement; 40 body.removeChildren(); 68 var body = this.bodyElement; 69 body.removeChildren(); 83 body.appendChild(section.element);
|
/external/webkit/Source/WebKit/gtk/tests/ |
testdomnode.c | 29 #define HTML_DOCUMENT_HIERARCHY_NAVIGATION "<html><head><title>This is the title</title></head><body><p>1</p><p>2</p><p>3</p></body></html>" 30 #define HTML_DOCUMENT_NODE_INSERTION "<html><body></body></html>" 68 WebKitDOMHTMLBodyElement* body; local 89 /* Body, Head sibling */ 92 body = WEBKIT_DOM_HTML_BODY_ELEMENT(ptr); 93 g_assert(WEBKIT_DOM_IS_HTML_BODY_ELEMENT(body)); 99 /* Body's previous sibling is Head */ 100 ptr = webkit_dom_node_get_previous_sibling(WEBKIT_DOM_NODE(body)); 128 WebKitDOMHTMLElement* body; local [all...] |
/external/webkit/LayoutTests/fast/dom/HTMLTableSectionElement/script-tests/ |
rows.js | 5 var body = document.createElement("tbody"); 8 body.appendChild(container); 10 return body.rows.length;
|
/packages/apps/Email/emailcommon/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...] |
/external/chromium/chrome/browser/resources/ |
extensions_infobar.css | 5 body {
|
extensions_infobar_mac.css | 5 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/webkit/Source/JavaScriptCore/runtime/ |
Executable.cpp | 235 RefPtr<FunctionBodyNode> body = globalData->parser->parse<FunctionBodyNode>(exec->lexicalGlobalObject(), 0, 0, m_source, m_parameters.get(), isStrictMode() ? JSParseStrict : JSParseNormal, &exception); local 236 if (!body) { 241 body->setUsesArguments(); 242 body->finishParsing(m_parameters, m_name); 243 recordParse(body->features(), body->hasCapturedVariables(), body->lineNo(), body->lastLine()); 249 OwnPtr<BytecodeGenerator> generator(adoptPtr(new BytecodeGenerator(body.get(), scopeChainNode, m_codeBlockForCall->symbolTable(), m_codeBlockForCall.get()))); 252 body->destroyData() 283 RefPtr<FunctionBodyNode> body = globalData->parser->parse<FunctionBodyNode>(exec->lexicalGlobalObject(), 0, 0, m_source, m_parameters.get(), isStrictMode() ? JSParseStrict : JSParseNormal, &exception); local 361 FunctionBodyNode* body = static_cast<FuncExprNode*>(funcExpr)->body(); local [all...] |
/frameworks/base/telephony/java/android/telephony/ |
SmsCbMessage.java | 143 * Get the body of this message, or null if no body available 145 * @return Body, or null 228 * Parse and unpack the body text according to the encoding in the DCS. 229 * After completing successfully this method will have assigned the body 342 * Unpack body text from the pdu using the given encoding, position and 349 * @param hasLanguageIndicator true if the body text is preceded by a 352 * @return Body text 356 String body = null; local 360 body = GsmAlphabet.gsm7BitPackedToString(pdu, offset, length * 8 / 7) [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/ |
contentscript.js | 7 matches = document.body.innerText.match(regex);
|
/external/srtp/include/ |
rtp_priv.h | 56 char body[RTP_MAX_BUF_LEN]; member in struct:__anon11247
|
/external/webkit/LayoutTests/fast/dom/Selection/script-tests/ |
collapseToX-empty-selection.js | 5 document.body.appendChild(textNode); 15 document.body.removeChild(textNode);
|
/frameworks/base/core/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...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/function/ |
tostring-1.js | 122 function TestFunction( name, args, body ) { 129 this.body = body; 134 body 138 "("+args+") {\n"+ (( body ) ? body +"\n" : "") + "}\n";
|
/external/dbus/dbus/ |
dbus-marshal-validate-util.c | 519 /* Body validation; test basic validation of valid bodies for both endian */ 524 DBusString body; local 526 if (!_dbus_string_init (&signature) || !_dbus_string_init (&body)) 532 &signature, &body)) 538 NULL, &body, 0, 539 _dbus_string_get_length (&body)); 545 _dbus_verbose_bytes_of_string (&body, 0, _dbus_string_get_length (&body)); 550 _dbus_string_set_length (&body, 0); 557 &signature, &body)) [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/ |
MimeBodyPart.java | 19 import com.android.emailcommon.mail.Body; 36 protected Body mBody; 48 public MimeBodyPart(Body body) throws MessagingException { 49 this(body, null); 52 public MimeBodyPart(Body body, String mimeType) throws MessagingException { 56 setBody(body); 79 public Body getBody() throws MessagingException { 83 public void setBody(Body body) throws MessagingException [all...] |