Searched defs:Vector (Results 1 - 3 of 3) sorted by relevance

/art/compiler/debug/dwarf/
H A Ddebug_frame_opcode_writer.h34 template<typename Vector = std::vector<uint8_t> >
35 class DebugFrameOpCodeWriter : private Writer<Vector> {
36 static_assert(std::is_same<typename Vector::value_type, uint8_t>::value, "Invalid value type");
298 using Writer<Vector>::data;
301 const typename Vector::allocator_type& alloc =
302 typename Vector::allocator_type())
303 : Writer<Vector>(&opcodes_),
329 Vector opcodes_;
300 DebugFrameOpCodeWriter(bool enabled = true, const typename Vector::allocator_type& alloc = typename Vector::allocator_type()) argument
H A Ddebug_info_entry_writer.h44 template <typename Vector = std::vector<uint8_t>>
45 class DebugInfoEntryWriter FINAL : private Writer<Vector> {
46 static_assert(std::is_same<typename Vector::value_type, uint8_t>::value, "Invalid value type");
196 using Writer<Vector>::data;
197 using Writer<Vector>::size;
198 using Writer<Vector>::UpdateUint32;
201 DebugAbbrevWriter<Vector>* debug_abbrev,
202 const typename Vector::allocator_type& alloc =
203 typename Vector::allocator_type())
204 : Writer<Vector>(
200 DebugInfoEntryWriter(bool is64bitArch, DebugAbbrevWriter<Vector>* debug_abbrev, const typename Vector::allocator_type& alloc = typename Vector::allocator_type()) argument
[all...]
H A Ddebug_line_opcode_writer.h33 template<typename Vector = std::vector<uint8_t>>
34 class DebugLineOpCodeWriter FINAL : private Writer<Vector> {
35 static_assert(std::is_same<typename Vector::value_type, uint8_t>::value, "Invalid value type");
221 using Writer<Vector>::data;
225 const typename Vector::allocator_type& alloc =
226 typename Vector::allocator_type())
227 : Writer<Vector>(&opcodes_),
245 Vector opcodes_;
223 DebugLineOpCodeWriter(bool use64bitAddress, int codeFactorBits, const typename Vector::allocator_type& alloc = typename Vector::allocator_type()) argument

Completed in 26 milliseconds