/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);
|
/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;
|
/system/bt/device/src/ |
controller.cc | 73 static bool readable; variable 256 readable = true; 261 readable = false; 275 static bool get_is_ready(void) { return readable; } 278 CHECK(readable); 283 CHECK(readable); 289 CHECK(readable); 295 CHECK(readable); 300 CHECK(readable); 309 CHECK(readable); [all...] |
/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,
|
/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
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
pprint.py | 67 """Determine if saferepr(object) is readable by eval()."""
126 s, readable, recursive = self.format(object, {}, 0, 0)
127 return readable and not recursive
229 repr, readable, recursive = self.format(object, context.copy(),
231 if not readable:
239 and flags indicating whether the representation is 'readable'
278 readable = True
288 readable = readable and kreadable and vreadable
292 return "{%s}" % _commajoin(components), readable, recursive [all...] |
/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)
|
/external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/ |
Core.java | 42 public static final HandleSignals READABLE = 48 * Change the readable bit of this signal. 50 * @param readable the new value of the readable bit. 53 public HandleSignals setReadable(boolean readable) { 54 return setFlag(FLAG_READABLE, readable);
|
/build/make/tools/ |
dump-package-stats | 36 Packages must be zipfiles, readable using "unzip".
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/ |
fileobject.h | 43 int readable;
member in struct:__anon5240
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
fileobject.h | 31 int readable;
member in struct:__anon5347
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/ |
fileobject.h | 42 int readable;
member in struct:__anon5552
|