HomeSort by relevance Sort by last modified time
    Searched refs:body (Results 201 - 225 of 3250) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebCore/inspector/front-end/
Popover.js 51 document.body.removeChild(WebInspector.Popover._popoverElement);
56 document.body.appendChild(this.contentElement);
62 document.body.appendChild(this.element);
71 document.body.removeChild(this.element);
95 while (anchorElement !== document.body) {
  /external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
process.js 114 "switch": function(expr, body) {
115 return [ this[0], walk(expr), MAP(body, function(branch){
138 "function": function(name, args, body) {
139 return [ this[0], name, args.slice(), MAP(body, walk) ];
141 "defun": function(name, args, body) {
142 return [ this[0], name, args.slice(), MAP(body, walk) ];
366 var ret = current_scope.body = cont();
380 function _lambda(name, args, body) {
383 return MAP(body, walk);
468 function _lambda(name, args, body) {
    [all...]
  /external/chromium/chrome/browser/history/
text_database_manager.h 33 // body sets, all of which come in at different times for a given page. When
102 // either the title or body set. The visit ID specifies the visit that will
108 void AddPageContents(const GURL& url, const string16& body);
119 const string16& body);
128 // file AddPageURL/Title/Body that may not be committed to the database yet.
171 // visit, title, and body all come in at different times.
182 const string16& body() const { return body_; } function in class:history::TextDatabaseManager::PageInfo
184 // Setters, we can only update the title and body.
188 // Returns true if both the title or body of the entry has been set. Since
189 // both the title and body setters will "fix" empty strings to be a space
    [all...]
  /external/mesa3d/src/glsl/
link_functions.cpp 121 assert(linked_sig->body.is_empty());
125 * The parameter list and the and function body are cloned separately.
127 * to replace variable references in the cloned body.
148 foreach_list_const(node, &sig->body) {
152 linked_sig->body.push_tail(copy);
lower_jumps.cpp 124 exec_list& list = this->loop ? this->loop->body_instructions : signature->body;
165 this->signature->body.push_head(new(this->signature) ir_assignment(new(this->signature) ir_dereference_variable(return_flag), new(this->signature) ir_constant(false), 0));
166 this->signature->body.push_head(this->return_flag);
176 this->signature->body.push_head(this->return_value);
392 * In the lowered code, we instead put the break check between the this->loop body and the increment,
500 block_record body = visit_block(&ir->body_instructions); local
502 if(body.min_strength >= strength_break) {
503 /* FINISHME: turn the this->loop into an if, or replace it with its body */
539 visit_block(&ir->body);
542 ir->body.push_tail(new(ir) ir_return(new (ir) ir_dereference_variable(this->function.return_value)))
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContentImpl.java 84 public void createContentList(String body) throws ParseException {
91 ContentImpl content = new ContentImpl(body, delimiter);
97 String[] fragments = body.split("--" + delimiter + "\r\n");
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpClient4.java 63 final InputStream body = request.getBody(); local
72 if (body != null) {
73 ExcerptInputStream e = new ExcerptInputStream(body);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationPage.java 83 Composite body = form.getBody(); local
87 // MasterDetailsBlock.createContent() below will reset the body's layout to a grid layout.
88 mTooglePart = new ApplicationToggle(body, toolkit, mEditor, appUiNode);
91 mAttrPart = new ApplicationAttributesPart(body, toolkit, mEditor, appUiNode);
OverviewExportPart.java 47 public OverviewExportPart(OverviewPage overviewPage, final Composite body, FormToolkit toolkit,
49 super(body, toolkit, Section.TWISTIE | Section.EXPANDED, true /* description */);
99 WizardDialog dialog = new WizardDialog(body.getShell(), wizard);
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 48 * can get a body or parameters but not both. Calling a getParameter method will
49 * read and close the body (like readBodyAsString), so you can't read it later.
50 * If you read or close the body first, then getParameter can't read it. The
218 ParameterStyle style = (ps == null) ? ParameterStyle.BODY : Enum
267 InputStream body = request.getBodyAsStream(); local
268 if (style == ParameterStyle.BODY && !(isPost && body == null)) {
278 case BODY: {
284 body = new ByteArrayInputStream(form);
300 if (isPost && body == null)
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLDocument17.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
98 bodyElem = doc.body;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLDocument17.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
98 bodyElem = doc.body;
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodegetbaseuri09.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
99 bodyList = doc.getElementsByTagName("body");
nodegetbaseuri15.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
100 bodyList = doc.getElementsByTagName("body");
nodegettextcontent12.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
100 elem = doc.createElementNS("http://www.w3.org/1999/xhtml","body");
nodegettextcontent19.js 33 // raised when entering the body of the test.
70 // body of the test to be executed.
100 elemList = doc.getElementsByTagName("body");
textiselementcontentwhitespace03.js 33 // raised when entering the body of the test.
70 // body of the test to be executed.
80 Get the newline between the "body" and "p" element. Since node is both in element content
textiselementcontentwhitespace05.js 33 // raised when entering the body of the test.
69 // body of the test to be executed.
118 bodyList = doc.getElementsByTagName("body");
126 bodyList = doc.getElementsByTagName("body");
  /packages/apps/Mms/src/com/android/mms/transaction/
HttpUtils.java 209 byte[] body = null;
213 body = new byte[(int) entity.getContentLength()];
216 dis.readFully(body);
251 body = new byte[offset];
252 System.arraycopy(tempBody, 0, body, 0, offset);
272 return body;
  /system/core/sh/
nodes.c 152 calcsize(n->nfor.body);
160 calcsize(n->nclist.body);
250 new->nfor.body = copynode(n->nfor.body);
258 new->nclist.body = copynode(n->nclist.body);
  /external/chromium/net/tools/flip_server/
mem_cache.h 57 std::string body; member in class:net::StoreBodyAndHeadersVisitor
73 std::string body; member in struct:net::FileData
  /external/guava/javadoc/
stylesheet.css 6 body { background-color: #FFFFFF; color:#000000 }
  /external/jsr305/javadoc/
stylesheet.css 6 body { background-color: #FFFFFF }
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 59 * has a body, don't allow redefinition or reextern. *)
61 (* If 'f' already has a body, reject this. *)
80 | Ast.Function (proto, body) ->
89 let ret_val = codegen_expr body in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 59 * has a body, don't allow redefinition or reextern. *)
61 (* If 'f' already has a body, reject this. *)
80 | Ast.Function (proto, body) ->
89 let ret_val = codegen_expr body in

Completed in 460 milliseconds

1 2 3 4 5 6 7 891011>>