HomeSort by relevance Sort by last modified time
    Searched refs:body (Results 251 - 275 of 3245) sorted by null

<<11121314151617181920>>

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 99 | Ast.For (var_name, start, end_, step, body) ->
127 (* Emit the body of the loop. This, like any other expr, can change the
128 * current BB. Note that we ignore the value computed by the body, but
130 ignore (codegen_expr body);
181 * has a body, don't allow redefinition or reextern. *)
183 (* If 'f' already has a body, reject this. *)
202 | Ast.Function (proto, body) ->
211 let ret_val = codegen_expr body in
  /external/mesa3d/src/glsl/
ir_variable_refcount.cpp 94 * dead-code eliminate them, so just accept the body here.
96 visit_list_elements(this, &ir->body);
opt_dead_code.cpp 135 if (do_dead_code(&sig->body))
  /external/webkit/LayoutTests/dom/html/level2/html/
hasFeature02.js 33 // raised when entering the body of the test.
62 // body of the test to be executed.
hasFeature05.js 33 // raised when entering the body of the test.
62 // body of the test to be executed.
hasFeature06.js 33 // raised when entering the body of the test.
62 // body of the test to be executed.
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
hasFeature02.js 33 // raised when entering the body of the test.
62 // body of the test to be executed.
hasFeature05.js 33 // raised when entering the body of the test.
62 // body of the test to be executed.
hasFeature06.js 33 // raised when entering the body of the test.
62 // body of the test to be executed.
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
hasFeature01.js 33 // raised when entering the body of the test.
63 // body of the test to be executed.
hasFeature02.js 33 // raised when entering the body of the test.
62 // body of the test to be executed.
hasFeature03.js 33 // raised when entering the body of the test.
62 // body of the test to be executed.
hasFeature04.js 33 // raised when entering the body of the test.
63 // body of the test to be executed.
  /external/webkit/LayoutTests/storage/domstorage/events/script-tests/
basic-body-attribute.js 1 description("This is a test to make sure DOM Storage mutations fire StorageEvents that are caught by the event listener specified as an attribute on the body.");
18 evalAndLog("iframe.src = 'resources/body-event-handler.html'");
  /external/webkit/Source/WebCore/inspector/front-end/
EventListenersSidebarPane.js 63 var body = this.bodyElement;
64 body.removeChildren();
95 body.appendChild(div);
103 body.appendChild(section.element);
HelpScreen.js 52 document.body.appendChild(this._element);
  /external/webkit/Source/WebKit/chromium/public/
WebDocument.h 75 WEBKIT_API WebElement body() const;
WebNotification.h 77 WEBKIT_API WebString body() const;
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/
SimpleContentHandler.java 33 * decoding to body parts.
45 * Called when the body of a discrete (non-multipart) entity is encountered.
52 * @param is the contents of the body. Base64 or quoted-printable
87 * @see org.apache.james.mime4j.AbstractContentHandler#body(org.apache.james.mime4j.BodyDescriptor, java.io.InputStream)
89 public final void body(BodyDescriptor bd, InputStream is) throws IOException { method in class:SimpleContentHandler
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
SmtpSenderUnitTests.java 30 import com.android.emailcommon.provider.EmailContent.Body;
113 Body body = new Body(); local
114 body.mMessageKey = message.mId;
115 body.mTextContent = TEST_STRING;
116 body.save(mProviderContext);
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractDownloadManagerFunctionalTest.java 218 MockResponse enqueueResponse(int status, String body) {
221 .setBody(body)
230 MockResponse enqueueResponse(int status, byte[] body) {
233 .setBody(body)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 69 * @param body The parent (e.g. FormPage body)
72 public ManifestSectionPart(Composite body, FormToolkit toolkit) {
73 this(body, toolkit, 0, false);
83 * @param body The parent (e.g. FormPage body).
88 public ManifestSectionPart(Composite body, FormToolkit toolkit,
90 super(body, toolkit, extra_style |
  /external/v8/src/
ast.h 393 Statement* body() const { return body_; } function in class:v8::internal::IterationStatement
405 void Initialize(Statement* body) {
406 body_ = body;
422 void Initialize(Expression* cond, Statement* body) {
423 IterationStatement::Initialize(body);
454 void Initialize(Expression* cond, Statement* body) {
455 IterationStatement::Initialize(body);
489 Statement* body) {
490 IterationStatement::Initialize(body);
534 void Initialize(Expression* each, Expression* enumerable, Statement* body) {
1708 ZoneList<Statement*>* body() const { return body_; } function in class:v8::internal::FunctionLiteral
2033 RegExpTree* body() { return body_; } function in class:v8::internal::RegExpQuantifier
2062 RegExpTree* body() { return body_; } function in class:v8::internal::RegExpCapture
2092 RegExpTree* body() { return body_; } function in class:v8::internal::RegExpLookahead
    [all...]
  /external/libffi/src/ia64/
unix.S 57 .body
291 .body
378 .body
386 .body
394 .body
402 .body
411 .body
429 .body
457 .body
485 .body
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 245 * Helper to enqueue a response from the MockWebServer with no body.
259 * @param body The body to return in this response
262 protected MockResponse enqueueResponse(int status, byte[] body) {
263 return doEnqueueResponse(status).setBody(body);
271 * @param bodyFile The body to return in this response
    [all...]

Completed in 563 milliseconds

<<11121314151617181920>>