Searched refs:Read (Results 1 - 25 of 424) sorted by relevance

1234567891011>>

/external/skia/include/xml/
H A DSkBML_XMLParser.h20 /** 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/chrome/common/
H A Dcommon_param_traits.h22 static bool Read(const Message* m, void** iter, param_type* p);
30 static bool Read(const Message* m, void** iter, param_type* p);
H A Dlibxml_utils.cc88 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());
H A Dautomation_messages.h211 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) { function in struct:IPC::ParamTraits
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(cons
[all...]
H A Drender_messages.cc15 bool ParamTraits<ContentSettings>::Read( function in class:IPC::ParamTraits
/external/chromium/android/jni/
H A Dplatform_file_jni.h19 int Read(char* out, int length);
/external/chromium/net/udp/
H A Dudp_client_socket.cc24 int UDPClientSocket::Read(IOBuffer* buf, function in class:net::UDPClientSocket
27 return socket_.Read(buf, buf_len, callback);
/external/libppp/src/
H A Ddescriptor.h46 void (*Read)(struct fdescriptor *, struct bundle *, const fd_set *); member in struct:fdescriptor
52 #define descriptor_Read(d, b, f) ((*(d)->Read)(d, b, f))
/external/openfst/src/bin/
H A Dfstconcat.cc52 MutableFstClass *fst1 = MutableFstClass::Read(in1_name, true);
55 FstClass *fst2 = FstClass::Read(in2_name);
H A Dfstequal.cc50 FstClass *ifst1 = FstClass::Read(in1_name);
53 FstClass *ifst2 = FstClass::Read(in2_name);
H A Dfstunion.cc55 MutableFstClass *fst1 = MutableFstClass::Read(in1_name, true);
58 FstClass *fst2 = FstClass::Read(in2_name);
H A Dfstconnect.cc45 MutableFstClass *fst = MutableFstClass::Read(in_name, true);
H A Dfstinvert.cc44 MutableFstClass *fst = MutableFstClass::Read(in_name, true);
/external/chromium/net/socket/
H A Dsocket.h31 virtual int Read(IOBuffer* buf, int buf_len,
H A Dssl_server_socket_openssl.cc24 virtual int Read(IOBuffer* buf, int buf_len, function in class:net::__anon3048::SSLServerSocketOpenSSL
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dexpanded-fst.h37 // Read an ExpandedFst from an input stream; return NULL on error.
38 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::ExpandedFst
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) { function in class:fst::ExpandedFst
69 LOG(ERROR) << "ExpandedFst::Read: Can't open file: " << filename;
72 return Read(strm, FstReadOptions(filename));
/external/webkit/Source/WebCore/platform/haiku/
H A DSharedBufferHaiku.cpp47 file.Read(buffer.data(), buffer.size());
/external/compiler-rt/lib/tsan/rtl_tests/
H A Dtsan_test_util.h67 void Read(const MemLoc &ml, int size, bool expect_race = false) { function in class:ScopedThread
74 Read(ml, 1, expect_race); }
76 Read(ml, 2, expect_race); }
78 Read(ml, 4, expect_race); }
80 Read(ml, 8, expect_race); }
/external/openfst/src/script/
H A Dfst-class.cc51 if (!hdr.Read(in, fname)) {
72 FstClass *FstClass::Read(const string &fname) { function in class:fst::script::FstClass
85 MutableFstClass *MutableFstClass::Read(const string &fname, bool convert) { function in class:fst::script::MutableFstClass
94 FstClass *ifst = FstClass::Read(fname);
131 VectorFstClass *VectorFstClass::Read(const string &fname) { function in class:fst::script::VectorFstClass
/external/chromium/base/json/
H A Djson_reader_unittest.cc223 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("[tru
[all...]
/external/chromium/chrome/common/web_resource/
H A Dweb_resource_unpacker.cc29 value.reset(base::JSONReader::Read(resource_data_, false));
/external/chromium/net/ftp/
H A Dftp_transaction.h63 virtual int Read(IOBuffer* buf,
/external/chromium/net/tools/flip_server/
H A Dbuffer_interface.h84 virtual int Read(char* bytes, int size) = 0;
/external/webrtc/src/system_wrappers/interface/
H A Dfile_wrapper.h64 virtual int Read(void* buf, int length) = 0;
/external/chromium/chrome/browser/ui/views/extensions/
H A Dbrowser_action_drag_data_unittest.cc33 EXPECT_FALSE(drag_data.Read(ui::OSExchangeData(CloneProvider(data))));
52 EXPECT_TRUE(drag_data.Read(ui::OSExchangeData(CloneProvider(data))));

Completed in 398 milliseconds

1234567891011>>