HomeSort by relevance Sort by last modified time
    Searched refs:readable (Results 1 - 25 of 237) sorted by null

1 2 3 4 5 6 7 8 910

  /external/guava/guava/src/com/google/common/io/
LineReader.java 31 * as {@link java.io.BufferedReader#readLine()} but for all {@link Readable}
39 private final Readable readable; field in class:LineReader
53 * {@code Readable} object.
55 public LineReader(Readable readable) {
56 this.readable = checkNotNull(readable);
57 this.reader = (readable instanceof Reader) ? (Reader) readable : null
    [all...]
CharStreams.java 39 * {@code Readable & Closeable}. A {@link java.io.Reader} implements both of
55 * Copies all characters between the {@link Readable} and {@link Appendable}
63 public static long copy(Readable from, Appendable to) throws IOException {
78 * Reads all characters from a {@link Readable} object into a {@link String}.
79 * Does not close the {@code Readable}.
85 public static String toString(Readable r) throws IOException {
90 * Reads all characters from a {@link Readable} object into a new
91 * {@link StringBuilder} instance. Does not close the {@code Readable}.
97 private static StringBuilder toStringBuilder(Readable r) throws IOException {
104 * Reads all of the lines from a {@link Readable} object. The lines d
    [all...]
CharSink.java 142 * Writes all the text from the given {@link Readable} (such as a {@link Reader}) to this sink.
143 * Does not close {@code readable} if it is {@code Closeable}.
145 * @throws IOException if an I/O error occurs in the process of reading from {@code readable} or
148 public long writeFrom(Readable readable) throws IOException {
149 checkNotNull(readable);
154 long written = CharStreams.copy(readable, out);
  /system/bt/device/src/
controller.c 74 static bool readable; variable
255 readable = true;
260 readable = false;
279 return readable;
283 assert(readable);
288 assert(readable);
294 assert(readable);
300 assert(readable);
305 assert(readable);
314 assert(readable);
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_ASimpleReader.java 62 int readable = (available < count ? available : count); local
63 System.arraycopy(buf, pos, dest, offset, readable);
64 pos += readable;
65 return readable;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
MethodProperty.java 34 private final boolean readable; field in class:MethodProperty
42 this.readable = property.getReadMethod() != null;
69 return readable;
  /external/webrtc/webrtc/base/
asyncfile.h 26 virtual bool readable() = 0;
  /external/webrtc/webrtc/common_audio/
wav_header.h 55 bool ReadWavHeader(ReadableWav* readable,
wav_header.cc 183 bool ReadWavHeader(ReadableWav* readable,
190 if (readable->Read(&header, kWavHeaderSize - sizeof(header.data)) !=
201 if (readable->Read(&ext_size, sizeof(ext_size)) != sizeof(ext_size))
206 if (readable->Read(&header.data, sizeof(header.data)) != sizeof(header.data))
  /external/valgrind/auxprogs/
nightly-build-summary 73 [--readable] write results in human readable form (default)
438 my ($from, $to, $dump, $readable);
441 $dump = $readable = 0;
448 "readable" => \$readable
463 $readable = 1 if ($dump == 0 && $readable == 0);
473 write_readable_results(%dates) if ($readable);
  /libcore/luni/src/main/java/java/nio/
NioUtils.java 63 boolean readable = (mode & (O_RDONLY | O_RDWR | O_SYNC)) != 0;
66 return FileChannelImpl.open(fd, null, readable, writable, append, ioObject);
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
reduction.py 167 return rebuild_connection, (rh, conn.readable, conn.writable)
169 def rebuild_connection(reduced_handle, readable, writable):
172 handle, readable=readable, writable=writable
207 return rebuild_pipe_connection, (rh, conn.readable, conn.writable)
209 def rebuild_pipe_connection(reduced_handle, readable, writable):
212 handle, readable=readable, writable=writable
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
reduction.py 167 return rebuild_connection, (rh, conn.readable, conn.writable)
169 def rebuild_connection(reduced_handle, readable, writable):
172 handle, readable=readable, writable=writable
207 return rebuild_pipe_connection, (rh, conn.readable, conn.writable)
209 def rebuild_pipe_connection(reduced_handle, readable, writable):
212 handle, readable=readable, writable=writable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
reduction.py 167 return rebuild_connection, (rh, conn.readable, conn.writable)
169 def rebuild_connection(reduced_handle, readable, writable):
172 handle, readable=readable, writable=writable
207 return rebuild_pipe_connection, (rh, conn.readable, conn.writable)
209 def rebuild_pipe_connection(reduced_handle, readable, writable):
212 handle, readable=readable, writable=writable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
reduction.py 167 return rebuild_connection, (rh, conn.readable, conn.writable)
169 def rebuild_connection(reduced_handle, readable, writable):
172 handle, readable=readable, writable=writable
207 return rebuild_pipe_connection, (rh, conn.readable, conn.writable)
209 def rebuild_pipe_connection(reduced_handle, readable, writable):
212 handle, readable=readable, writable=writable
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pprint.py 70 """Determine if saferepr(object) is readable by eval()."""
129 s, readable, recursive = self.format(object, {}, 0, 0)
130 return readable and not recursive
232 repr, readable, recursive = self.format(object, context.copy(),
234 if not readable:
242 and flags indicating whether the representation is 'readable'
281 readable = True
291 readable = readable and kreadable and vreadable
295 return "{%s}" % _commajoin(components), readable, recursiv
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pprint.py 70 """Determine if saferepr(object) is readable by eval()."""
129 s, readable, recursive = self.format(object, {}, 0, 0)
130 return readable and not recursive
232 repr, readable, recursive = self.format(object, context.copy(),
234 if not readable:
242 and flags indicating whether the representation is 'readable'
281 readable = True
291 readable = readable and kreadable and vreadable
295 return "{%s}" % _commajoin(components), readable, recursiv
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pprint.py 70 """Determine if saferepr(object) is readable by eval()."""
129 s, readable, recursive = self.format(object, {}, 0, 0)
130 return readable and not recursive
232 repr, readable, recursive = self.format(object, context.copy(),
234 if not readable:
242 and flags indicating whether the representation is 'readable'
281 readable = True
291 readable = readable and kreadable and vreadable
295 return "{%s}" % _commajoin(components), readable, recursiv
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pprint.py 70 """Determine if saferepr(object) is readable by eval()."""
129 s, readable, recursive = self.format(object, {}, 0, 0)
130 return readable and not recursive
232 repr, readable, recursive = self.format(object, context.copy(),
234 if not readable:
242 and flags indicating whether the representation is 'readable'
281 readable = True
291 readable = readable and kreadable and vreadable
295 return "{%s}" % _commajoin(components), readable, recursiv
    [all...]
  /external/autotest/client/site_tests/security_HardlinkRestrictions/
security_HardlinkRestrictions.py 116 readable = tempfile.NamedTemporaryFile(prefix="readable-")
117 os.chmod(readable.name, 0444)
124 # Verify readable target is only readable.
125 self._is_readable(readable.name, user)
126 self._is_writable(readable.name, user, expected=False)
127 # Verify available target is both readable/writable.
142 self._can_hardlink(readable.name, evil, user, expected=False)
  /build/tools/
dump-package-stats 36 Packages must be zipfiles, readable using "unzip".
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileChannelImpl.java 64 private final boolean readable; field in class:FileChannelImpl
79 private FileChannelImpl(FileDescriptor fd, String path, boolean readable,
83 this.readable = readable;
93 boolean readable, boolean writable,
96 return new FileChannelImpl(fd, path, readable, writable, false, parent);
101 boolean readable, boolean writable,
104 return new FileChannelImpl(fd, path, readable, writable, append, parent);
146 if (!readable)
176 if (!readable)
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
fileobject.h 31 int readable; member in struct:__anon44673
  /prebuilts/gdb/linux-x86/include/python2.7/
fileobject.h 31 int readable; member in struct:__anon44795
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
fileobject.h 31 int readable; member in struct:__anon72911

Completed in 910 milliseconds

1 2 3 4 5 6 7 8 910