/dalvik/libcore/luni/src/main/java/java/io/ |
CharArrayWriter.java | 125 * Returns the contents of the receiver as a char array. The array returned 129 * @return this CharArrayWriter's contents as a new char array. 140 * Returns the contents of this {@code CharArrayWriter} as a string. The 144 * @return this CharArrayWriters contents as a new string. 247 * Writes the contents of this {@code CharArrayWriter} to another {@code 252 * the non-null {@code Writer} on which to write the contents. 256 * if an error occurs attempting to write out the contents.
|
PrintWriter.java | 47 * Indicates whether or not this PrintWriter should flush its contents after 58 * contents to the target stream when a newline is encountered. 72 * automatically flushes its contents to the target stream when a newline is 78 * indicates whether contents are flushed upon encountering a 90 * contents to the target writer when a newline is encountered. 104 * automatically flushes its contents to the target writer when a newline is 110 * indicates whether to flush contents upon encountering a 124 * The print writer does not automatically flush its contents to the target 128 * the target file. If the file already exists, its contents are 148 * The print writer does not automatically flush its contents to the targe [all...] |
/dalvik/libcore/luni/src/main/java/java/util/ |
AbstractCollection.java | 46 * to the contents of this {@code Collection} (optional). This implementation 197 * @return an iterator for accessing the {@code Collection} contents. 350 public <T> T[] toArray(T[] contents) { 352 if (size > contents.length) { 353 Class<?> ct = contents.getClass().getComponentType(); 354 contents = (T[]) Array.newInstance(ct, size); 357 contents[index++] = (T) entry; 359 if (index < contents.length) { 360 contents[index] = null; 362 return contents; [all...] |
/external/openssl/crypto/pkcs7/ |
pk7_lib.c | 77 if (ret && PKCS7_type_is_data(p7->d.sign->contents)) 80 os=p7->d.sign->contents->d.data; 82 p7->d.sign->contents->d.data = NULL; 94 if(!p7->d.sign || !p7->d.sign->contents->d.ptr) 136 if (p7->d.sign->contents != NULL) 137 PKCS7_free(p7->d.sign->contents); 138 p7->d.sign->contents=p7_data; 141 if (p7->d.digest->contents != NULL) 142 PKCS7_free(p7->d.digest->contents); 143 p7->d.digest->contents=p7_data [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
TouchPaint.java | 42 /** Used as a pulse to gradually fade the contents of the window. */ 50 /** How often to fade the contents of the window (in ms). */ 68 // the contents of the bitmap. 104 // to run pulse to fade the contents. 113 // we do not currently save the contents of the display.
|
/external/icu4c/tools/toolutil/ |
xmlparser.h | 34 /** Node type string (text contents), stored as a UnicodeString. */ 60 * Get the text contents of the element. 61 * Append the contents of all text child nodes. 62 * @param recurse If TRUE, also recursively appends the contents of all 64 * @return The text contents.
|
/external/v8/tools/ |
presubmit.py | 252 def ProcessContents(self, name, contents): 256 if '\t' in contents: 260 if not COPYRIGHT_HEADER_PATTERN.search(contents): 270 contents = handle.read() 271 success = self.ProcessContents(file, contents) and success
|
/frameworks/base/core/java/com/android/internal/backup/ |
LocalTransport.java | 140 // Deletes the contents but not the given directory 142 File[] contents = dirname.listFiles(); local 143 if (contents != null) { 144 for (File f : contents) { 146 // delete the directory's contents then fall through
|
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
error_reporting.sgml | 43 gchar **contents, 50 gchar *contents; 52 g_file_get_contents ("foo.txt", &contents, NULL, &err); 53 g_assert ((contents == NULL && err != NULL) || (contents != NULL && err == NULL)); 57 g_assert (contents == NULL); 63 /* Use file contents */ 64 g_assert (contents != NULL); 78 if (g_file_get_contents ("foo.txt", &contents, NULL, NULL)) /* ignore errors */
|
/external/bluetooth/glib/gobject/ |
gboxed.c | 546 * Get the contents of a %G_TYPE_BOXED derived #GValue. 548 * Returns: boxed contents of @value 563 * Get the contents of a %G_TYPE_BOXED derived #GValue. Upon getting, 568 * Returns: boxed contents of @value 604 /* we proxy this type, free contents and copy right away */ 612 /* we don't handle this type, free contents and let g_boxed_copy() 627 * Set the contents of a %G_TYPE_BOXED derived #GValue to @v_boxed. 644 * Set the contents of a %G_TYPE_BOXED derived #GValue to @v_boxed. 679 * Sets the contents of a %G_TYPE_BOXED derived #GValue to @v_boxed
|
/external/clearsilver/java-jni/ |
HDF.java | 59 /** Loads the contents of the specified HDF file from disk into the current 60 * HDF object. The loaded contents are merged with the existing contents. 106 /** Serializes HDF contents to a file (readable by readFile) 115 /** Serializes HDF contents to a file (readable by readFile), but 126 /** Parses/loads the contents of the given string as HDF into the current 127 * HDF object. The loaded contents are merged with the existing contents. 136 /** Serializes HDF contents to a string (readable by readString)
|
/external/guava/src/com/google/common/collect/ |
ImmutableList.java | 361 * Serializes ImmutableLists as their logical contents. This ensures that 409 private final ArrayList<E> contents = Lists.newArrayList(); field in class:ImmutableList.Builder 425 contents.add(checkNotNull(element)); 440 contents.ensureCapacity(contents.size() + collection.size()); 456 contents.ensureCapacity(contents.size() + elements.length); 475 * Returns a newly-created {@code ImmutableList} based on the contents of 479 return copyOf(contents);
|
ImmutableSet.java | 420 * captures their "logical contents" and they are reconstructed using public 465 final ArrayList<E> contents = Lists.newArrayList(); field in class:Builder 483 contents.add(checkNotNull(element)); 498 contents.ensureCapacity(contents.size() + elements.length); 515 contents.ensureCapacity(contents.size() + collection.size()); 536 * Returns a newly-created {@code ImmutableSet} based on the contents of 540 return copyOf(contents);
|
/external/jdiff/src/jdiff/ |
API.java | 65 // Methods to display the contents of an API object. 71 /** Display the contents of the API object. */ 81 * Display the contents of a PackageAPI object. 101 * Display the contents of a ClassAPI object. 155 * Display the contents of the Modifiers object. 173 * Display the contents of a constructor. 193 * Display the contents of a MethodAPI object. 233 * Display the contents of a field. 259 * Display the contents of a parameter.
|
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/ |
ReaderTest.java | 333 private char[] contents; field in class:ReaderTest.MockReader 344 contents = data; 345 length = contents.length; 351 contents = null; 357 if (null == contents) { 369 buf[offset + i] = contents[current_offset + i];
|
/dalvik/vm/hprof/ |
HprofHeap.c | 24 /* Set DUMP_PRIM_DATA to 1 if you want to include the contents 381 (const hprof_object_id *)aobj->contents, length); 406 hprofAddU1ListToRecord(rec, (const u1 *)aobj->contents, 409 hprofAddU2ListToRecord(rec, (const u2 *)aobj->contents, 412 hprofAddU4ListToRecord(rec, (const u4 *)aobj->contents, 415 hprofAddU8ListToRecord(rec, (const u8 *)aobj->contents,
|
/external/webkit/WebKitTools/Scripts/webkitpy/ |
BeautifulSoup.py | 126 if self.parent and self.parent.contents: 127 self.previousSibling = self.parent.contents[-1] 132 myIndex = self.parent.contents.index(self) 135 index = self.parent.contents.index(replaceWith) 148 self.parent.contents.remove(self) 176 while hasattr(lastChild, 'contents') and lastChild.contents: 177 lastChild = lastChild.contents[-1] 186 position = min(position, len(self.contents)) 206 previousChild = self.contents[position-1 [all...] |
/dalvik/libcore/archive/src/main/java/java/util/zip/ |
Adler32.java | 59 * Update this {@code Adler32} checksum using the contents of {@code buf}. 69 * Update this {@code Adler32} checksum with the contents of {@code buf},
|
/dalvik/libcore/xml/src/test/java/tests/xml/ |
DeclarationTest.java | 61 private String stringToSystemId(String contents) throws IOException { 65 out.write(contents.getBytes("UTF-8"));
|
/dalvik/vm/ |
ReferenceTable.h | 58 * Clears out the contents of a ReferenceTable, freeing allocated storage. 113 * Dump the contents of a reference table to the log file.
|
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_STRING_COMPARETO.S | 49 add r2, #16-2 @ offset to contents[-1] 50 add r1, #16-2 @ offset to contents[-1]
|
/dalvik/vm/mterp/ |
NOTES.txt | 25 things, but they matter when considering the contents of Dalvik's virtual 29 * Do not modify the contents of a virtual register before executing
|
/external/dbus/tools/ |
dbus-send.1 | 12 [\-\-type=TYPE] <destination object path> <message name> [contents ...] 35 specified. Following arguments, if any, are the message contents
|
/external/guava/src/com/google/common/io/ |
LineBuffer.java | 34 /** Holds partial line contents. */ 41 * is found the contents of the line and the line separator itself
|
/external/icu4c/common/ |
ucmndata.c | 16 * contents for locating the individual items by name. 18 * Two formats for the table of contents are supported, which is 63 * Pointer TOCs. TODO: This form of table-of-contents should be removed * 111 /* perform a binary search for the data in the common data's table of contents */ 113 /* list the contents of the TOC each time .. not recommended */ 120 limit=toc->count; /* number of names in this table of contents */ 180 /* list the contents of the TOC each time .. not recommended */ 186 /* perform a binary search for the data in the common data's table of contents */
|