Searched refs:Read (Results 1 - 25 of 342) 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/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/libxml2/python/tests/
H A Dreader8.py20 ret = reader.Read()
21 ret = reader.Read()
H A Dreader3.py29 ret = reader.Read()
34 ret = reader.Read()
41 ret = reader.Read()
48 ret = reader.Read()
55 ret = reader.Read()
67 ret = reader.Read()
72 ret = reader.Read()
79 ret = reader.Read()
86 ret = reader.Read()
93 ret = reader.Read()
[all...]
H A Dreader7.py40 ret = reader.Read()
43 ret = reader.Read()
76 ret = reader.Read()
79 ret = reader.Read()
H A Dwalker.py41 ret = reader.Read()
44 ret = reader.Read()
81 ret = reader.Read()
84 ret = reader.Read()
119 ret = reader.Read()
122 ret = reader.Read()
H A Dreadernext.py21 ret = reader.Read()
29 ret = reader.Read()
37 ret = reader.Read()
45 ret = reader.Read()
68 ret = reader.Read()
H A Dreader6.py53 ret = reader.Read()
55 ret = reader.Read()
96 ret = reader.Read()
98 ret = reader.Read()
H A Dreader.py21 ret = reader.Read()
29 ret = reader.Read()
37 ret = reader.Read()
45 ret = reader.Read()
54 ret = reader.Read()
62 ret = reader.Read()
70 ret = reader.Read()
82 ret = reader.Read()
104 ret = reader.Read()
111 ret = reader.Read()
[all...]
/external/google-breakpad/src/common/linux/
H A Delf_symbols_to_module.cc93 // Read the symbol at cursor_, and set symbol_ appropriately.
100 .Read(4, false, &symbol_.name_offset)
101 .Read(4, false, &symbol_.value)
102 .Read(4, false, &symbol_.size)
103 .Read(1, false, &symbol_.info)
104 .Read(1, false, &other)
105 .Read(2, false, &symbol_.shndx);
109 .Read(4, false, &symbol_.name_offset)
110 .Read(1, false, &symbol_.info)
111 .Read(
[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/google-breakpad/src/common/
H A Dbyte_cursor_unittest.cc132 EXPECT_TRUE(cursor.Read(stars, 3));
164 .Read(1, true, &a)
165 .Read(1, true, &b)
166 .Read(1, true, &c)
167 .Read(1, true, &d));
173 EXPECT_FALSE(cursor.Read(1, true, &e));
184 .Read(2, true, &a)
185 .Read(2, true, &b)
186 .Read(2, true, &c)
187 .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/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/libvpx/libvpx/third_party/libwebm/
H A Dmkvreader.hpp26 virtual int Read(long long position, long length, unsigned char* buffer);
/external/lzma/CPP/7zip/Archive/Common/
H A DInStreamWithCRC.cpp7 STDMETHODIMP CSequentialInStreamWithCRC::Read(void *data, UInt32 size, UInt32 *processedSize) function in class:CSequentialInStreamWithCRC
10 HRESULT result = _stream->Read(data, size, &realProcessedSize);
20 STDMETHODIMP CInStreamWithCRC::Read(void *data, UInt32 size, UInt32 *processedSize) function in class:CInStreamWithCRC
23 HRESULT result = _stream->Read(data, size, &realProcessedSize);
/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
81 FstClass *FstClass::Read(istream &istr, const string &source) { function in class:fst::script::FstClass
89 MutableFstClass *MutableFstClass::Read(const string &fname, bool convert) { function in class:fst::script::MutableFstClass
98 FstClass *ifst = FstClass::Read(fname);
135 VectorFstClass *VectorFstClass::Read(const string &fname) { function in class:fst::script::VectorFstClass
/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.cc56 MutableFstClass *fst1 = MutableFstClass::Read(in1_name, true);
59 FstClass *fst2 = FstClass::Read(in2_name);

Completed in 1821 milliseconds

1234567891011>>