/external/openssl/crypto/aes/asm/ |
aesni-sha1-x86_64.pl | 254 my $body = shift; 255 my @insns = (&$body,&$body,&$body,&$body); # 40 instructions 335 my $body = shift; 336 my @insns = (&$body,&$body,&$body,&$body); # 32 to 48 instruction [all...] |
/external/openssl/crypto/sha/asm/ |
sha1-586.pl | 527 my $body = shift; 528 my @insns = (&$body,&$body,&$body,&$body); # 40 instructions 611 my $body = shift; 612 my @insns = (&$body,&$body,&$body,&$body); # 32 to 48 instruction [all...] |
sha1-x86_64.pl | 372 my $body = shift; 373 my @insns = (&$body,&$body,&$body,&$body); # 40 instructions 453 my $body = shift; 454 my @insns = (&$body,&$body,&$body,&$body); # 32 to 48 instruction [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/ |
irc.js | 72 sendCommand(commands.PONG, [], parsed.body); 78 if (parsed.body.charCodeAt(0) == 1) { 84 parsed.body); 97 that.onConnect(parsed.body); 143 parsed.body = ""; 162 // If there is still a ':', then the message has trailing body. 165 parsed.body = message.substring(bodyMarker + 1);
|
/external/chromium_org/content/browser/loader/ |
upload_data_stream_builder.cc | 92 ResourceRequestBody* body, 98 for (size_t i = 0; i < body->elements()->size(); ++i) { 99 const ResourceRequestBody::Element& element = (*body->elements())[i]; 111 element_readers.push_back(new BytesElementReader(body, element)); 115 new FileElementReader(body, file_task_runner, element)); 137 new net::UploadDataStream(element_readers.Pass(), body->identifier()));
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
TreeScopeTest.cpp | 54 RefPtrWillBeRawPtr<Element> body = document->createElement("body", nullAtom, ASSERT_NO_EXCEPTION); local 55 html->appendChild(body); 58 RefPtrWillBeRawPtr<ShadowRoot> shadowRootB = body->createShadowRoot(ASSERT_NO_EXCEPTION); 77 RefPtrWillBeRawPtr<Element> body = document->createElement("body", nullAtom, ASSERT_NO_EXCEPTION); local 78 html->appendChild(body); 81 RefPtrWillBeRawPtr<ShadowRoot> shadowRootB = body->createShadowRoot(ASSERT_NO_EXCEPTION);
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
PluginDocument.cpp | 98 RefPtrWillBeRawPtr<HTMLBodyElement> body = HTMLBodyElement::create(*document()); local 99 body->setAttribute(marginwidthAttr, "0"); 100 body->setAttribute(marginheightAttr, "0"); 101 body->setAttribute(styleAttr, "background-color: rgb(38,38,38)"); 102 rootElement->appendChild(body); 110 body->appendChild(m_embedElement);
|
/external/chromium_org/third_party/WebKit/Source/web/tests/data/ |
touch-action-tests.js | 8 document.body.innerHTML = 'ERROR: Shadow DOM not supported!'; 15 document.body.innerHTML = 'ERROR: make-shadow-dom node must follow a shadow-host node'; 35 document.body.appendChild(marker);
|
/external/mockwebserver/src/main/java/com/google/mockwebserver/ |
RecordedRequest.java | 40 private final byte[] body; field in class:RecordedRequest 50 int bodySize, byte[] body, int sequenceNumber, Socket socket) { 55 this.body = body; 143 * Returns the sizes of the chunks of this request's body, or an empty list 144 * if the request's body was empty or unchunked. 151 * Returns the total size of the body of this POST request (before 159 * Returns the body of this POST request. This may be truncated. 162 return body; 166 * Returns the body of this POST request decoded as a UTF-8 string [all...] |
/external/chromium_org/ppapi/examples/file_chooser/ |
file_chooser.cc | 66 pp::VarPrivate body = doc.GetProperty("body"); local 68 body.Call("removeChild", console_); 73 body.Call("appendChild", console_);
|
/external/chromium_org/third_party/WebKit/Source/modules/notifications/ |
Notification.h | 74 String body() const { return m_body; } function in class:blink::Notification 106 void setBody(const String& body) { m_body = body; }
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/tgsi/ |
compiler.cpp | 92 const char *body = source.find("COMP\n"); local 95 read_header({ source.begin(), body }, m); 96 read_body(body, m);
|
/external/chromium_org/tools/python/google/ |
gethash_timer.py | 44 body = '4:4\n' + prefix 47 h.putheader('content-length', str(len(body))) 49 h.send(body)
|
/external/chromium_org/v8/test/cctest/compiler/ |
test-codegen-deopt.cc | 167 ZoneList<Statement*>* body = info.function()->body(); local 168 for (int i = 0; i < body->length(); i++) { 169 if (body->at(i)->IsExpressionStatement() && 170 body->at(i)->AsExpressionStatement()->expression()->IsCall()) { 171 return body->at(i)->AsExpressionStatement()->expression()->id(); 277 ZoneList<Statement*>* body = info.function()->body(); local 278 for (int i = 0; i < body->length(); i++) { 279 if (body->at(i)->IsExpressionStatement() & [all...] |
/external/mesa3d/src/gallium/state_trackers/clover/tgsi/ |
compiler.cpp | 92 const char *body = source.find("COMP\n"); local 95 read_header({ source.begin(), body }, m); 96 read_body(body, m);
|
/cts/tests/tests/sax/src/android/sax/cts/ |
ElementTest.java | 76 public void end(String body) { 77 assertEquals(NAMES[mNameIndex], body); 111 public void end(String body) { 112 assertEquals(JIM, body);
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/ |
main.css | 17 html,body { 21 body {
|
/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/ |
NotesDbAdapter.java | 40 public static final String KEY_BODY = "body"; 52 + "title text not null, body text not null);"; 112 * Create a new note using the title and body provided. If the note is 117 * @param body the body of the note 120 public long createNote(String title, String body) { 123 initialValues.put(KEY_BODY, body); 173 * specified using the rowId, and it is altered to use the title and body 178 * @param body value to set note body t [all...] |
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/ |
NotesDbAdapter.java | 40 public static final String KEY_BODY = "body"; 52 + "title text not null, body text not null);"; 112 * Create a new note using the title and body provided. If the note is 117 * @param body the body of the note 120 public long createNote(String title, String body) { 123 initialValues.put(KEY_BODY, body); 173 * specified using the rowId, and it is altered to use the title and body 178 * @param body value to set note body t [all...] |
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/ |
NotesDbAdapter.java | 40 public static final String KEY_BODY = "body"; 52 + "title text not null, body text not null);"; 112 * Create a new note using the title and body provided. If the note is 117 * @param body the body of the note 120 public long createNote(String title, String body) { 123 initialValues.put(KEY_BODY, body); 173 * specified using the rowId, and it is altered to use the title and body 178 * @param body value to set note body t [all...] |
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
NotesDbAdapter.java | 40 public static final String KEY_BODY = "body"; 52 + "title text not null, body text not null);"; 112 * Create a new note using the title and body provided. If the note is 117 * @param body the body of the note 120 public long createNote(String title, String body) { 123 initialValues.put(KEY_BODY, body); 173 * specified using the rowId, and it is altered to use the title and body 178 * @param body value to set note body t [all...] |
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
NotesDbAdapter.java | 40 public static final String KEY_BODY = "body"; 52 + "title text not null, body text not null);"; 112 * Create a new note using the title and body provided. If the note is 117 * @param body the body of the note 120 public long createNote(String title, String body) { 123 initialValues.put(KEY_BODY, body); 173 * specified using the rowId, and it is altered to use the title and body 178 * @param body value to set note body t [all...] |
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/ |
NoteEdit.java | 43 mBodyText = (EditText) findViewById(R.id.body); 99 String body = mBodyText.getText().toString(); local 102 long id = mDbHelper.createNote(title, body); 107 mDbHelper.updateNote(mRowId, title, body);
|
NotesDbAdapter.java | 40 public static final String KEY_BODY = "body"; 52 + "title text not null, body text not null);"; 112 * Create a new note using the title and body provided. If the note is 117 * @param body the body of the note 120 public long createNote(String title, String body) { 123 initialValues.put(KEY_BODY, body); 173 * specified using the rowId, and it is altered to use the title and body 178 * @param body value to set note body t [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/first_run/ |
first_run.css | 12 body { 17 body {
|