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

1 2 3 4 5 6 7 8 91011>>

  /external/skia/include/xml/
SkBML_XMLParser.h 20 /** Read the byte XML stream and write the decompressed XML.
22 static void Read(SkStream& s, SkXMLWriter& writer);
23 /** Read the byte XML stream and write the decompressed XML into a writable stream.
25 static void Read(SkStream& s, SkWStream& output);
26 /** Read the byte XML stream and write the decompressed XML into an XML parser.
28 static void Read(SkStream& s, SkXMLParser& output);
  /external/chromium/android/jni/
platform_file_jni.h 19 int Read(char* out, int length);
  /external/chromium/chrome/common/
common_param_traits.h 22 static bool Read(const Message* m, void** iter, param_type* p);
30 static bool Read(const Message* m, void** iter, param_type* p);
libxml_utils.cc 84 // Empty tag. We succesfully read the content, but it's
88 if (!Read())
94 if (!Read())
97 // Read the content. We read up until we hit a closing tag at the
101 if (!Read())
107 if (!Read())
124 } while (Read());
automation_messages.h 211 static bool Read(const Message* m, void** iter, param_type* p);
219 static bool Read(const Message* m, void** iter, param_type* p);
227 static bool Read(const Message* m, void** iter, param_type* p);
235 static bool Read(const Message* m, void** iter, param_type* p);
243 static bool Read(const Message* m, void** iter, param_type* p);
251 static bool Read(const Message* m, void** iter, param_type* p);
272 static bool Read(const Message* m, void** iter, param_type* p) {
312 static bool Read(const Message* m, void** iter, param_type* p);
321 static bool Read(const Message* m, void** iter, param_type* p);
330 static bool Read(const Message* m, void** iter, param_type* p)
    [all...]
render_messages.cc 15 bool ParamTraits<ContentSettings>::Read(
  /external/chromium/net/socket/
socket.h 15 // Represents a read/write socket.
20 // Reads data, up to buf_len bytes, from the socket. The number of bytes read
29 // closed. If the socket is Disconnected before the read completes, the
31 virtual int Read(IOBuffer* buf, int buf_len,
  /external/chromium/net/tools/flip_server/
buffer_interface.h 14 // Returns the bytes which can be read from the buffer. There is no
45 // bytes - bytes which are read, and copied into the buffer.
46 // size - number of bytes which are read and copied.
53 // recv() or read(), etc.
62 // Gets a pointer which can be read from
68 // ptr - assigned a pointer from which we may read
69 // size - the amount of data (in bytes) that it is safe to read
74 // Returns the number of bytes read.
78 // bytes - the pointer into which bytes are read from this buffer
80 // size - number of bytes which are read and copied
    [all...]
  /frameworks/compile/libbcc/include/bcinfo/Wrap/
file_wrapper_input.h 32 // Tries to read the requested number of bytes into the buffer. Returns the
33 // actual number of bytes read.
34 virtual size_t Read(uint8_t* buffer, size_t wanted);
36 // until Read is called, and returns 0.
in_memory_wrapper_input.h 32 // Tries to read the requested number of bytes into the buffer. Returns the
33 // actual number of bytes read.
34 virtual size_t Read(uint8_t* buffer, size_t wanted);
36 // until Read is called, and returns 0.
wrapper_input.h 34 // Tries to read the requested number of bytes into the buffer. Returns the
35 // actual number of bytes read.
36 virtual size_t Read(uint8_t* buffer, size_t wanted) = 0;
38 // Read is called, and returns 0.
  /external/chromium/net/udp/
udp_client_socket.cc 24 int UDPClientSocket::Read(IOBuffer* buf,
27 return socket_.Read(buf, buf_len, callback);
  /external/openfst/src/bin/
fstconcat.cc 52 MutableFstClass *fst1 = MutableFstClass::Read(in1_name, true);
55 FstClass *fst2 = FstClass::Read(in2_name);
fstequal.cc 50 FstClass *ifst1 = FstClass::Read(in1_name);
53 FstClass *ifst2 = FstClass::Read(in2_name);
fstunion.cc 55 MutableFstClass *fst1 = MutableFstClass::Read(in1_name, true);
58 FstClass *fst2 = FstClass::Read(in2_name);
  /external/openfst/src/include/fst/
expanded-fst.h 45 // Read an ExpandedFst from an input stream; return NULL on error.
46 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) {
52 if (!hdr.Read(strm, opts.source))
57 LOG(ERROR) << "ExpandedFst::Read: Not an ExpandedFst: " << ropts.source;
64 LOG(ERROR) << "ExpandedFst::Read: Unknown FST type \"" << hdr.FstType()
74 // Read an ExpandedFst from a file; return NULL on error.
76 static ExpandedFst<A> *Read(const string &filename) {
80 LOG(ERROR) << "ExpandedFst::Read: Can't open file: " << filename;
83 return Read(strm, FstReadOptions(filename));
85 return Read(std::cin, FstReadOptions("standard input"))
    [all...]
  /external/chromium/net/ftp/
ftp_transaction.h 51 // read by calling this method.
57 // copied. Or, if a read error occurs, the CompletionCallback is notified of
59 // could not be read.
63 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));
  /external/webkit/Source/WebCore/platform/haiku/
SharedBufferHaiku.cpp 47 file.Read(buffer.data(), buffer.size());
  /external/webrtc/src/system_wrappers/interface/
file_wrapper.h 19 // Implementation of an InStream and OutStream that can read (exclusive) or
35 // Opens a file in read or write mode, decided by the readOnly parameter.
62 // Reads |length| bytes from file to |buf|. Returns the number of bytes read
64 virtual int Read(void* buf, int length) = 0;
  /sdk/emulator/qtools/
decoder.h 14 void Read(char *dest, int len);
  /external/openfst/src/script/
fst-class.cc 51 if (!hdr.Read(in, fname)) {
72 FstClass *FstClass::Read(const string &fname) {
85 MutableFstClass *MutableFstClass::Read(const string &fname, bool convert) {
94 FstClass *ifst = FstClass::Read(fname);
131 VectorFstClass *VectorFstClass::Read(const string &fname) {
  /external/chromium/base/json/
json_reader_unittest.cc 223 root.reset(JSONReader::Read("[true, false, null]", false));
231 root2.reset(JSONReader::Read("[true, false, null, ]", true));
235 root.reset(JSONReader::Read("[]", false));
242 root.reset(JSONReader::Read("[[true], [], [false, [], [null]], null]",
250 root2.reset(JSONReader::Read("[[true], [], [false, [], [null, ] , ], null,]",
255 root.reset(JSONReader::Read("[[true], [], [false, [], [null]], null", false));
259 root.reset(JSONReader::Read("[true,, null]", false));
261 root.reset(JSONReader::Read("[true,, null]", true));
265 root.reset(JSONReader::Read("[true null]", false));
269 root.reset(JSONReader::Read("[true,]", false))
    [all...]
  /external/chromium/chrome/common/web_resource/
web_resource_unpacker.cc 29 value.reset(base::JSONReader::Read(resource_data_, false));
31 // Page information not properly read, or corrupted.
  /external/chromium/net/http/
http_transaction.h 50 // Once Read has been called, this method cannot be called. This method is
78 // read by calling this method.
84 // copied. Or, if a read error occurs, the CompletionCallback is notified of
86 // could not be read.
92 virtual int Read(IOBuffer* buf, int buf_len,

Completed in 668 milliseconds

1 2 3 4 5 6 7 8 91011>>