/development/tutorials/NotepadCodeLab/Notepadv3Solution/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...] |
/external/javassist/src/main/javassist/ |
CtNewConstructor.java | 29 * <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</code> must no [all...] |
CtNewWrappedMethod.java | 30 CtMethod body, ConstParameter constParam, 36 mt.setModifiers(body.getModifiers()); 44 Bytecode code = makeBody(declaring, declaring.getClassFile2(), body, 66 /* The generated method body does not need a stack map table 147 MethodInfo body = new MethodInfo(classfile.getConstPool(), local 150 int acc = body.getAccessFlags(); 151 body.setAccessFlags(AccessFlag.setPrivate(acc)); 152 body.addAttribute(new SyntheticAttribute(classfile.getConstPool())); 154 classfile.addMethod(body); 158 cache.addMethod(new CtMethod(body, clazz)) [all...] |
/external/oauth/core/src/main/java/net/oauth/client/ |
URLConnectionClient.java | 36 * they do things like connection pooling. They also support reading the body 85 final InputStream body = request.getBody(); local 86 if (body != null) { 95 final ExcerptInputStream ex = new ExcerptInputStream(body); 105 body.close();
|
/external/webkit/LayoutTests/fast/dom/Selection/script-tests/ |
getRangeAt.js | 4 document.body.appendChild(div); 31 document.body.removeChild(div);
|
/external/webkit/LayoutTests/storage/domstorage/events/resources/ |
eventTestHarness.js | 8 document.body.appendChild(iframe); 9 iframe.contentWindow.document.body.innerText = "Nothing to see here.";
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/ |
cpp.h | 63 TokenStream *body; member in struct:MacroSymbol
|
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/ |
qtwebkit_bridge_snippets.cpp | 47 <body onload="loadImage()"> 49 </body> 77 <body onload="runExample()"> 79 </body>
|
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/ |
AbstractContentHandler.java | 49 * @see org.apache.james.mime4j.ContentHandler#body(org.apache.james.mime4j.BodyDescriptor, java.io.InputStream)
51 public void body(BodyDescriptor bd, InputStream is) throws IOException {
method in class:AbstractContentHandler
|
ContentHandler.java | 32 * basic message-related events like the start and end of the body of a
53 * body()
61 * body()
68 * body containing two body parts.
92 * Called when a new body part starts inside a
98 * Called when a body part ends.
103 * Called when a header (of a message or body part) is about to be parsed.
117 * Called when there are no more header fields in a message or body part.
122 * Called for the preamble (whatever comes before the first body part) 166 void body(BodyDescriptor bd, InputStream is) throws IOException; method in interface:ContentHandler [all...] |
/dalvik/vm/hprof/ |
HprofOutput.cpp | 87 ctx->curRec.body = (unsigned char *)malloc(ctx->curRec.allocLen); 142 nb = fwrite(rec->body, 1, rec->length, fp); 192 newBody = (unsigned char *)realloc(rec->body, newAllocLen); 194 rec->body = newBody; 216 memcpy(rec->body + rec->length, values, numValues); 231 rec->body[rec->length++] = value; 254 unsigned char *insert = rec->body + rec->length; 279 unsigned char *insert = rec->body + rec->length; 304 unsigned char *insert = rec->body + rec->length;
|
/external/webkit/Source/WebCore/dom/ |
XMLDocumentParser.cpp | 301 RefPtr<Element> body = document->createElement(bodyTag, false); local 302 rootElement->appendChild(body, ec); 303 documentElement = body.get(); 308 RefPtr<Element> body = document->createElement(bodyTag, false); local 309 rootElement->appendChild(body, ec); 310 body->appendChild(documentElement, ec); 312 documentElement = body.get(); 318 RefPtr<Element> body = document->createElement(bodyTag, false); local 319 rootElement->appendChild(body, ec); 320 body->appendChild(documentElement, ec) [all...] |
/build/tools/droiddoc/templates-pdk/ |
trailer.cs | 1 </div> <!-- end body-content --> <?cs # normally opened by header.cs ?>
|
/build/tools/droiddoc/templates-sdk/ |
trailer.cs | 1 </div> <!-- end body-content --> <?cs # normally opened by header.cs ?>
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/css/ |
feed.css | 11 body { 93 body.rtl #feed { 96 body.rtl .open_box { 99 body.rtl .item_title {
|
/external/chromium/chrome/common/extensions/docs/examples/howto/contentscript_xhr/ |
contentscript.js | 38 document.body.insertBefore(trends_dom, document.body.firstChild);
|
/external/chromium/net/tools/flip_server/ |
mem_cache.cc | 29 body.append(input, size); 49 : headers(h), body(b) { 61 body = file_data.body; 169 // file, then the rest of the data is the body. Many of the captures 171 if (!visitor.body.length()) 172 visitor.body = filename_contents.substr(pos); 197 LOG(INFO) << "Adding file (" << visitor.body.length() << " bytes): " 201 fd = FileData(headers, visitor.body);
|
/external/chromium/third_party/libjingle/source/talk/examples/call/ |
mucinviterecvtask.cc | 62 const std::string& body(elem->BodyText()); 64 if (body == array[i]) {
|
/external/llvm/test/FrontendC/ |
2007-03-05-DataLayout.c | 7 #define BODY 01 24 } body; variable in typeref:struct:bnode 41 tmp = (bodyptr)malloc(sizeof(body)); 43 Type(tmp) = BODY;
|
/external/mesa3d/docs/ |
mesa.css | 2 body {
|
/external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/ |
event-after-navigation.js | 8 document.body.onload = function() {
|
/external/webkit/LayoutTests/fast/events/touch/resources/ |
touch-stale-node-crash.js | 6 document.body.removeChild(target);
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-169497.js | 59 sBody += '<body onXXX="alert(event.type);">\n'; 62 sBody += '<\/body>'; 70 pattern = /<body.*>((.*\n?)*?)<\/body>/i;
|
/external/webkit/Source/WebCore/notifications/ |
NotificationCenter.h | 64 PassRefPtr<Notification> createNotification(const String& iconURI, const String& title, const String& body, ExceptionCode& ec) 70 NotificationContents contents(iconURI.isEmpty() ? KURL() : scriptExecutionContext()->completeURL(iconURI), title, body);
|
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/webelement/ |
main.cpp | 31 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();
|