OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Readable
(Results
1 - 10
of
10
) sorted by null
/external/guava/guava/src/com/google/common/io/
CharStreams.java
44
* {@code
Readable
& Closeable}. A {@link java.io.Reader} implements both of
138
* Opens {@link
Readable
} and {@link Appendable} objects from the
147
public static <R extends
Readable
& Closeable,
168
* Opens a {@link
Readable
} object from the supplier, copies all characters
177
public static <R extends
Readable
& Closeable> long copy(
191
* Copies all characters between the {@link
Readable
} and {@link Appendable}
199
public static long copy(
Readable
from, Appendable to) throws IOException {
215
* Reads all characters from a {@link
Readable
} object into a {@link String}.
216
* Does not close the {@code
Readable
}.
222
public static String toString(
Readable
r) throws IOException
[
all
...]
LineReader.java
30
* as {@link java.io.BufferedReader#readLine()} but for all {@link
Readable
}
38
private final
Readable
readable
;
field in class:LineReader
52
* {@code
Readable
} object.
54
public LineReader(
Readable
readable
) {
55
Preconditions.checkNotNull(
readable
);
56
this.
readable
=
readable
;
57
this.reader = (
readable
instanceof Reader) ? (Reader) readable : null
[
all
...]
Files.java
289
* Copies to a file all characters from a {@link
Readable
} and
293
* @param from the
readable
supplier
298
public static <R extends
Readable
& Closeable> void copy(
/external/chromium_org/third_party/WebKit/Source/core/streams/
ReadableStream.cpp
38
case
Readable
:
39
return "
readable
";
68
m_state =
Readable
;
81
} else if (m_state ==
Readable
) {
104
ASSERT(m_state ==
Readable
);
140
ASSERT(m_state ==
Readable
);
158
if (m_state ==
Readable
) {
163
if (m_state == Waiting || m_state ==
Readable
) {
ReadableStream.h
30
Readable
,
ReadableStreamTest.cpp
264
EXPECT_EQ(ReadableStream::
Readable
, stream->state());
267
EXPECT_EQ(ReadableStream::
Readable
, stream->state());
273
EXPECT_EQ(ReadableStream::
Readable
, stream->state());
300
EXPECT_EQ(ReadableStream::
Readable
, stream->state());
332
EXPECT_EQ(ReadableStream::
Readable
, stream->state());
456
EXPECT_EQ(ReadableStream::
Readable
, stream->state());
491
EXPECT_EQ(ReadableStream::
Readable
, stream->state());
500
EXPECT_EQ(ReadableStream::
Readable
, stream->state());
521
EXPECT_EQ(ReadableStream::
Readable
, stream->state());
532
EXPECT_EQ(ReadableStream::
Readable
, stream->state())
[
all
...]
ReadableStreamImpl.h
104
ASSERT(state() ==
Readable
);
/external/guava/guava-tests/test/com/google/common/io/
LineBufferTest.java
115
Readable
readable
= asReader
local
118
LineReader r = new LineReader(
readable
);
127
// Returns a
Readable
that is *not* a Reader.
128
private static
Readable
getChunkedReadable(String input, int chunk) {
130
return new
Readable
() {
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
key_util.js
232
* Get
readable
string description of the specified keycode.
347
* Get
readable
string description for an internal string representation of a
352
* @return {?string}
Readable
string representation of the input.
367
*
readable
string description like 'Right Arrow' instead of '#39'.
377
* @param {boolean=} opt_readableKeyCode Whether or not to return a
readable
382
* @return {string}
Readable
string representation of the KeySequence object.
/external/chromium_org/third_party/libaddressinput/src/java/
android.jar
Completed in 625 milliseconds