Searched defs:readable (Results 1 - 19 of 19) sorted by relevance

/external/guava/guava/src/com/google/common/io/
H A DCharSink.java158 * Does not close {@code readable} if it is {@code Closeable}.
160 * @throws IOException if an I/O error occurs in the process of reading from {@code readable} or
163 public long writeFrom(Readable readable) throws IOException { argument
164 checkNotNull(readable);
169 long written = CharStreams.copy(readable, out);
H A DLineReader.java39 private final Readable readable; field in class:LineReader
55 public LineReader(Readable readable) { argument
56 this.readable = checkNotNull(readable);
57 this.reader = (readable instanceof Reader) ? (Reader) readable : null;
78 : readable.read(cbuf);
H A DCharStreams.java314 * produced by the processor. Does not close {@code readable}. Note that this
315 * method may not fully consume the contents of {@code readable} if the
322 Readable readable, LineProcessor<T> processor) throws IOException {
323 checkNotNull(readable);
326 LineReader lineReader = new LineReader(readable);
523 static Reader asReader(final Readable readable) { argument
524 checkNotNull(readable);
525 if (readable instanceof Reader) {
526 return (Reader) readable;
536 return readable
321 readLines( Readable readable, LineProcessor<T> processor) argument
[all...]
/external/chromium-trace/trace-viewer/perf_insights/third_party/cloudstorage/
H A Dstorage_api.py543 def readable(self): member in class:ReadBuffer
883 def readable(self): member in class:StreamingBuffer
/external/ppp/pppd/plugins/rp-pppoe/
H A Ddiscovery.c347 fd_set readable; local
375 FD_ZERO(&readable);
376 FD_SET(conn->discoverySocket, &readable);
379 r = select(conn->discoverySocket+1, &readable, NULL, NULL, &tv);
540 fd_set readable; local
560 FD_ZERO(&readable);
561 FD_SET(conn->discoverySocket, &readable);
564 r = select(conn->discoverySocket+1, &readable, NULL, NULL, &tv);
H A Dpppoe-discovery.c511 fd_set readable; local
530 FD_ZERO(&readable);
531 FD_SET(conn->discoverySocket, &readable);
534 r = select(conn->discoverySocket+1, &readable, NULL, NULL, &tv);
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_common.c76 __DRIdrawable *const readable = radeon_get_readable(radeon); local
78 if(drawable == NULL && readable == NULL)
82 struct radeon_framebuffer *const read_rfb = readable->driverPrivate;
91 if (drawable != readable) {
92 if ((read_rfb->base.Width != readable->w) ||
93 (read_rfb->base.Height != readable->h)) {
95 readable->w, readable->h);
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_common.c76 __DRIdrawable *const readable = radeon_get_readable(radeon); local
78 if(drawable == NULL && readable == NULL)
82 struct radeon_framebuffer *const read_rfb = readable->driverPrivate;
91 if (drawable != readable) {
92 if ((read_rfb->base.Width != readable->w) ||
93 (read_rfb->base.Height != readable->h)) {
95 readable->w, readable->h);
/external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
H A DDiskLruCache.java308 entry.readable = true;
403 * exist is not currently readable. If a value is returned, it is moved to
413 if (!entry.readable) {
508 if (success && !entry.readable) {
539 if (entry.readable | success) {
540 entry.readable = true;
712 this.written = (entry.readable) ? null : new boolean[valueCount];
724 if (!entry.readable) {
749 if (!entry.readable) {
814 private boolean readable; field in class:DiskLruCache.Entry
[all...]
/external/mesa3d/src/glx/
H A Ddrisw_glx.c217 Drawable readable; local
220 readable = pread->xDrawable;
228 XGetSubImage(dpy, readable, x, y, w, h, ~0L, ZPixmap, ximage, 0, 0);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DDiskLruCache.java339 entry.readable = true;
419 * exist is not currently readable. If a value is returned, it is moved to
428 if (entry == null || !entry.readable) return null;
522 if (success && !entry.readable) {
553 if (entry.readable | success) {
554 entry.readable = true;
835 this.written = (entry.readable) ? null : new boolean[valueCount];
847 if (!entry.readable) {
870 if (!entry.readable) {
937 private boolean readable; field in class:DiskLruCache.Entry
[all...]
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
H A Drequest.py1535 def readable(): member in class:LimitedLengthFile
1590 def readable(): member in class:FakeCGIBody
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.debug.core_3.6.0.v20100519.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/vogar/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/annotations/ ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 520 milliseconds