Searched defs:body (Results 1 - 25 of 160) sorted by relevance

1234567

/external/doclava/res/assets/templates/
H A Dhead_tag.cs32 html,body{overflow:auto;} property
33 #body-content{position:relative; top:0;}
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
H A Dnotimer-after-unload.js5 document.body.onload = function() {
9 document.body.onunload = function() {
/external/chromium/chrome/common/extensions/docs/examples/extensions/fx/
H A Dcontent.js48 if ((window == window.top) && document.body && !document.body.onresize) {
49 document.body.onresize = function(event) {
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Dcpp.h63 TokenStream *body; member in struct:MacroSymbol
/external/dbus/dbus/
H A Ddbus-marshal-byteswap-util.c36 DBusString body; local
39 if (!_dbus_string_init (&signature) || !_dbus_string_init (&body))
47 &signature, &body))
56 if (!_dbus_string_copy (&body, 0, &copy, 0))
65 &body, 0);
73 _dbus_verbose_bytes_of_string (&body, 0,
74 _dbus_string_get_length (&body));
85 _dbus_string_set_length (&body, 0);
90 _dbus_string_free (&body);
H A Ddbus-marshal-validate-util.c524 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))
563 NULL, &body,
[all...]
H A Ddbus-message-private.h103 DBusString body; /**< Body network data. */ member in struct:DBusMessage
/external/v8/test/mjsunit/regress/
H A Dregress-1081309.js53 ParsedResponse.prototype.body = function() {
54 return this.response_.body;
78 var backtrace = response.body();
/external/clang/lib/ARCMigrate/
H A DTransUnusedInitDelegate.cpp44 void transformBody(Stmt *body, Decl *ParentD) { argument
45 Body = body;
46 collectRemovables(body, Removables);
47 TraverseStmt(body);
/external/javassist/src/main/javassist/
H A DCtNewWrappedConstructor.java29 CtMethod body,
38 howToCallSuper, body,
26 wrapped(CtClass[] parameterTypes, CtClass[] exceptionTypes, int howToCallSuper, CtMethod body, ConstParameter constParam, CtClass declaring) argument
H A DCtNewConstructor.java29 * <code>CtClass</code> and append code snippet to the body of the class
58 * The source code must include not only the constructor body
87 * @param body the source text of the constructor body.
90 * constructor body does nothing except calling
96 String body, CtClass declaring)
102 cc.setBody(body);
232 * <p>If <code>body</code> is not null, a copy of that method is
233 * embedded in the body of the created constructor.
236 * initialized. Note that <code>body</cod
94 make(CtClass[] parameters, CtClass[] exceptions, String body, CtClass declaring) argument
307 make(CtClass[] parameters, CtClass[] exceptions, int howto, CtMethod body, ConstParameter cparam, CtClass declaring) argument
[all...]
H A DCtNewMethod.java33 * 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);
99 make(CtClass returnType, String mname, CtClass[] parameters, CtClass[] exceptions, String body, CtClass declaring) argument
126 make(int modifiers, CtClass returnType, String mname, CtClass[] parameters, CtClass[] exceptions, String body, CtClass declaring) argument
459 wrapped(CtClass returnType, String mname, CtClass[] parameterTypes, CtClass[] exceptionTypes, CtMethod body, ConstParameter constParam, CtClass declaring) argument
[all...]
/external/srtp/include/
H A Drtp_priv.h56 char body[RTP_MAX_BUF_LEN]; member in struct:__anon12517
/external/v8/test/mjsunit/
H A Ddebug-backtrace.js67 ParsedResponse.prototype.body = function() {
68 return this.response_.body;
105 backtrace = response.body();
128 backtrace = response.body();
146 backtrace = response.body();
163 frame = response.body();
178 frame = response.body();
192 frame = response.body();
203 frame = response.body();
211 source = response.body();
[all...]
H A Ddebug-return-value.js49 ParsedResponse.prototype.body = function() {
50 return this.response_.body;
117 frames = response.body().frames;
/external/webkit/Source/WebCore/notifications/
H A DNotificationCenter.h64 PassRefPtr<Notification> createNotification(const String& iconURI, const String& title, const String& body, ExceptionCode& ec) argument
70 NotificationContents contents(iconURI.isEmpty() ? KURL() : scriptExecutionContext()->completeURL(iconURI), title, body);
H A DNotificationContents.h41 NotificationContents(const KURL& iconUrl, const String& title, const String& body) argument
44 , m_body(body) {}
48 String body() const { return m_body; } function in class:WebCore::NotificationContents
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
H A DCanHandleRequest.cpp38 static void didReceiveMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef body, const void*) argument
43 TEST_ASSERT(WKGetTypeID(body) == WKBooleanGetTypeID());
44 canHandleRequest = WKBooleanGetValue(static_cast<WKBooleanRef>(body));
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/webelement/
H A Dmain.cpp31 frame->setHtml("<html><body><p>First Paragraph</p><p>Second Paragraph</p></body></html>");
33 QWebElement body = doc.firstChild(); local
34 QWebElement firstParagraph = body.firstChild();
/external/v8/src/
H A Ddebug-debugger.js1039 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 = [];
1066 o.body.breakpoints.push(number);
1128 o.body = { uncaught: this.uncaught_,
1134 o.body.sourceLine = this.sourceLine();
1135 o.body
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERObjectIdentifier.java14 private byte[] body; field in class:DERObjectIdentifier
213 if (body == null)
219 body = bOut.toByteArray();
222 return body;
/external/clang/docs/tools/
H A Ddump_ast_matchers.py212 # body = True: We parse the definition of a matcher. We need
216 # body = False: We parse the comments and declaration of the matcher.
220 body = False variable
222 if body:
229 body = False variable
243 body = True variable
/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DRecordedRequest.java33 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;
37 RecordedRequest(String requestLine, List<String> headers, List<Integer> chunkSizes, int bodySize, byte[] body, int sequenceNumber, Socket socket) argument
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DMultipartMimeContentImpl.java84 public void createContentList(String body) throws ParseException { argument
91 ContentImpl content = new ContentImpl(body, delimiter);
97 String[] fragments = body.split("--" + delimiter + "\r\n");
/external/webkit/Source/WebCore/html/
H A DPluginDocument.cpp80 RefPtr<Element> body = document()->createElement(bodyTag, false); local
81 body->setAttribute(marginwidthAttr, "0");
82 body->setAttribute(marginheightAttr, "0");
83 body->setAttribute(bgcolorAttr, "rgb(38,38,38)");
85 rootElement->appendChild(body, ec);
103 body->appendChild(embedElement, ec);

Completed in 6922 milliseconds

1234567