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

1 2 3 4 5 6 7 8 91011>>

  /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/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,
ssl_server_socket_openssl.cc 24 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/base/opengl/libs/GLES2_dbg/test/
test_server.cpp 51 void Read(glesv2debugger::Message & msg) const {
71 glesv2debugger::Message msg, cmd, read; local
79 Read(read);
80 EXPECT_EQ(msg.context_id(), read.context_id());
81 EXPECT_EQ(msg.function(), read.function());
82 EXPECT_EQ(msg.expect_response(), read.expect_response());
83 EXPECT_EQ(msg.type(), read.type());
120 glesv2debugger::Message read; local
122 Read(read)
181 glesv2debugger::Message msg, read; local
213 glesv2debugger::Message read; local
    [all...]
  /external/chromium/net/udp/
udp_client_socket.cc 24 int UDPClientSocket::Read(IOBuffer* buf,
27 return socket_.Read(buf, buf_len, callback);
udp_client_socket.h 26 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback);
  /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());
  /sdk/emulator/qtools/
decoder.h 14 void Read(char *dest, int len);
  /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,
  /external/chromium/third_party/libjingle/source/talk/base/
socketstream.h 51 virtual StreamResult Read(void* buffer, size_t buffer_len,
52 size_t* read, int* error);
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 11 // read an arbitrary bitstream, regardless of its contents.
91 /// hasBlockInfoRecords - Return true if we've already read and processed the
260 Read(static_cast<unsigned>(WordBitNo));
264 uint32_t Read(unsigned NumBits) {
283 // Read the next word from the stream.
288 // Extract NumBits-BitsInCurWord from what we just read.
304 if (NumBits <= 32) return Read(NumBits);
306 uint64_t V = Read(32);
307 return V | (uint64_t)Read(NumBits-32) << 32;
311 uint32_t Piece = Read(NumBits)
    [all...]
  /external/webkit/Source/WebKit/win/
CFDictionaryPropertyBag.h 53 virtual HRESULT STDMETHODCALLTYPE Read(LPCOLESTR pszPropName, VARIANT*, IErrorLog*);
WebElementPropertyBag.h 52 virtual /* [local] */ HRESULT STDMETHODCALLTYPE Read(
  /external/webrtc/src/system_wrappers/interface/
file_wrapper.h 17 // Implementation of an InStream and OutStream that can read (exclusive) or
33 // Opens a file in read or write mode, decided by the readOnly parameter.
58 virtual int Read(void* buf, int len) = 0;
  /external/webrtc/src/system_wrappers/source/
file_impl.h 39 virtual int Read(void* buf, int len);

Completed in 529 milliseconds

1 2 3 4 5 6 7 8 91011>>