/external/google-breakpad/src/common/ |
D | byte_cursor_unittest.cc | 132 EXPECT_TRUE(cursor.Read(stars, 3)); in TEST() 164 .Read(1, true, &a) in TEST() 165 .Read(1, true, &b) in TEST() 166 .Read(1, true, &c) in TEST() 167 .Read(1, true, &d)); in TEST() 173 EXPECT_FALSE(cursor.Read(1, true, &e)); in TEST() 184 .Read(2, true, &a) in TEST() 185 .Read(2, true, &b) in TEST() 186 .Read(2, true, &c) in TEST() 187 .Read(2, true, &d) in TEST() [all …]
|
/external/sfntly/cpp/src/sfntly/data/ |
D | font_input_stream.cc | 67 int32_t FontInputStream::Read() { in Read() function in sfntly::FontInputStream 71 int32_t b = stream_->Read(); in Read() 78 int32_t FontInputStream::Read(ByteVector* b, int32_t offset, int32_t length) { in Read() function in sfntly::FontInputStream 86 int32_t bytes_read = stream_->Read(b, offset, bytes_to_read); in Read() 91 int32_t FontInputStream::Read(ByteVector* b) { in Read() function in sfntly::FontInputStream 92 return Read(b, 0, b->size()); in Read() 96 return Read(); in ReadChar() 100 return 0xffff & (Read() << 8 | Read()); in ReadUShort() 104 return ((Read() << 8 | Read()) << 16) >> 16; in ReadShort() 108 return 0xffffff & (Read() << 16 | Read() << 8 | Read()); in ReadUInt24() [all …]
|
/external/google-breakpad/src/common/linux/ |
D | elf_symbols_to_module.cc | 100 .Read(4, false, &symbol_.name_offset) in Fetch() 101 .Read(4, false, &symbol_.value) in Fetch() 102 .Read(4, false, &symbol_.size) in Fetch() 103 .Read(1, false, &symbol_.info) in Fetch() 104 .Read(1, false, &other) in Fetch() 105 .Read(2, false, &symbol_.shndx); in Fetch() 109 .Read(4, false, &symbol_.name_offset) in Fetch() 110 .Read(1, false, &symbol_.info) in Fetch() 111 .Read(1, false, &other) in Fetch() 112 .Read(2, false, &symbol_.shndx) in Fetch() [all …]
|
/external/libxml2/python/tests/ |
D | 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 …]
|
D | reader.py | 21 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 …]
|
D | 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()
|
D | readernext.py | 21 ret = reader.Read() 29 ret = reader.Read() 37 ret = reader.Read() 45 ret = reader.Read() 68 ret = reader.Read()
|
D | reader7.py | 40 ret = reader.Read() 43 ret = reader.Read() 76 ret = reader.Read() 79 ret = reader.Read()
|
D | reader2.py | 47 ret = reader.Read() 49 ret = reader.Read() 97 while reader.Read() == 1: 147 while reader.Read() == 1: 201 while reader.Read() == 1: 243 while reader.Read() == 1:
|
D | reader6.py | 53 ret = reader.Read() 55 ret = reader.Read() 96 ret = reader.Read() 98 ret = reader.Read()
|
/external/zlib/src/contrib/ada/ |
D | read.adb | 19 procedure Read is subprogram 64 procedure Read argument 71 procedure Read is new ZLib.Read subprogram 72 (Read, 81 procedure Read argument 98 end Read; 139 Read (Filter, Buffer, Last); 156 end Read;
|
D | zlib-streams.adb | 130 procedure Read subprogram 136 procedure Read argument 144 procedure Read argument 148 Ada.Streams.Read (Stream.Back.all, Item, Last); 149 end Read; 151 procedure Read is new ZLib.Read argument 152 (Read => Read, 158 Read (Stream.Reader, Item, Last); 159 end Read;
|
/external/sfntly/cpp/src/test/ |
D | file_io_test.cc | 50 is.Read(&b2, 0, length); in TestFileInputStream() 58 is.Read(&b2, 0, 100); in TestFileInputStream() 64 is.Read(&b2, 0, 100); in TestFileInputStream() 68 is.Read(&b2, 0, 100); in TestFileInputStream() 74 is.Read(&b2, 0, 100); in TestFileInputStream() 75 is.Read(&b2, 100, 100); in TestFileInputStream() 112 font_is1.Read(&b2, 0, length); in TestFontInputStreamBasic() 120 font_is2.Read(&b2, 0, 100); in TestFontInputStreamBasic() 122 font_is2.Read(&b2, 100, 100); in TestFontInputStreamBasic() 126 font_is2.Read(&b2, 0, 100); in TestFontInputStreamBasic() [all …]
|
D | memory_io_test.cc | 46 EXPECT_EQ(is.Read(), '0'); // position 1 in TestMemoryInputStream() 47 EXPECT_EQ(is.Read(), '1'); // position 2 in TestMemoryInputStream() 48 EXPECT_EQ(is.Read(), '2'); // position 3 in TestMemoryInputStream() 53 EXPECT_EQ(is.Read(&b), 7); // position 10 in TestMemoryInputStream() 57 EXPECT_EQ(is.Read(&b, 7, 10), 10); // position 20 in TestMemoryInputStream() 64 EXPECT_EQ(is.Read(&b), 10); // position 60 in TestMemoryInputStream() 69 EXPECT_EQ(is.Read(&b), 10); // position 50 in TestMemoryInputStream()
|
/external/lzma/C/ |
D | 7zStream.c | 13 RINOK(stream->Read(stream, buf, &processed)); in SeqInStream_Read2() 30 RINOK(stream->Read(stream, buf, &processed)); in SeqInStream_ReadByte() 55 RINOK(stream->Read(stream, buf, &processed)); in LookInStream_Read2() 78 res = p->realStream->Read(p->realStream, p->buf, &size2); in LookToRead_Look_Lookahead() 97 res = p->realStream->Read(p->realStream, p->buf, size); in LookToRead_Look_Exact() 118 return p->realStream->Read(p->realStream, buf, size); in LookToRead_Read() 140 p->s.Read = LookToRead_Read; in LookToRead_CreateVTable() 157 p->s.Read = SecToLook_Read; in SecToLook_CreateVTable() 163 return p->realStream->Read(p->realStream, buf, size); in SecToRead_Read() 168 p->s.Read = SecToRead_Read; in SecToRead_CreateVTable()
|
/external/openfst/src/include/fst/ |
D | expanded-fst.h | 46 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) { in Read() function 52 if (!hdr.Read(strm, opts.source)) in Read() 76 static ExpandedFst<A> *Read(const string &filename) { in Read() function 83 return Read(strm, FstReadOptions(filename)); in Read() 85 return Read(cin, FstReadOptions("standard input")); in Read() 148 static I *Read(const string &filename) { in Read() function 155 return I::Read(strm, FstReadOptions(filename)); in Read() 157 return I::Read(cin, FstReadOptions("standard input")); in Read()
|
/external/openfst/src/script/ |
D | fst-class.cc | 51 if (!hdr.Read(in, fname)) { in ReadFst() 72 FstClass *FstClass::Read(const string &fname) { in Read() function in fst::script::FstClass 81 FstClass *FstClass::Read(istream &istr, const string &source) { in Read() function in fst::script::FstClass 89 MutableFstClass *MutableFstClass::Read(const string &fname, bool convert) { in Read() function in fst::script::MutableFstClass 98 FstClass *ifst = FstClass::Read(fname); in Read() 135 VectorFstClass *VectorFstClass::Read(const string &fname) { in Read() function in fst::script::VectorFstClass
|
/external/lzma/CPP/7zip/Common/ |
D | LockedStream.cpp | 7 HRESULT CLockedInStream::Read(UInt64 startPos, void *data, UInt32 size, in Read() function in CLockedInStream 12 return _stream->Read(data, size, processedSize); in Read() 15 STDMETHODIMP CLockedSequentialInStreamImp::Read(void *data, UInt32 size, UInt32 *processedSize) in Read() function in CLockedSequentialInStreamImp 18 HRESULT result = _lockedInStream->Read(_pos, data, size, &realProcessedSize); in Read()
|
/external/google-breakpad/src/google_breakpad/processor/ |
D | minidump.h | 149 virtual bool Read(uint32_t expected_size) = 0; 174 bool Read(uint32_t expected_size); 302 bool Read(); 345 bool Read(uint32_t aExpectedSize); 424 bool Read(); 513 bool Read(uint32_t expected_size); 568 bool Read(uint32_t expected_size); 621 bool Read(uint32_t expected_size); 659 bool Read(uint32_t expected_size); 714 bool Read(uint32_t expected_size); [all …]
|
/external/lldb/tools/debugserver/source/MacOSX/ppc/ |
D | DNBArchImpl.cpp | 78 if (force || m_state.GetError(e_regSetGPR, Read)) in GetGPRState() 81 …m_state.SetError(e_regSetGPR, Read, ::thread_get_state(m_thread->MachPortNumber(), e_regSetGPR, (t… in GetGPRState() 83 return m_state.GetError(e_regSetGPR, Read); in GetGPRState() 89 if (force || m_state.GetError(e_regSetFPR, Read)) in GetFPRState() 92 …m_state.SetError(e_regSetFPR, Read, ::thread_get_state(m_thread->MachPortNumber(), e_regSetFPR, (t… in GetFPRState() 94 return m_state.GetError(e_regSetFPR, Read); in GetFPRState() 100 if (force || m_state.GetError(e_regSetEXC, Read)) in GetEXCState() 103 …m_state.SetError(e_regSetEXC, Read, ::thread_get_state(m_thread->MachPortNumber(), e_regSetEXC, (t… in GetEXCState() 105 return m_state.GetError(e_regSetEXC, Read); in GetEXCState() 111 if (force || m_state.GetError(e_regSetVEC, Read)) in GetVECState() [all …]
|
/external/lzma/CPP/7zip/Archive/Common/ |
D | InStreamWithCRC.cpp | 7 STDMETHODIMP CSequentialInStreamWithCRC::Read(void *data, UInt32 size, UInt32 *processedSize) in Read() function in CSequentialInStreamWithCRC 10 HRESULT result = _stream->Read(data, size, &realProcessedSize); in Read() 20 STDMETHODIMP CInStreamWithCRC::Read(void *data, UInt32 size, UInt32 *processedSize) in Read() function in CInStreamWithCRC 23 HRESULT result = _stream->Read(data, size, &realProcessedSize); in Read()
|
/external/skia/tests/ |
D | SerializationTest.cpp | 40 static void Read(SkValidatingReadBuffer& reader, T** flattenable) { in Read() function 49 static void Read(SkValidatingReadBuffer& reader, SkMatrix* matrix) { in Read() function 58 static void Read(SkValidatingReadBuffer& reader, SkPath* path) { in Read() function 67 static void Read(SkValidatingReadBuffer& reader, SkRegion* region) { in Read() function 76 static void Read(SkValidatingReadBuffer& reader, SkString* string) { in Read() function 85 static bool Read(SkValidatingReadBuffer& reader, unsigned char* data, uint32_t arraySize) { in Read() function 94 static bool Read(SkValidatingReadBuffer& reader, SkColor* data, uint32_t arraySize) { in Read() function 103 static bool Read(SkValidatingReadBuffer& reader, int32_t* data, uint32_t arraySize) { in Read() function 112 static bool Read(SkValidatingReadBuffer& reader, SkPoint* data, uint32_t arraySize) { in Read() function 121 static bool Read(SkValidatingReadBuffer& reader, SkScalar* data, uint32_t arraySize) { in Read() function [all …]
|
/external/ceres-solver/examples/ |
D | libmv_bundle_adjuster.cc | 285 unsigned char file_endian_type_flag = Read<unsigned char>(); in OpenFile() 298 T Read(void) const { in Read() function in __anona35448500111::EndianAwareFileReader 337 (*matrix)(i % 3, i / 3) = file_reader.Read<float>(); in ReadMatrix3x3() 345 (*vector)(i) = file_reader.Read<float>(); in ReadVector3() 378 unsigned char is_image_space_flag = file_reader.Read<unsigned char>(); in ReadProblemFromFile() 389 camera_intrinsics[i] = file_reader.Read<float>(); in ReadProblemFromFile() 393 int number_of_cameras = file_reader.Read<int>(); in ReadProblemFromFile() 397 camera.image = file_reader.Read<int>(); in ReadProblemFromFile() 413 int number_of_points = file_reader.Read<int>(); in ReadProblemFromFile() 417 point.track = file_reader.Read<int>(); in ReadProblemFromFile() [all …]
|
/external/openfst/src/include/fst/script/ |
D | fst-class.h | 152 static FstClass *Read(istream &stream, in Read() function 182 static FstClass *Read(const string &fname); 184 static FstClass *Read(istream &istr, const string &source); 254 UnderlyingT *u = UnderlyingT::Read(stream, opts); in ReadTypedFst() 293 static MutableFstClass *Read(istream &stream, in Read() function 295 MutableFst<Arc> *mfst = MutableFst<Arc>::Read(stream, opts); in Read() 313 static MutableFstClass *Read(const string &fname, bool convert = false); 353 static VectorFstClass *Read(istream &stream, in Read() function 355 VectorFst<Arc> *vfst = VectorFst<Arc>::Read(stream, opts); in Read() 365 static VectorFstClass *Read(const string &fname);
|
/external/sfntly/cpp/src/sfntly/port/ |
D | memory_input_stream.cc | 54 int32_t MemoryInputStream::Read() { in Read() function in sfntly::MemoryInputStream 71 int32_t MemoryInputStream::Read(ByteVector* b) { in Read() function in sfntly::MemoryInputStream 72 return Read(b, 0, b->size()); in Read() 75 int32_t MemoryInputStream::Read(ByteVector* b, int32_t offset, int32_t length) { in Read() function in sfntly::MemoryInputStream 135 Read(b, offset, length); in Unread()
|