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

1 2 3 4 5 6 7 8 91011>>

  /external/skia/include/xml/
SkBML_XMLParser.h 20 /** 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/
font_input_stream.cc 67 int32_t FontInputStream::Read() {
71 int32_t b = stream_->Read();
78 int32_t FontInputStream::Read(ByteVector* b, int32_t offset, int32_t length) {
86 int32_t bytes_read = stream_->Read(b, offset, bytes_to_read);
91 int32_t FontInputStream::Read(ByteVector* b) {
92 return Read(b, 0, b->size());
96 return Read();
100 return 0xffff & (Read() << 8 | Read());
104 return ((Read() << 8 | Read()) << 16) >> 16
    [all...]
font_input_stream.h 57 // @param length the maximum length of bytes to read
69 virtual int32_t Read();
70 virtual int32_t Read(ByteVector* buffer);
71 virtual int32_t Read(ByteVector* buffer, int32_t offset, int32_t length);
91 int64_t length_; // Bound on length of data to read.
  /external/lzma/CPP/7zip/Common/
LockedStream.cpp 7 HRESULT CLockedInStream::Read(UInt64 startPos, void *data, UInt32 size,
12 return _stream->Read(data, size, processedSize);
15 STDMETHODIMP CLockedSequentialInStreamImp::Read(void *data, UInt32 size, UInt32 *processedSize)
18 HRESULT result = _lockedInStream->Read(_pos, data, size, &realProcessedSize);
LockedStream.h 17 HRESULT Read(UInt64 startPos, void *data, UInt32 size, UInt32 *processedSize);
35 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
  /system/tpm/tpm_manager/server/
local_data_store.h 24 // LocalDataStore is an interface class that provides access to read and write
34 virtual bool Read(LocalData* data) = 0;
mock_local_data_store.h 31 MOCK_METHOD1(Read, bool(LocalData*));
  /external/libxml2/python/tests/
reader3.py 29 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...]
reader7.py 40 ret = reader.Read()
43 ret = reader.Read()
76 ret = reader.Read()
79 ret = reader.Read()
reader8.py 20 ret = reader.Read()
21 ret = reader.Read()
walker.py 41 ret = reader.Read()
44 ret = reader.Read()
81 ret = reader.Read()
84 ret = reader.Read()
119 ret = reader.Read()
122 ret = reader.Read()
  /external/bsdiff/
extents_file_unittest.cc 27 MOCK_METHOD3(Read, bool(void*, size_t, size_t*));
93 // We use a failing Read() call to trigger the actual seek call to the
96 EXPECT_CALL(*mock_file_, Read(_, _, _)).WillOnce(Return(false));
100 EXPECT_FALSE(file.Read(nullptr, 1, &bytes_read));
117 EXPECT_CALL(*mock_file_, Read(buf, 5, _)).WillOnce(SucceedIO());
119 EXPECT_CALL(*mock_file_, Read(buf + 5, 7, _)).WillOnce(SucceedIO());
121 EXPECT_CALL(*mock_file_, Read(buf + 12, 3, _)).WillOnce(SucceedIO());
123 // FileExtents::Read() should read everything in one shot, by reading all
124 // the little chunks. Note that it doesn't attempt to read past the end of th
    [all...]
  /external/google-breakpad/src/common/linux/
elf_symbols_to_module.cc 93 // 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(1, false, &other
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.h 36 virtual int32_t Read();
37 virtual int32_t Read(ByteVector* b);
38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
input_stream.h 34 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;
memory_input_stream.h 36 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/webrtc/webrtc/modules/audio_coding/neteq/tools/
resample_input_audio_file.cc 19 bool ResampleInputAudioFile::Read(size_t samples,
26 if (!InputAudioFile::Read(samples_to_read, temp_destination.get()))
37 bool ResampleInputAudioFile::Read(size_t samples, int16_t* destination) {
39 return Read(samples, output_rate_hz_, destination);
resample_input_audio_file.h 38 bool Read(size_t samples, int output_rate_hz, int16_t* destination);
39 bool Read(size_t samples, int16_t* destination) override;
  /external/lzma/CPP/7zip/Archive/7z/
7zSpecStream.cpp 7 STDMETHODIMP CSequentialInStreamSizeCount2::Read(void *data, UInt32 size, UInt32 *processedSize)
10 HRESULT result = _stream->Read(data, size, &realProcessedSize);
  /external/google-breakpad/src/common/
byte_cursor_unittest.cc 132 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(2, true, &d
    [all...]
  /external/sfntly/cpp/src/test/
memory_io_test.cc 45 // 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
file_io_test.cc 50 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(&b2, 0, 100)
    [all...]
  /external/ImageMagick/PerlMagick/demo/
button.pl 9 $q->Read('gradient:#00f685-#0083f8');
  /art/runtime/base/unix_file/
random_access_file.h 28 // This interface does not support a stream position (i.e. every read or write
44 // file. Returns the number of bytes actually read.
45 virtual int64_t Read(char* buf, int64_t byte_count, int64_t offset) const = 0;
random_access_file_utils.cc 25 // don't know how long they are. We just read until there's nothing left.
29 while ((n = src.Read(&buf[0], buf.size(), offset)) > 0) {

Completed in 566 milliseconds

1 2 3 4 5 6 7 8 91011>>