/external/llvm/lib/Bitcode/ |
Makefile | 11 PARALLEL_DIRS = Reader Writer
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
AutoDetector.java | 18 import java.io.Reader; 22 Classes which accept an InputStream and provide a Reader which figures 26 @see java.io.Reader 32 Given an InputStream, return a suitable Reader that understands 38 @return A Reader that reads from the InputStream 41 public Reader autoDetectingReader(InputStream i);
|
Scanner.java | 19 import java.io.Reader; 34 public void scan(Reader r, ScanHandler h) throws IOException, SAXException;
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/ |
TextBody.java | 23 import java.io.Reader;
35 * Gets a <code>Reader</code> which may be used to read out the contents
38 * @return the <code>Reader</code>.
41 Reader getReader() throws IOException;
|
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
ResourceLoader.java | 22 import java.io.Reader; 43 * The caller of this method is guaranteed to call {@link #close(Reader)} when done with the 44 * reader. 47 * @return Reader, or null if not found. 50 Reader open(String name) throws IOException; 55 * The caller of this method is guaranteed to call {@link #close(Reader)} when done with the 56 * reader. 59 * @return Reader, or null if not found. 63 Reader openOrFail(String name) throws JSilverTemplateNotFoundException, IOException; 66 * Close the reader. Allows ResourceLoader to perform any additional clean up [all...] |
BaseResourceLoader.java | 20 import java.io.Reader; 32 public void close(Reader reader) throws IOException { 33 reader.close();
|
BufferedResourceLoader.java | 19 import java.io.Reader; 23 * Base class for ResourceLoader implementations that require the Reader to be buffered (i.e. 37 * Subclasses can wrap a Reader in a BufferedReader by calling this method. 39 protected Reader buffer(Reader reader) { 40 return reader == null ? null : new BufferedReader(reader, bufferSize);
|
CompositeResourceLoader.java | 23 import java.io.Reader; 53 public Reader open(String name) throws IOException { 55 Reader reader = loader.open(name); local 56 if (reader != null) { 57 return new ReaderTracer(reader, loader); 64 public Reader openOrFail(String name) throws JSilverTemplateNotFoundException, IOException { 65 Reader reader = open(name); local 66 if (reader == null) [all...] |
/external/smack/src/org/jivesoftware/smack/debugger/ |
SmackDebugger.java | 32 * arguments: Connection, Writer, Reader. 48 * Returns the special Reader that wraps the main Reader and logs data to the GUI. 50 * @return the special Reader that wraps the main Reader and logs data to the GUI. 52 public abstract Reader getReader(); 62 * Returns a new special Reader that wraps the new connection Reader. The connection 63 * has been secured so the connection is using a new reader and writer. The debugger 64 * needs to wrap the new reader and writer to keep being notified of the connectio [all...] |
/external/marisa-trie/lib/marisa/ |
reader.h | 11 class Reader { 13 Reader(); 14 explicit Reader(std::FILE *file); 15 explicit Reader(int fd); 16 explicit Reader(std::istream *stream); 17 ~Reader(); 42 void swap(Reader *rhs); 53 Reader(const Reader &); 54 Reader &operator=(const Reader &) [all...] |
reader.cc | 10 #include "reader.h" 14 Reader::Reader() 17 Reader::Reader(std::FILE *file) 20 Reader::Reader(int fd) 23 Reader::Reader(std::istream *stream) 26 Reader::~Reader() [all...] |
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
reader.h | 11 class Reader { 13 Reader(); 14 explicit Reader(std::FILE *file); 15 explicit Reader(int fd); 16 explicit Reader(std::istream *stream); 17 ~Reader(); 43 void swap(Reader *rhs); 54 Reader(const Reader &); 55 Reader &operator=(const Reader &) [all...] |
reader.cc | 10 #include "reader.h" 14 Reader::Reader() 17 Reader::Reader(std::FILE *file) 20 Reader::Reader(int fd) 23 Reader::Reader(std::istream *stream) 26 Reader::~Reader() [all...] |
/external/guava/guava-tests/test/com/google/common/io/ |
MultiReaderTest.java | 25 import java.io.Reader; 35 final InputSupplier<Reader> supplier = newReader(testString); 37 InputSupplier<Reader> reader = new InputSupplier<Reader>() { local 39 public Reader getInput() throws IOException { 52 Reader joinedReader = CharStreams.join(reader, reader, reader).getInput() [all...] |
/external/chromium_org/third_party/leveldatabase/src/db/ |
log_reader.h | 20 class Reader { 32 // Create a reader that will return log records from "*file". 33 // "*file" must remain live while this Reader is in use. 37 // live while this Reader is in use. 41 // The Reader will start reading at the first record located at physical 43 Reader(SequentialFile* file, Reporter* reporter, bool checksum, 46 ~Reader(); 52 // reader or the next mutation to *scratch. 101 Reader(const Reader&) [all...] |
/external/openfst/src/include/fst/script/ |
register.h | 38 template<class Reader, class Creator, class Converter> 40 Reader reader; member in struct:fst::script::FstClassRegEntry 44 FstClassRegEntry(Reader r, Creator cr, Converter co) : 45 reader(r), creator(cr), converter(co) { } 46 FstClassRegEntry() : reader(0), creator(0), converter(0) { } 49 template<class Reader, class Creator, class Converter> 52 FstClassRegEntry<Reader, Creator, Converter>, 53 FstClassIORegister<Reader, Creator, 56 Reader GetReader(const string &arc_type) const [all...] |
/libcore/luni/src/main/java/org/xml/sax/ |
InputSource.java | 9 import java.io.Reader; 58 * @see java.io.Reader 135 public InputSource (Reader characterStream) 304 * @see java.io.Reader 306 public void setCharacterStream (Reader characterStream) 318 public Reader getCharacterStream () 334 private Reader characterStream;
|
/dalvik/dx/tests/118-find-usages/ |
Foo.java | 17 import java.io.Reader; 25 new StreamTokenizer((Reader) null).nval = 5; 29 return new StreamTokenizer((Reader) null).nval;
|
/external/clang/lib/Serialization/ |
ASTReaderInternals.h | 1 //===--- ASTReaderInternals.h - AST Reader Internals ------------*- C++ -*-===// 10 // This file provides internal definitions used in the AST reader. 34 namespace reader { namespace in namespace:clang::serialization 39 ASTReader &Reader; 62 explicit ASTDeclContextNameLookupTrait(ASTReader &Reader, ModuleFile &F) 63 : Reader(Reader), F(F) { } 119 ASTReader &Reader; 130 ASTIdentifierLookupTrait(ASTReader &Reader, ModuleFile &F, 132 : Reader(Reader), F(F), KnownII(II) { [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
ANTLRReaderStream.java | 32 /** Vacuum all input from a Reader and then treat it like a StringStream. 44 public ANTLRReaderStream(Reader r) throws IOException { 48 public ANTLRReaderStream(Reader r, int size) throws IOException { 52 public ANTLRReaderStream(Reader r, int size, int readChunkSize) throws IOException { 56 public void load(Reader r, int size, int readChunkSize)
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
Parser.java | 21 import java.io.Reader; 47 * @param reader Reader used to read in the formatted data. 51 * @param dataFileName Name of a file that is read with reader. It is needed for the purpose of 56 void parse(Reader reader, Data output, ErrorHandler errorHandler, ResourceLoader resourceLoader,
|
/libcore/luni/src/main/java/javax/xml/transform/stream/ |
StreamSource.java | 24 import java.io.Reader; 31 * <p><em>Note:</em> Due to their internal use of either a {@link Reader} or {@link InputStream} instance, 50 * {@link #setReader(java.io.Reader reader)}, then the 61 * a stream should be used rather than a reader, so 77 * a stream should be used rather than a reader, so that 94 * Construct a StreamSource from a character reader. Normally, 95 * a stream should be used rather than a reader, so that 101 * @param reader A valid Reader reference to an XML character stream 271 private Reader reader; field in class:StreamSource [all...] |
/external/chromium_org/tools/ipc_fuzzer/message_lib/ |
message_file_reader.cc | 23 class Reader { 25 Reader(const base::FilePath& path); 61 DISALLOW_COPY_AND_ASSIGN(Reader); 64 Reader::Reader(const base::FilePath& path) 71 bool Reader::CutObject(const T** object) { 81 bool Reader::ReadHeader() { 97 bool Reader::MapFile() { 107 bool Reader::ReadMessages() { 132 bool Reader::ReadStringTable() [all...] |
/external/openfst/src/include/fst/ |
register.h | 46 typedef Fst<A> *(*Reader)(istream &strm, const FstReadOptions &opts); 49 Reader reader; member in struct:fst::FstRegisterEntry 51 FstRegisterEntry() : reader(0), converter(0) {} 52 FstRegisterEntry(Reader r, Converter c) : reader(r), converter(c) { } 56 // an FST type, and its reader and converter. 61 typedef typename FstRegisterEntry<A>::Reader Reader; 64 const Reader GetReader(const string &type) const [all...] |
/external/guava/guava/src/com/google/common/io/ |
MultiReader.java | 22 import java.io.Reader; 26 * A {@link Reader} that concatenates multiple readers. 31 class MultiReader extends Reader { 32 private final Iterator<? extends InputSupplier<? extends Reader>> it; 33 private Reader current; 35 MultiReader(Iterator<? extends InputSupplier<? extends Reader>> readers) 42 * Closes the current reader and opens the next one, if any.
|