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

1234567891011>>

/external/skia/include/xml/
H A DSkBML_XMLParser.h27 /** 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/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
H A Dcommon_param_traits.cc16 bool ParamTraits<ContentSetting>::Read(const Message* m, void** iter, function in class:IPC::ParamTraits
54 bool ParamTraits<ContentSettingsType>::Read(const Message* m, void** iter, 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/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::__anon2325::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/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/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h260 Read(static_cast<unsigned>(WordBitNo));
264 uint32_t Read(unsigned NumBits) { function in class:llvm::BitstreamCursor
283 // Read the next word from the stream.
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);
324 Piece = Read(NumBits);
328 // ReadVBR64 - Read a VBR that may have a value up to 64-bits in size. The
331 uint32_t Piece = Read(NumBit
[all...]
/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))));
H A Dbrowser_action_drag_data.h38 bool Read(const ui::OSExchangeData& data);
/external/chromium/net/disk_cache/
H A Dfile.h52 bool Read(void* buffer, size_t buffer_len, size_t offset);
57 bool Read(void* buffer, size_t buffer_len, size_t offset,
H A Dfile_posix.cc41 // Read and Write are the operations that can be performed asynchronously.
46 void Read();
92 void FileBackgroundIO::Read() { function in class:__anon2152::FileBackgroundIO
93 if (file_->Read(const_cast<void*>(buf_), buf_len_, offset_)) {
118 NewRunnableMethod(operation.get(), &FileBackgroundIO::Read), true);
203 bool File::Read(void* buffer, size_t buffer_len, size_t offset) { function in class:disk_cache::File
224 bool File::Read(void* buffer, size_t buffer_len, size_t offset, function in class:disk_cache::File
230 return Read(buffer, buffer_len, offset);
/external/skia/src/xml/
H A DSkBML_XMLParser.cpp172 void BML_XMLParser::Read(SkStream& s, SkXMLWriter& writer) function in class:BML_XMLParser
179 void BML_XMLParser::Read(SkStream& s, SkWStream& output) function in class:BML_XMLParser
182 Read(s, writer);
185 void BML_XMLParser::Read(SkStream& s, SkXMLParser& output) function in class:BML_XMLParser
188 Read(s, writer);
/external/valgrind/tsan/
H A Dts_offline.cc56 //------------- Read binary file Utils ------------ {{{1
60 static bool Read(FILE *fp, T *res) { function
75 if (!Read<unsigned short>(file, &length)) {
171 bool ok = Read<int>(input, pc);
180 // Read information about event in format: [[[info] address] pc] tid.
190 ok &= Read<unsigned short>(input, &extra);
200 ok &= Read<int64_t>(input, &address);
209 ok &= Read<int>(input, &pc);
212 ok &= Read<unsigned short>(input, &tid);
238 ok &= Read<unsigne
[all...]
/external/chromium/webkit/glue/media/
H A Dbuffered_data_source_unittest.cc75 MOCK_METHOD4(Read, void(int64 position, int read_size, uint8* buffer,
162 ON_CALL(*loader_, Read(_, _, _ , _))
244 EXPECT_CALL(*loader_, Read(position, size, NotNull(), NotNull()))
252 data_source_->Read(
266 EXPECT_CALL(*loader_, Read(position, size, NotNull(), NotNull()));
267 data_source_->Read(
289 EXPECT_CALL(*loader_, Read(position, size, NotNull(), NotNull()))
313 EXPECT_CALL(*new_loader, Read(position, size, NotNull(), NotNull()))
325 data_source_->Read(
341 EXPECT_CALL(*loader_, Read(positio
[all...]
/external/chromium/chrome/common/extensions/
H A Dextension_messages.cc72 static bool Read(const Message* m, void** iter, param_type* p) { function in struct:IPC::ParamTraits
91 bool ParamTraits<URLPattern>::Read(const Message* m, void** iter, function in class:IPC::ParamTraits
111 bool ParamTraits<ExtensionExtent>::Read(const Message* m, void** iter, function in class:IPC::ParamTraits
135 bool ParamTraits<ExtensionMsg_Loaded_Params>::Read(const Message* m, function in class:IPC::ParamTraits

Completed in 530 milliseconds

1234567891011>>