HomeSort by relevance Sort by last modified time
    Searched refs:Read (Results 1 - 25 of 185) sorted by null

1 2 3 4 5 6 7 8

  /external/skia/include/xml/
SkBML_XMLParser.h 27 /** Read the byte XML stream and write the decompressed XML.
29 static void Read(SkStream& s, SkXMLWriter& writer);
30 /** Read the byte XML stream and write the decompressed XML into a writable stream.
32 static void Read(SkStream& s, SkWStream& output);
33 /** Read the byte XML stream and write the decompressed XML into an XML parser.
35 static void Read(SkStream& s, SkXMLParser& output);
  /external/v8/src/
usage-analyzer.cc 63 void Read(Expression* x);
116 Read(node->condition());
135 Read(node->expression());
140 Read(node->expression());
150 Read(node->tag());
156 Read(clause->label());
164 Read(node->cond());
171 Read(node->cond());
179 if (node->cond() != NULL) Read(node->cond());
189 Read(node->enumerable())
    [all...]
  /external/chromium/net/socket/
socket.h 14 // Represents a read/write socket.
20 // read is returned, or an error is returned upon failure. Zero is returned
26 virtual int Read(IOBuffer* buf, int buf_len,
tcp_client_socket_win.h 36 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback);
73 // External callback; called when connect or read is complete.
tcp_client_socket_unittest.cc 127 TEST_F(TCPClientSocketTest, Read) {
153 rv = sock_->Read(buf, 4096, &callback);
163 // All data has been read now. Read once more to force an ERR_IO_PENDING, and
166 rv = sock_->Read(buf, 4096, &callback);
198 rv = sock_->Read(buf, 1, &callback);
208 // All data has been read now. Read once more to force an ERR_IO_PENDING, and
211 rv = sock_->Read(buf, 1, &callback);
240 // Do a partial read and then exit. This test should not crash
    [all...]
  /external/chromium/net/tools/flip_server/
buffer_interface.h 13 // Returns the bytes which can be read from the buffer. There is no
44 // bytes - bytes which are read, and copied into the buffer.
45 // size - number of bytes which are read and copied.
52 // recv() or read(), etc.
61 // Gets a pointer which can be read from
67 // ptr - assigned a pointer from which we may read
68 // size - the amount of data (in bytes) that it is safe to read
73 // Returns the number of bytes read.
77 // bytes - the pointer into which bytes are read from this buffer
79 // size - number of bytes which are read and copied
    [all...]
ring_buffer.h 58 // characters which are allowed to be read in *size.
62 // Returns the number of bytes read into 'bytes'.
63 virtual int Read(char* bytes, int size);
  /external/chromium/net/ftp/
ftp_transaction.h 49 // read by calling this method.
55 // copied. Or, if a read error occurs, the CompletionCallback is notified of
57 // could not be read.
61 virtual int Read(IOBuffer* buf,
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
expanded-fst.h 37 // Read an ExpandedFst from an input stream; return NULL on error.
38 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) {
44 if (!hdr.Read(strm, opts.source))
49 LOG(ERROR) << "ExpandedFst::Read: Not an ExpandedFst: " << ropts.source;
56 LOG(ERROR) << "ExpandedFst::Read: Unknown FST type \"" << hdr.FstType()
65 // Read an ExpandedFst from a file; return NULL on error.
66 static ExpandedFst<A> *Read(const string &filename) {
69 LOG(ERROR) << "ExpandedFst::Read: Can't open file: " << filename;
72 return Read(strm, FstReadOptions(filename));
mutable-fst.h 70 // Read an MutableFst from an input stream; return NULL on error.
71 static MutableFst<A> *Read(istream &strm, const FstReadOptions &opts) {
77 if (!hdr.Read(strm, opts.source))
82 LOG(ERROR) << "MutableFst::Read: Not an MutableFst: " << ropts.source;
89 LOG(ERROR) << "MutableFst::Read: Unknown FST type \"" << hdr.FstType()
98 // Read an MutableFst from a file; returns NULL on error.
99 static MutableFst<A> *Read(const string &filename) {
102 LOG(ERROR) << "MutableFst::Read: Can't open file: " << filename;
105 return Read(strm, FstReadOptions(filename));
symbol-table.h 63 static SymbolTableImpl* Read(istream &strm, const string& source);
226 // read an ascii representation of the symbol table
235 // read a binary dump of the symbol table
236 static SymbolTable* Read(istream &strm, const string& source) {
237 SymbolTableImpl* impl = SymbolTableImpl::Read(strm, source);
244 // read a binary dump of the symbol table
245 static SymbolTable* Read(const string& filename) {
248 LOG(ERROR) << "SymbolTable::Read: Can't open file " << filename;
251 return Read(strm, filename);
  /sdk/emulator/qtools/
decoder.h 14 void Read(char *dest, int len);
  /external/chromium/base/json/
json_reader_unittest.cc 221 root.reset(JSONReader::Read("[true, false, null]", false));
229 root2.reset(JSONReader::Read("[true, false, null, ]", true));
233 root.reset(JSONReader::Read("[]", false));
240 root.reset(JSONReader::Read("[[true], [], [false, [], [null]], null]",
248 root2.reset(JSONReader::Read("[[true], [], [false, [], [null, ] , ], null,]",
253 root.reset(JSONReader::Read("[[true], [], [false, [], [null]], null", false));
257 root.reset(JSONReader::Read("[true,, null]", false));
259 root.reset(JSONReader::Read("[true,, null]", true));
263 root.reset(JSONReader::Read("[true null]", false));
267 root.reset(JSONReader::Read("[true,]", false))
    [all...]
  /external/chromium/net/base/
telnet_server.h 20 virtual void Read();
54 int iac_command_; // Last command read.
55 int iac_option_; // Last option read.
file_stream.h 55 // Adjust the position from where data is read. Upon success, the stream
57 // error code is returned. It is not valid to call Seek while a Read call
61 // Returns the number of bytes available to read from the current stream
65 // Call this method to read data from the current stream position. Up to
71 // must be passed to this method. In asynchronous mode, if the read could
74 // the read has completed.
76 // In the case of an asychronous read, the memory pointed to by |buf| must
78 // destroy or close the file stream while there is an asynchronous read in
79 // progress. That will cancel the read and allow the buffer to be freed.
84 int Read(char* buf, int buf_len, CompletionCallback* callback)
    [all...]
  /external/chromium/net/http/
http_transaction.h 47 // Once Read has been called, this method cannot be called. This method is
75 // read by calling this method.
81 // copied. Or, if a read error occurs, the CompletionCallback is notified of
83 // could not be read.
89 virtual int Read(IOBuffer* buf, int buf_len,
http_transaction_unittest.h 156 Read();
165 Read();
176 void Read() {
179 int result = trans_->Read(read_buf_, 1024, this);
270 virtual int Read(net::IOBuffer* buf, int buf_len,
345 // read the transaction completely
  /external/webkit/WebCore/platform/haiku/
SharedBufferHaiku.cpp 52 file.Read(result->m_buffer.data(), result->m_buffer.size());
  /external/webkit/WebKit/win/
CFDictionaryPropertyBag.h 52 virtual HRESULT STDMETHODCALLTYPE Read(LPCOLESTR pszPropName, VARIANT*, IErrorLog*);
WebElementPropertyBag.h 53 virtual /* [local] */ HRESULT STDMETHODCALLTYPE Read(
WebActionPropertyBag.h 52 virtual /* [local] */ HRESULT STDMETHODCALLTYPE Read(
  /external/chromium/net/disk_cache/
file.h 22 // Notified of the actual number of bytes read or written. This value is
43 // on disk, and allow shared read and write.
53 bool Read(void* buffer, size_t buffer_len, size_t offset);
58 bool Read(void* buffer, size_t buffer_len, size_t offset,
file_posix.cc 38 // Read and Write are the operations that can be performed asynchronously.
44 void Read();
104 // 3. BackgroundIO::Read()
151 void BackgroundIO::Read() {
152 if (file_->Read(const_cast<void*>(buf_), buf_len_, offset_)) {
197 NewRunnableMethod(operation.get(), &BackgroundIO::Read),
288 bool File::Read(void* buffer, size_t buffer_len, size_t offset) {
309 bool File::Read(void* buffer, size_t buffer_len, size_t offset,
315 return Read(buffer, buffer_len, offset);
  /external/skia/src/xml/
SkBML_XMLParser.cpp 26 size_t size = s.read(&b, 1);
60 s.read(array[index], size);
172 void BML_XMLParser::Read(SkStream& s, SkXMLWriter& writer)
179 void BML_XMLParser::Read(SkStream& s, SkWStream& output)
182 Read(s, writer);
185 void BML_XMLParser::Read(SkStream& s, SkXMLParser& output)
188 Read(s, writer);
  /external/giflib/
gif_lib_private.h 48 InputFunc Read; /* function to read gif input (TVT) */

Completed in 1917 milliseconds

1 2 3 4 5 6 7 8