/external/chromium_org/components/dom_distiller/core/javascript/ |
dom_distiller_viewer.js | 17 // Maps JS Font Family to CSS class and then changes body class name. 28 // Relies on the classname order of the body being Theme class, then Font 30 var themeClass = document.body.className.split(" ")[0]; 31 document.body.className = themeClass + " " + cssClass; 34 // Maps JS theme to CSS class and then changes body class name. 45 // Relies on the classname order of the body being Theme class, then Font 47 var fontFamilyClass = document.body.className.split(" ")[1]; 48 document.body.className = cssClass + " " + fontFamilyClass; 74 document.body.appendChild(img);
|
/external/chromium_org/chrome/browser/resources/ntp4/ |
incognito_and_guest_tab.css | 12 body { 54 body { 60 body {
|
/external/chromium_org/third_party/angle/src/compiler/translator/ |
InitializeVariables.cpp | 56 TIntermAggregate *body = NULL; local 59 body = new TIntermAggregate(EOpSequence); 60 sequence->push_back(body); 64 body = (*sequence)[1]->getAsAggregate(); 66 ASSERT(body); 67 insertInitCode(body->getSequence());
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/ |
RecordedRequest.java | 33 private final byte[] body; field in class:RecordedRequest 38 long bodySize, byte[] body, int sequenceNumber, Socket socket) { 43 this.body = body; 106 * Returns the sizes of the chunks of this request's body, or an empty list 107 * if the request's body was empty or unchunked. 114 * Returns the total size of the body of this POST request (before 121 /** Returns the body of this POST request. This may be truncated. */ 123 return body; 126 /** Returns the body of this POST request decoded as a UTF-8 string. * [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/ |
Response.cpp | 49 Response* Response::create(ExecutionContext* context, Blob* body, const Dictionary& responseInit, ExceptionState& exceptionState) 51 return create(context, body, ResponseInit(responseInit), exceptionState); 54 Response* Response::create(ExecutionContext* context, const String& body, const Dictionary& responseInit, ExceptionState& exceptionState) 57 blobData->appendText(body, false); 65 Response* Response::create(ExecutionContext* context, const ArrayBuffer* body, const Dictionary& responseInit, ExceptionState& exceptionState) 68 blobData->appendArrayBuffer(body); 74 Response* Response::create(ExecutionContext* context, const ArrayBufferView* body, const Dictionary& responseInit, ExceptionState& exceptionState) 77 blobData->appendArrayBufferView(body); 83 Response* Response::create(ExecutionContext* context, Blob* body, const ResponseInit& responseInit, ExceptionState& exceptionState) 96 // Headers object, and Body object. [all...] |
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
UtilNodes.py | 88 # body StatNode 90 child_attrs = ["body"] 96 self.body.generate_execution_code(code) 106 self.body.analyse_declarations(env) 109 self.body = self.body.analyse_expressions(env) 113 self.body.generate_function_definitions(env, code) 116 self.body.annotate(code) 298 child_attrs = ['temp_expression', 'body'] 300 def __init__(self, lazy_temp, body) [all...] |
/external/chromium_org/ppapi/generators/ |
idl_thunk.py | 35 """Metadata about thunk body. Used for selecting which headers to emit.""" 196 """Returns the body of a Create() function. 204 body = 'Resource* object =\n' 205 body += ' PpapiGlobals::Get()->GetResourceTracker()->' 206 body += 'GetResource(%s);\n' % args[0][1] 207 body += 'if (!object)\n' 208 body += ' return 0;\n' 209 body += 'EnterResourceCreation enter(object->pp_instance());\n' 211 body = 'EnterResourceCreation enter(%s);\n' % args[0][1] 215 body += 'if (enter.failed())\n [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/ |
style.css | 8 body {
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/processes/show_tabs/ |
popup.css | 7 body {
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/webNavigation/basic/ |
popup.css | 8 body { 21 body > section { 34 body > section > ol { 40 body > section > ol > li {
|
/external/chromium_org/content/browser/resources/accessibility/ |
accessibility.css | 7 body {
|
/external/chromium_org/content/shell/renderer/ |
shell_render_view_observer.cc | 53 void ShellRenderViewObserver::OnEchoPong(int id, const std::string& body) { 54 ipc_echo_->DidRespondEcho(id, body.size());
|
shell_render_view_observer.h | 29 void OnEchoPong(int id, const std::string& body);
|
/external/chromium_org/net/server/ |
http_server_response_info_unittest.cc | 24 TEST(HttpServerResponseInfoTest, Body) { 26 ASSERT_EQ(std::string(), response.body()); 27 response.SetBody("body", "type"); 28 ASSERT_EQ("body", response.body());
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/ |
ie.css | 11 body { text-align: center; }
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
FrameSelectionTest.cpp | 50 m_document->body()->appendChild(m_textNode.get()); 81 RefPtrWillBeRawPtr<Element> body = documentWithoutFrame->createElement(HTMLNames::bodyTag, false); local 82 documentWithoutFrame->appendChild(body); 84 body->appendChild(anotherText); 106 document().body()->removeChild(textNode()); 118 document().body()->setContentEditable("true", ASSERT_NO_EXCEPTION); 119 document().body()->focus(); 120 EXPECT_TRUE(document().body()->focused());
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/ |
download.php | 36 <body bgcolor="#FFFFFF" text="#000000">
53 </body>
|
/external/flac/libFLAC/ |
ogg_helper.c | 81 page->body = 0; 89 if(page->body) 90 free(page->body); 103 FLAC__ASSERT(page->body == 0); 157 /* allocate space for the page body */ 158 if(0 == (page->body = (unsigned char *)safe_malloc_(page->body_len))) { 163 /* read in the page body */ 164 if(!full_read_(encoder, page->body, page->body_len, read_callback, client_data)) 184 FLAC__ASSERT(page->body != 0); 203 if(write_callback((FLAC__StreamEncoder*)encoder, page->body, page->body_len, 0, 0, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK) [all...] |
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
NoteEdit.java | 39 mBodyText = (EditText) findViewById(R.id.body); 47 String body = extras.getString(NotesDbAdapter.KEY_BODY); local 53 if (body != null) { 54 mBodyText.setText(body);
|
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
NoteEdit.java | 39 mBodyText = (EditText) findViewById(R.id.body); 47 String body = extras.getString(NotesDbAdapter.KEY_BODY); local 53 if (body != null) { 54 mBodyText.setText(body);
|
/external/chromium_org/chrome/browser/chromeos/ui/ |
accessibility_focus_ring.h | 28 // rectangles defining a top line, a body, and a bottom line, which are 86 const gfx::Rect& body,
|
/external/chromium_org/chrome/browser/notifications/ |
notification.cc | 10 const base::string16& body, 18 body, 33 const base::string16& body, 44 body,
|
/external/chromium_org/components/proximity_auth/ |
wire_message.cc | 14 // [ message version ] [ body length ] [ JSON body ] 15 // 1 byte 2 bytes body length 16 // The JSON body contains two fields: an optional permit_id field and a required 89 base::DictionaryValue* body; local 90 bool success = body_value->GetAsDictionary(&body); 96 body->GetString(kPermitIdKey, &permit_id); 99 if (!body->GetString(kPayloadKey, &payload_base64) ||
|
/external/chromium_org/content/browser/frame_host/ |
navigation_request.h | 30 // NavigationRequest. After calling this function, |body| can no longer be 32 void BeginNavigation(scoped_refptr<ResourceRequestBody> body);
|
/external/chromium_org/content/common/ |
desktop_notification_messages.h | 17 IPC_STRUCT_TRAITS_MEMBER(body)
|