/external/smack/src/org/jivesoftware/smack/packet/ |
Message.java | 45 * <tr><td><i>body</i></td> <td>SHOULD</td><td>SHOULD</td><td>SHOULD</td><td>SHOULD</td><td>SHOULD NOT</td></tr> 58 private final Set<Body> bodies = new HashSet<Body>(); 228 * Returns the default body of the message, or null if the body has not been set. The body 231 * The default body of a message is the body that corresponds to the message's language. 235 * @return the body of the message. 242 * Returns the body corresponding to the language. If the language is null, the method resul 251 Body body = getMessageBody(language); local [all...] |
/external/chromium_org/net/tools/quic/ |
end_to_end_test.cc | 61 void GenerateBody(string* body, int length) { 62 body->clear(); 63 body->reserve(length); 65 body->append(1, static_cast<char>(32 + i % (126 - 32))); 238 StringPiece body) { 240 method, path, version, response_code, response_detail, body); 388 // Add a content length header with no body. 406 // 1 Mb body. 407 string body; local 408 GenerateBody(&body, 1024 * 1024) 428 string body; local 447 string body; local 469 string body; local 489 string body; local 527 string body; local 548 string body; local 562 string body; local 694 string body; local [all...] |
/external/chromium_org/chrome/browser/notifications/ |
notification.cc | 35 const base::string16& body, 43 body, 56 icon_url, title, body, dir)); 63 const base::string16& body, 74 body, 92 DesktopNotificationService::CreateDataUrl(icon_url_, title, body, dir)); 99 const base::string16& body, 107 body,
|
/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/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/dom/ |
DocumentMarkerControllerTest.cpp | 88 document().body()->setInnerHTML(String::fromUTF8(bodyContent), ASSERT_NO_EXCEPTION); 95 RefPtr<Element> parent = toElement(document().body()->firstChild()->firstChild()); 108 RefPtr<Element> parent = toElement(document().body()->firstChild()->firstChild()); 120 RefPtr<Element> parent = toElement(document().body()->firstChild()->firstChild()); 133 RefPtr<Element> parent = toElement(document().body()->firstChild()->firstChild()); 146 RefPtr<Element> parent = toElement(document().body()->firstChild()->firstChild()); 159 RefPtr<Element> parent = toElement(document().body()->firstChild()->firstChild()); 172 RefPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
|
/external/chromium_org/third_party/WebKit/Source/modules/notifications/ |
WebKitNotification.h | 53 static PassRefPtr<WebKitNotification> create(const String& title, const String& body, const String& iconUrl, ExecutionContext*, ExceptionState&, PassRefPtr<NotificationCenter> provider); 68 WebKitNotification(const String& title, const String& body, const String& iconUrl, ExecutionContext*, ExceptionState&, PassRefPtr<NotificationCenter> provider);
|
/external/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/ |
main_unittest.py | 58 self.assertEqual(response.body, 'Wrote new log entry.') 62 self.assertEqual(response.body, 'Wrote new log entry.') 72 self.assertEqual(response.body, 'Added to existing log entry.') 82 self.assertEqual(response.body, 'Wrote new no needs rebaseline log.') 86 self.assertEqual(response.body, 'Overwrote existing no needs rebaseline log.') 96 self.assertEqual(response.body, 'Previous entry was a no need rebaseline log. Writing a new log.') 107 self.assertEqual(response.body, 'Wrote new log entry.') 118 self.assertEqual(response.body, 'Wrote new log entry.')
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/ |
gardeningserver_unittest.py | 67 self.body = None 73 return self.body if self.body else '' 91 def _post_to_path(self, path, body=None, expected_stderr=None, expected_stdout=None, server=None): 94 handler.body = body 134 self._post_to_path("/rebaselineall", body='{"user-scripts/another-test.html":{"MOCK builder": ["txt","png"]}}', expected_stderr=expected_stderr % ('MOCK builder', '"txt","png"'), expected_stdout=expected_stdout, server=server) 136 self._post_to_path("/rebaselineall", body='{"user-scripts/another-test.html":{"MOCK builder (Debug)": ["txt","png"]}}', expected_stderr=expected_stderr % ('MOCK builder (Debug)', '"txt","png"'), expected_stdout=expected_stdout)
|
/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...] |
/packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/ |
TextBody.java | 19 import com.android.emailcommon.mail.Body; 30 public class TextBody implements Body { 33 public TextBody(String body) { 34 this.mBody = body; 44 * Get the text of the body in it's unencoded format. 52 * Returns an InputStream that reads this body's text in UTF-8 format.
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/ |
DelegatingFieldParser.java | 43 public Field parse(final String name, final String body, final String raw) {
45 return parser.parse(name, body, raw);
|
/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);
|
/frameworks/base/obex/javax/obex/ |
PrivateInputStream.java | 142 * Allows the <code>OperationImpl</code> thread to add body data to the 144 * @param body the data to add to the stream 145 * @param start the start of the body to array to copy 147 public synchronized void writeBytes(byte[] body, int start) { 149 int length = (body.length - start) + (mData.length - mIndex); 153 System.arraycopy(body, start, temp, mData.length - mIndex, body.length - start);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/ |
ExportPropertiesPage.java | 65 Composite body = form.getBody(); local 68 body.setLayout(new ColumnLayout()); 70 mFieldsPart = new ExportFieldsPart(body, toolkit, mEditor); 74 mLinksPart = new ExportLinksPart(body, toolkit, mEditor);
|
/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/chrome/common/extensions/docs/examples/extensions/fx/ |
content.js | 48 if ((window == window.top) && document.body && !document.body.onresize) { 49 document.body.onresize = function(event) {
|
/external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/ |
TestFileUtil.java | 22 public static void createNewHtmlFile(String name, String title, String body) 34 "<body>" + 35 (body != null ? body : "") + 36 "</body>" +
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/ |
content.js | 48 if ((window == window.top) && document.body && !document.body.onresize) { 49 document.body.onresize = function(event) {
|