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

1 2 3 4 5 6 7 8 91011

  /external/python/cpython3/Lib/
_compression.py 17 if not self.readable():
25 if not self.readable():
36 def readable(self): member in class:DecompressReader
asynchat.py 208 def readable(self): member in class:async_chat
209 "predicate for inclusion in the readable for select()"
bz2.py 149 return self.readable() and self._buffer.seekable()
151 def readable(self): member in class:BZ2File
lzma.py 170 return self.readable() and self._buffer.seekable()
172 def readable(self): member in class:LZMAFile
  /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;
  /bionic/libc/upstream-netbsd/lib/libc/isc/
ev_streams.c 52 static void readable(evContext opaqueCtx, void *uap, int fd, int evmask);
113 if (evSelectFD(opaqueCtx, fd, EV_READ, readable, new, &new->file) < 0)
293 readable(evContext opaqueCtx, void *uap, int fd, int evmask) { function
  /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...]
  /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/tensorflow/tensorflow/core/lib/io/snappy/
snappy_inputbuffer.cc 129 size_t readable = std::min(bytes_to_read, avail_in_); local
131 for (int i = 0; i < readable; i++) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
fileobject.h 43 int readable; member in struct:__anon4222
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
fileobject.h 31 int readable; member in struct:__anon4329
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
fileobject.h 42 int readable; member in struct:__anon4534
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
fileobject.h 43 int readable; member in struct:__anon4636
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
asynchat.py 192 def readable (self): member in class:async_chat
193 "predicate for inclusion in the readable for select()"
gzip.py 397 def readable(self): member in class:GzipFile
  /external/python/cpython2/Include/
fileobject.h 31 int readable; member in struct:__anon32577
  /prebuilts/gdb/darwin-x86/include/python2.7/
fileobject.h 31 int readable; member in struct:__anon66468
  /prebuilts/gdb/darwin-x86/lib/python2.7/
asynchat.py 192 def readable (self): member in class:async_chat
193 "predicate for inclusion in the readable for select()"
  /prebuilts/gdb/linux-x86/include/python2.7/
fileobject.h 31 int readable; member in struct:__anon66590
  /prebuilts/gdb/linux-x86/lib/python2.7/
asynchat.py 192 def readable (self): member in class:async_chat
193 "predicate for inclusion in the readable for select()"
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
fileobject.h 31 int readable; member in struct:__anon983
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asynchat.py 192 def readable (self): member in class:async_chat
193 "predicate for inclusion in the readable for select()"
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
fileobject.h 31 int readable; member in struct:__anon1106
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asynchat.py 192 def readable (self): member in class:async_chat
193 "predicate for inclusion in the readable for select()"
  /external/adhd/cras/src/common/
cras_util.c 223 * readable by gavd.
232 int readable; local
238 readable = access(pathname, R_OK);
247 if (readable == 0 || (readable == -1 && errno == ENOENT)) {
251 if (readable != -1 || errno != EACCES) {

Completed in 1246 milliseconds

1 2 3 4 5 6 7 8 91011