Lines Matching full:read
24 /// Provides read only access to a subclass of `BinaryStream`. Provides
43 /// Read as much as possible from the underlying string at the current offset
45 /// Updates the stream's offset to point after the newly read data.
47 /// \returns a success error code if the data was successfully read, otherwise
51 /// Read \p Size bytes from the underlying stream at the current offset and
54 /// stream's offset to point after the newly read data.
56 /// \returns a success error code if the data was successfully read, otherwise
60 /// Read an integer of the specified endianness into \p Dest and update the
63 /// read data.
65 /// \returns a success error code if the data was successfully read, otherwise
75 Dest = llvm::support::endian::read<T>(Bytes.data(), Stream.getEndian()); in readInteger()
90 /// Read an unsigned LEB128 encoded value.
92 /// \returns a success error code if the data was successfully read, otherwise
96 /// Read a signed LEB128 encoded value.
98 /// \returns a success error code if the data was successfully read, otherwise
102 /// Read a null terminated string from \p Dest. Whether a copy occurs depends
104 /// offset to point after the newly read data.
106 /// \returns a success error code if the data was successfully read, otherwise
110 /// Similar to readCString, however read a null-terminated UTF16 string
113 /// \returns a success error code if the data was successfully read, otherwise
117 /// Read a \p Length byte string into \p Dest. Whether a copy occurs depends
119 /// offset to point after the newly read data.
121 /// \returns a success error code if the data was successfully read, otherwise
125 /// Read the entire remainder of the underlying stream into \p Ref. This is
129 /// \returns a success error code if the data was successfully read, otherwise
133 /// Read \p Length bytes from the underlying stream into \p Ref. This is
135 /// Updates the stream's offset to point after the newly read object. Never
138 /// \returns a success error code if the data was successfully read, otherwise
142 /// Read \p Length bytes from the underlying stream into \p Ref. This is
144 /// Updates the stream's offset to point after the newly read object. Never
147 /// \returns a success error code if the data was successfully read, otherwise
154 /// Updates the stream's offset to point after the newly read object. Whether
158 /// \returns a success error code if the data was successfully read, otherwise
172 /// to point after the newly read object. Whether a copy occurs depends upon
175 /// \returns a success error code if the data was successfully read, otherwise
199 /// Read a VarStreamArray of size \p Size bytes and store the result into
200 /// \p Array. Updates the stream's offset to point after the newly read
205 /// \returns a success error code if the data was successfully read, otherwise
217 /// Read a FixedStreamArray of \p NumItems elements and store the result into
218 /// \p Array. Updates the stream's offset to point after the newly read
223 /// \returns a success error code if the data was successfully read, otherwise