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

1234567891011>>

/external/chromium_org/third_party/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/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_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dfont_input_stream.cc67 int32_t FontInputStream::Read() { function in class:sfntly::FontInputStream
71 int32_t b = stream_->Read();
78 int32_t FontInputStream::Read(ByteVector* b, int32_t offset, int32_t length) { function in class:sfntly::FontInputStream
86 int32_t bytes_read = stream_->Read(b, offset, bytes_to_read);
91 int32_t FontInputStream::Read(ByteVector* b) { function in class:sfntly::FontInputStream
92 return Read(b, 0, b->size());
96 return Read();
100 return 0xffff & (Read() << 8 | Read());
104 return ((Read() <<
[all...]
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_input_stream.cc67 int32_t FontInputStream::Read() { function in class:sfntly::FontInputStream
71 int32_t b = stream_->Read();
78 int32_t FontInputStream::Read(ByteVector* b, int32_t offset, int32_t length) { function in class:sfntly::FontInputStream
86 int32_t bytes_read = stream_->Read(b, offset, bytes_to_read);
91 int32_t FontInputStream::Read(ByteVector* b) { function in class:sfntly::FontInputStream
92 return Read(b, 0, b->size());
96 return Read();
100 return 0xffff & (Read() << 8 | Read());
104 return ((Read() <<
[all...]
/external/lzma/CPP/7zip/Common/
H A DLockedStream.cpp7 HRESULT CLockedInStream::Read(UInt64 startPos, void *data, UInt32 size, function in class:CLockedInStream
12 return _stream->Read(data, size, processedSize);
15 STDMETHODIMP CLockedSequentialInStreamImp::Read(void *data, UInt32 size, UInt32 *processedSize) function in class:CLockedSequentialInStreamImp
18 HRESULT result = _lockedInStream->Read(_pos, data, size, &realProcessedSize);
H A DLockedStream.h17 HRESULT Read(UInt64 startPos, void *data, UInt32 size, UInt32 *processedSize);
35 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
/external/chromium_org/chrome/common/
H A Dpartial_circular_buffer_unittest.cc73 pcb_read_->Read(output_data, sizeof(output_data)));
77 EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data)));
87 pcb_read_->Read(output_data, sizeof(output_data)));
94 EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data)));
104 pcb_read_->Read(output_data, sizeof(output_data)));
108 EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data)));
118 pcb_read_->Read(output_data, sizeof(output_data)));
122 EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data)));
135 pcb_read_->Read(output_data + read, size_per_read));
138 pcb_read_->Read(output_dat
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dlog_test.cc61 virtual Status Read(size_t n, Slice* result, char* scratch) { function in class:leveldb::log::LogTest::StringSource
62 ASSERT_TRUE(!returned_partial_) << "must not Read() after eof/error";
130 std::string Read() { function in class:leveldb::log::LogTest
239 ASSERT_EQ("EOF", Read());
247 ASSERT_EQ("foo", Read());
248 ASSERT_EQ("bar", Read());
249 ASSERT_EQ("", Read());
250 ASSERT_EQ("xxxx", Read());
251 ASSERT_EQ("EOF", Read());
252 ASSERT_EQ("EOF", Read()); // Mak
[all...]
/external/lzma/CPP/7zip/Archive/7z/
H A D7zSpecStream.cpp7 STDMETHODIMP CSequentialInStreamSizeCount2::Read(void *data, UInt32 size, UInt32 *processedSize) function in class:CSequentialInStreamSizeCount2
10 HRESULT result = _stream->Read(data, size, &realProcessedSize);
/external/chromium_org/third_party/webrtc/test/
H A Drtp_file_reader.cc49 // Read RTP packets from file in rtpdump format, as documented at:
93 TRY(Read(&start_sec));
94 TRY(Read(&start_usec));
95 TRY(Read(&source));
96 TRY(Read(&port));
97 TRY(Read(&padding));
109 TRY(Read(&len)); variable
110 TRY(Read(&plen)); variable
111 TRY(Read(&offset)); variable
128 bool Read(uint32_ function in class:webrtc::test::RtpDumpReader
140 bool Read(uint16_t* out) { function in class:webrtc::test::RtpDumpReader
517 int Read(uint32_t* out, bool expect_network_order) { function in class:webrtc::test::PcapReader
531 int Read(uint16_t* out, bool expect_network_order) { function in class:webrtc::test::PcapReader
544 int Read(uint8_t* out, uint32_t count) { function in class:webrtc::test::PcapReader
551 int Read(int32_t* out, bool expect_network_order) { function in class:webrtc::test::PcapReader
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dmemory_io_test.cc45 // Read one byte
46 EXPECT_EQ(is.Read(), '0'); // position 1
47 EXPECT_EQ(is.Read(), '1'); // position 2
48 EXPECT_EQ(is.Read(), '2'); // position 3
50 // Read byte vector
53 EXPECT_EQ(is.Read(&b), 7); // position 10
57 EXPECT_EQ(is.Read(&b, 7, 10), 10); // position 20
64 EXPECT_EQ(is.Read(&b), 10); // position 60
69 EXPECT_EQ(is.Read(&b), 10); // position 50
H A Dfile_io_test.cc50 is.Read(&b2, 0, length);
58 is.Read(&b2, 0, 100);
64 is.Read(&b2, 0, 100);
68 is.Read(&b2, 0, 100);
74 is.Read(&b2, 0, 100);
75 is.Read(&b2, 100, 100);
112 font_is1.Read(&b2, 0, length);
120 font_is2.Read(&b2, 0, 100);
122 font_is2.Read(&b2, 100, 100);
126 font_is2.Read(
[all...]
/external/sfntly/cpp/src/test/
H A Dmemory_io_test.cc45 // Read one byte
46 EXPECT_EQ(is.Read(), '0'); // position 1
47 EXPECT_EQ(is.Read(), '1'); // position 2
48 EXPECT_EQ(is.Read(), '2'); // position 3
50 // Read byte vector
53 EXPECT_EQ(is.Read(&b), 7); // position 10
57 EXPECT_EQ(is.Read(&b, 7, 10), 10); // position 20
64 EXPECT_EQ(is.Read(&b), 10); // position 60
69 EXPECT_EQ(is.Read(&b), 10); // position 50
H A Dfile_io_test.cc50 is.Read(&b2, 0, length);
58 is.Read(&b2, 0, 100);
64 is.Read(&b2, 0, 100);
68 is.Read(&b2, 0, 100);
74 is.Read(&b2, 0, 100);
75 is.Read(&b2, 100, 100);
112 font_is1.Read(&b2, 0, length);
120 font_is2.Read(&b2, 0, 100);
122 font_is2.Read(&b2, 100, 100);
126 font_is2.Read(
[all...]
/external/chromium_org/media/filters/
H A Din_memory_url_protocol_unittest.cc17 EXPECT_EQ(4, protocol.Read(sizeof(out), out));
25 EXPECT_EQ(AVERROR(EIO), protocol.Read(-2, out));
32 EXPECT_EQ(0, protocol.Read(0, &out));
43 EXPECT_EQ(0, protocol.Read(1, &out));
47 EXPECT_EQ(1, protocol.Read(1, &out));
/external/chromium_org/ipc/
H A Dparam_traits_read_macros.h27 Read(const Message* m, PickleIterator* iter, param_type* p) { \
30 #define IPC_STRUCT_TRAITS_PARENT(type) ParamTraits<type>::Read(m, iter, p) &&
36 Read(const Message* m, PickleIterator* iter, param_type* p) { \
H A Dipc_message_utils_unittest.cc31 // Read back the nested message.
34 ASSERT_TRUE(ParamTraits<Message>::Read(&outer_msg, &iter, &result_msg));
45 ASSERT_TRUE(ParamTraits<int>::Read(&nested_msg, &nested_iter,
51 ASSERT_FALSE(ParamTraits<Message>::Read(&outer_msg, &iter, &dummy));
52 ASSERT_FALSE(ParamTraits<int>::Read(&nested_msg, &nested_iter,
69 ASSERT_TRUE(ParamTraits<base::FilePath>::Read(&message, &iter, &ok_path));
70 ASSERT_FALSE(ParamTraits<base::FilePath>::Read(&message, &iter, &bad_path));
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Dfile_input_stream.h36 virtual int32_t Read();
37 virtual int32_t Read(ByteVector* b);
38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
H A Dinput_stream.h34 virtual int32_t Read() = 0;
35 virtual int32_t Read(ByteVector* b) = 0;
36 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length) = 0;
H A Dmemory_input_stream.h36 virtual int32_t Read();
37 virtual int32_t Read(ByteVector* b);
38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
/external/sfntly/cpp/src/sfntly/port/
H A Dfile_input_stream.h36 virtual int32_t Read();
37 virtual int32_t Read(ByteVector* b);
38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
H A Dinput_stream.h34 virtual int32_t Read() = 0;
35 virtual int32_t Read(ByteVector* b) = 0;
36 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length) = 0;
H A Dmemory_input_stream.h36 virtual int32_t Read();
37 virtual int32_t Read(ByteVector* b);
38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
/external/chromium_org/content/common/input/
H A Dinput_param_traits.h22 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
30 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
/external/chromium_org/ppapi/proxy/
H A Dppapi_param_traits.cc43 // This part is just a copy of the the default ParamTraits vector Read().
83 bool ParamTraits<PP_Bool>::Read(const Message* m, function in class:IPC::ParamTraits
90 if (!ParamTraits<bool>::Read(m, iter, &result))
110 bool ParamTraits<PP_NetAddress_Private>::Read(const Message* m, function in class:IPC::ParamTraits
145 bool ParamTraits<ppapi::HostResource>::Read(const Message* m, function in class:IPC::ParamTraits
150 if (!ParamTraits<PP_Instance>::Read(m, iter, &instance) ||
151 !ParamTraits<PP_Resource>::Read(m, iter, &resource))
171 bool ParamTraits<ppapi::proxy::SerializedVar>::Read(const Message* m, function in class:IPC::ParamTraits
191 bool ParamTraits< std::vector<ppapi::proxy::SerializedVar> >::Read( function in class:IPC::ParamTraits
212 bool ParamTraits<ppapi::PpapiPermissions>::Read(cons function in class:IPC::ParamTraits
248 bool ParamTraits<ppapi::proxy::SerializedHandle>::Read(const Message* m, function in class:IPC::ParamTraits
306 bool ParamTraits<ppapi::proxy::PPBURLLoader_UpdateProgress_Params>::Read( function in class:IPC::ParamTraits
352 bool ParamTraits<ppapi::proxy::PPBFlash_DrawGlyphs_Params>::Read( function in class:IPC::ParamTraits
395 bool ParamTraits<ppapi::proxy::SerializedDirEntry>::Read(const Message* m, function in class:IPC::ParamTraits
424 bool ParamTraits<ppapi::proxy::SerializedFontDescription>::Read( function in class:IPC::ParamTraits
461 bool ParamTraits<ppapi::proxy::SerializedTrueTypeFontDesc>::Read( function in class:IPC::ParamTraits
492 bool ParamTraits<ppapi::PepperFilePath>::Read(const Message* m, function in class:IPC::ParamTraits
527 bool ParamTraits<ppapi::proxy::SerializedFlashMenu>::Read(const Message* m, function in class:IPC::ParamTraits
549 bool ParamTraits<ppapi::PPB_X509Certificate_Fields>::Read(const Message* m, function in class:IPC::ParamTraits
596 bool ParamTraits<ppapi::SocketOptionData>::Read(const Message* m, function in class:IPC::ParamTraits
647 bool ParamTraits<ppapi::CompositorLayerData::Transform>::Read( function in class:IPC::ParamTraits
[all...]

Completed in 1209 milliseconds

1234567891011>>