HomeSort by relevance Sort by last modified time
    Searched refs:body (Results 26 - 50 of 3368) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
via-parser.rb 21 : m='method' ID '(' ')' body
25 body
30 $body::decls = []
34 $body::decls.uniq!
35 for it in $body::decls
41 stat: ID '=' expr ';' {$body::decls << $ID.text.to_s}
  /packages/apps/Email/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/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/libs/androidfw/
InputTransport.cpp 73 return body.motion.pointerCount > 0
74 && body.motion.pointerCount <= MAX_POINTERS;
85 return sizeof(Header) + body.key.size();
87 return sizeof(Header) + body.motion.size();
89 return sizeof(Header) + body.finished.size();
265 msg.body.key.seq = seq;
266 msg.body.key.deviceId = deviceId;
267 msg.body.key.source = source;
268 msg.body.key.action = action;
269 msg.body.key.flags = flags
    [all...]
  /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...]
  /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/mockwebserver/src/main/java/com/google/mockwebserver/
RecordedRequest.java 33 private final byte[] body; field in class:RecordedRequest
38 int bodySize, byte[] body, int sequenceNumber, Socket socket) {
43 this.body = body;
73 * Returns the sizes of the chunks of this request's body, or an empty list
74 * if the request's body was empty or unchunked.
81 * Returns the total size of the body of this POST request (before
89 * Returns the body of this POST request. This may be truncated.
92 return body;
  /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/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/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...]
  /external/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/
contentscript.js 7 matches = document.body.innerText.match(regex);
  /external/clang/lib/ARCMigrate/
TransUnusedInitDelegate.cpp 35 Stmt *Body;
42 : Body(0), Pass(pass) { }
44 void transformBody(Stmt *body, Decl *ParentD) {
45 Body = body;
46 collectRemovables(body, Removables);
47 TraverseStmt(body);
  /external/srtp/include/
rtp_priv.h 56 char body[RTP_MAX_BUF_LEN]; member in struct:__anon15533
  /external/webkit/LayoutTests/fast/dom/Selection/script-tests/
collapseToX-empty-selection.js 5 document.body.appendChild(textNode);
15 document.body.removeChild(textNode);
  /frameworks/opt/mms/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...]
  /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";
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSmsCbMessage.java 102 * Parse and unpack the body text according to the encoding in the DCS.
103 * After completing successfully this method will have assigned the body
108 * @return a Pair of Strings containing the language and body of the message
223 * Unpack body text from the pdu using the given encoding, position and
230 * @param hasLanguageIndicator true if the body text is preceded by a
234 * @return a Pair of Strings containing the language and body of the message
238 String body = null; local
242 body = GsmAlphabet.gsm7BitPackedToString(pdu, offset, length * 8 / 7);
244 if (hasLanguageIndicator && body != null && body.length() > 2)
    [all...]
  /frameworks/base/libs/androidfw/tests/
InputChannel_test.cpp 78 serverMsg.body.key.action = AKEY_EVENT_ACTION_DOWN;
87 EXPECT_EQ(serverMsg.body.key.action, clientMsg.body.key.action)
94 clientReply.body.finished.seq = 0x11223344;
95 clientReply.body.finished.handled = true;
104 EXPECT_EQ(clientReply.body.finished.seq, serverReply.body.finished.seq)
106 EXPECT_EQ(clientReply.body.finished.handled, serverReply.body.finished.handled)

Completed in 560 milliseconds

12 3 4 5 6 7 8 91011>>