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

1 2 3 4 5 6 78 91011>>

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
Part.java 29 public Body getBody() throws MessagingException;
49 public void setBody(Body body) throws MessagingException;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewPage.java 84 Composite body = form.getBody(); local
87 // Usually we would set a ColumnLayout on body here. However the presence of the
90 mOverviewPart = new OverviewInfoPart(body, toolkit, mEditor);
96 OverviewExportPart exportPart = new OverviewExportPart(this, body, toolkit, mEditor);
100 mOverviewLinkPart = new OverviewLinksPart(body, toolkit, mEditor);
OverviewInfoPart.java 38 public OverviewInfoPart(Composite body, FormToolkit toolkit, ManifestEditor editor) {
39 super(body, toolkit, editor,
  /system/core/include/cutils/
mq.h 58 * @param body as defined by user
61 MqMessage* mqCreateMessage(MqBytes header, MqBytes body,
  /external/v8/src/
debug-debugger.js 1039 body: { invocationText: this.exec_state_.frame(0).invocationText(),
1046 o.body.sourceLine = this.sourceLine(),
1047 o.body.sourceColumn = this.sourceColumn(),
1048 o.body.sourceLineText = this.sourceLineText(),
1049 o.body.script = MakeScriptObject_(script, false);
1054 o.body.breakpoints = [];
    [all...]
rewriter.cc 133 // Rewrite the body.
135 Visit(node->body());
242 ZoneList<Statement*>* body = function->body();
243 if (!body->is_empty()) {
247 processor.Process(body);
265 body->Add(result_statement);
  /external/wpa_supplicant_8/src/wps/
httpread.c 81 int content_length; /* body length, iff got_content_length */
85 int got_body; /* nonzero when body is finalized */
86 char *body; member in struct:httpread
94 int chunk_start; /* offset in body of chunk hdr or data */
165 os_free(h->body);
346 /* For some types, we should not try to read a body
348 * that we should not read a body.
352 /* Some codes can have a body and some not.
362 * that GETs have a body length of 0... ?
401 char *bbp; /* pointer into body buffer *
    [all...]
  /cts/tools/signature-tools/templates/
Styles.st 19 .body {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
consoleLogs.php 26 <body>
69 </body>
  /external/javassist/src/main/javassist/
CtNewWrappedConstructor.java 29 CtMethod body,
38 howToCallSuper, body,
CtNewMethod.java 33 * The source code must include not only the method body
49 * The source code must include not only the method body
92 * @param body the source text of the method body.
102 String body, CtClass declaring)
106 body, declaring);
118 * @param body the source text of the method body.
129 String body, CtClass declaring)
137 cm.setBody(body);
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
XHTMLManager.java 69 * Adds an XHTML body to the message.
71 * @param message the message that will receive the XHTML body
72 * @param body the string to add as an XHTML body to the message
74 public static void addBody(Message message, String body) {
82 xhtmlExtension.addBody(body);
  /external/v8/tools/
js2c.py 157 def __init__(self, args, body):
159 self.body = body
161 result = self.body
199 body = macro_match.group(3).strip()
200 macros.append((re.compile("\\b%s\\(" % name), TextMacro(args, body)))
206 body = python_match.group(3).strip()
207 fun = eval("lambda " + ",".join(args) + ': ' + body)
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodeparentnode.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
83 be set to "body".
108 assertEqualsAutoCase("element", "parentNodeName","body",parentName);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodeparentnode.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
83 be set to "body".
108 assertEqualsAutoCase("element", "parentNodeName","body",parentName);
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
callback-to-remote-context.js 16 document.body.appendChild(iframe);
callback-to-remote-context2.js 18 document.body.appendChild(iframe);
  /external/webkit/Source/WebKit/chromium/src/
WebDocument.cpp 94 WebElement WebDocument::body() const function in class:WebKit::WebDocument
96 return WebElement(constUnwrap<Document>()->body());
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
RetrieveConf.java 49 * Constructor with given headers and body
52 * @param body Body of this PDu.
54 RetrieveConf(PduHeaders headers, PduBody body) {
55 super(headers, body);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastListItem.java 78 String body = message.getMessageBody(); local
80 SpannableStringBuilder buf = new SpannableStringBuilder(body);
92 // Speak the date first, then channel name, then message body
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportFieldsPart.java 33 public ExportFieldsPart(Composite body, FormToolkit toolkit, ExportEditor editor) {
34 super(body, toolkit, editor);
  /system/core/sh/
nodes.h 74 union node *body; member in struct:nfor
90 union node *body; member in struct:nclist
  /external/javassist/src/main/javassist/compiler/
Parser.java 40 /* A method body is not parsed.
101 * Note that a method body is not parsed.
142 /* Parses a method body.
147 Stmnt body = null; local
151 body = parseBlock(tbl);
152 if (body == null)
153 body = new Stmnt(BLOCK);
156 md.sublist(4).setHead(body);
285 Stmnt body = null; local
290 body = (Stmnt)ASTList.concat(body, new Stmnt(BLOCK, s))
325 Stmnt body = parseStatement(tbl); local
333 Stmnt body = parseStatement(tbl); local
380 Stmnt body = parseStatement(tbl2); local
395 Stmnt body = parseSwitchBlock(tbl); local
413 Stmnt body = new Stmnt(BLOCK, s); local
461 Stmnt body = parseBlock(tbl); local
    [all...]
  /external/v8/test/mjsunit/
debug-stepout-scope.js 167 var body = bodies[j];
168 eval(pre + body);
169 eval("'use strict'; " + pre + body);
172 var body = with_bodies[j];
173 eval(pre + body);
204 var body = bodies[j];
205 eval(pre + body);
206 eval("'use strict'; " + pre + body);
207 Function(pre + body)();
210 var body = with_bodies[j]
    [all...]
  /external/webkit/LayoutTests/fast/dom/TreeWalker/resources/
TreeWalker-currentNode.js 5 document.body.appendChild(subTree);
49 w.currentNode = document.body;
53 document.body.removeChild(subTree);

Completed in 2520 milliseconds

1 2 3 4 5 6 78 91011>>