|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
tools/lldb/include/lldb/Core/Disassembler.h 46 class AddressRange;
tools/lldb/include/lldb/lldb-forward.h 21 class AddressRange;
References
include/llvm/ADT/DenseMap.h 237 TheBucket = InsertIntoBucket(TheBucket, Key, std::forward<Ts>(Args)...);
516 ValueArgs &&... Values) {
520 ::new (&TheBucket->getSecond()) ValueT(std::forward<ValueArgs>(Values)...);
include/llvm/ADT/Optional.h 39 T value;
60 explicit OptionalStorage(in_place_t, Args &&... args)
61 : value(std::forward<Args>(args)...), hasVal(true) {}
72 T &getValue() LLVM_LVALUE_FUNCTION noexcept {
76 T const &getValue() const LLVM_LVALUE_FUNCTION noexcept {
81 T &&getValue() && noexcept {
87 template <class... Args> void emplace(Args &&... args) {
89 ::new ((void *)std::addressof(value)) T(std::forward<Args>(args)...);
89 ::new ((void *)std::addressof(value)) T(std::forward<Args>(args)...);
216 optional_detail::OptionalStorage<T> Storage;
219 using value_type = T;
224 Optional(const T &y) : Storage(optional_detail::in_place_t{}, y) {}
227 Optional(T &&y) : Storage(optional_detail::in_place_t{}, std::move(y)) {}
230 Optional &operator=(T &&y) {
241 static inline Optional create(const T *y) {
245 Optional &operator=(const T &y) {
253 const T *getPointer() const { return &Storage.getValue(); }
254 T *getPointer() { return &Storage.getValue(); }
255 const T &getValue() const LLVM_LVALUE_FUNCTION { return Storage.getValue(); }
256 T &getValue() LLVM_LVALUE_FUNCTION { return Storage.getValue(); }
260 const T *operator->() const { return getPointer(); }
261 T *operator->() { return getPointer(); }
262 const T &operator*() const LLVM_LVALUE_FUNCTION { return getValue(); }
263 T &operator*() LLVM_LVALUE_FUNCTION { return getValue(); }
266 constexpr T getValueOr(U &&value) const LLVM_LVALUE_FUNCTION {
271 T &&getValue() && { return std::move(Storage.getValue()); }
272 T &&operator*() && { return std::move(Storage.getValue()); }
275 T getValueOr(U &&value) && {
include/llvm/Support/type_traits.h 91 T t;
122 static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
122 static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
122 static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
130 static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
130 static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
130 static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
145 std::is_copy_constructible<detail::trivial_helper<T>>::value;
147 !std::is_copy_constructible<T>::value;
151 std::is_move_constructible<detail::trivial_helper<T>>::value;
153 !std::is_move_constructible<T>::value;
157 is_copy_assignable<detail::trivial_helper<T>>::value;
159 !is_copy_assignable<T>::value;
163 is_move_assignable<detail::trivial_helper<T>>::value;
165 !is_move_assignable<T>::value;
169 std::is_destructible<detail::trivial_helper<T>>::value;
tools/lldb/include/lldb/Core/Address.h 356 lldb_private::AddressRange *addr_range_ptr = nullptr);
tools/lldb/include/lldb/Core/AddressRange.h 171 bool Extend(const AddressRange &rhs_range);
234 return sizeof(AddressRange);
tools/lldb/include/lldb/Core/AddressResolver.h 48 std::vector<AddressRange> &GetAddressRanges();
52 AddressRange &GetAddressRangeAtIndex(size_t idx);
55 std::vector<AddressRange> m_address_ranges;
tools/lldb/include/lldb/Core/Disassembler.h 384 const AddressRange &disasm_range, bool prefer_file_cache);
395 const AddressRange &range, uint32_t num_instructions,
445 const AddressRange &range, Stream *error_strm_ptr,
tools/lldb/include/lldb/Symbol/Block.h 365 bool GetRangeContainingAddress(const Address &addr, AddressRange &range);
368 AddressRange &range);
374 bool GetRangeAtIndex(uint32_t range_idx, AddressRange &range);
tools/lldb/include/lldb/Symbol/CallFrameInfo.h 20 virtual bool GetAddressRange(Address addr, AddressRange &range) = 0;
23 virtual bool GetUnwindPlan(const AddressRange &range, UnwindPlan &unwind_plan) = 0;
tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h 44 bool GetAddressRange(Address addr, AddressRange &range);
54 bool GetUnwindPlan(const AddressRange &range, UnwindPlan &unwind_plan);
125 GetFirstFDEEntryInRange(const AddressRange &range);
tools/lldb/include/lldb/Symbol/FuncUnwinders.h 34 FuncUnwinders(lldb_private::UnwindTable &unwind_table, AddressRange range);
116 AddressRange m_range;
tools/lldb/include/lldb/Symbol/Function.h 373 Type *func_type, const AddressRange &range);
389 const AddressRange &GetAddressRange() { return m_range; }
582 AddressRange m_range; ///< The function address range that covers the widest
tools/lldb/include/lldb/Symbol/LineEntry.h 139 AddressRange
150 AddressRange range; ///< The section offset address range for this line entry.
tools/lldb/include/lldb/Symbol/Symbol.h 35 const AddressRange &range, bool size_is_valid,
259 AddressRange m_addr_range; // Contains the value, or the section offset
tools/lldb/include/lldb/Symbol/SymbolContext.h 198 bool use_inline_block_range, AddressRange &range) const;
200 bool GetAddressRangeFromHereToEndLine(uint32_t end_line, AddressRange &range,
383 std::unique_ptr<AddressRange> m_address_range_up;
tools/lldb/include/lldb/Symbol/UnwindPlan.h 439 void SetPlanValidAddressRange(const AddressRange &range);
441 const AddressRange &GetAddressRange() const {
520 AddressRange m_plan_valid_address_range;
tools/lldb/include/lldb/Symbol/UnwindTable.h 63 llvm::Optional<AddressRange> GetAddressRange(const Address &addr,
tools/lldb/include/lldb/Target/Process.h 2359 AddressRange range_bounds);
tools/lldb/include/lldb/Target/Thread.h 661 bool abort_other_plans, const AddressRange &range,
723 bool abort_other_plans, const AddressRange &range,
tools/lldb/include/lldb/Target/ThreadPlanStepInRange.h 23 ThreadPlanStepInRange(Thread &thread, const AddressRange &range,
29 ThreadPlanStepInRange(Thread &thread, const AddressRange &range,
76 bool abort_other_plans, const AddressRange &range,
80 bool abort_other_plans, const AddressRange &range,
tools/lldb/include/lldb/Target/ThreadPlanStepOverRange.h 22 ThreadPlanStepOverRange(Thread &thread, const AddressRange &range,
tools/lldb/include/lldb/Target/ThreadPlanStepRange.h 23 const AddressRange &range,
41 void AddRange(const AddressRange &new_range);
66 std::vector<AddressRange> m_address_ranges;
tools/lldb/include/lldb/Target/UnwindAssembly.h 26 GetNonCallSiteUnwindPlanFromAssembly(AddressRange &func, Thread &thread,
29 virtual bool AugmentUnwindPlanFromCallSite(AddressRange &func, Thread &thread,
32 virtual bool GetFastUnwindPlan(AddressRange &func, Thread &thread,
38 FirstNonPrologueInsn(AddressRange &func,
tools/lldb/source/API/SBBlock.cpp 212 AddressRange range;
226 AddressRange range;
tools/lldb/source/API/SBSymbol.cpp 141 AddressRange symbol_range(symbol_addr, m_opaque_ptr->GetByteSize());
tools/lldb/source/API/SBThread.cpp 668 AddressRange range;
908 AddressRange fun_range = frame_sc.function->GetAddressRange();
tools/lldb/source/API/SBThreadPlan.cpp 229 AddressRange range(*start_address, size);
273 AddressRange range(*start_address, size);
tools/lldb/source/Commands/CommandObjectDisassemble.cpp 305 std::vector<AddressRange> ranges;
306 AddressRange range;
454 for (AddressRange cur_range : ranges) {
499 for (AddressRange cur_range : ranges) {
tools/lldb/source/Commands/CommandObjectSource.cpp 430 AddressRange range;
tools/lldb/source/Commands/CommandObjectTarget.cpp 1583 AddressRange range;
3387 AddressRange range;
tools/lldb/source/Commands/CommandObjectThread.cpp 645 AddressRange range;
665 AddressRange block_range;
1182 AddressRange fun_addr_range = sc.function->GetAddressRange();
tools/lldb/source/Core/Address.cpp 266 AddressRange *addr_range_ptr) {
tools/lldb/source/Core/AddressRange.cpp 125 bool AddressRange::Extend(const AddressRange &rhs_range) {
tools/lldb/source/Core/AddressResolver.cpp 33 std::vector<AddressRange> &AddressResolver::GetAddressRanges() {
41 AddressRange &AddressResolver::GetAddressRangeAtIndex(size_t idx) {
tools/lldb/source/Core/AddressResolverFileLine.cpp 57 AddressRange new_range(line_start, byte_size);
tools/lldb/source/Core/AddressResolverName.cpp 155 AddressRange new_range(func_addr, byte_size);
178 AddressRange new_range(func_addr, byte_size);
tools/lldb/source/Core/Disassembler.cpp 140 AddressRange range;
194 const ExecutionContext &exe_ctx, const AddressRange &range,
241 const AddressRange &disasm_range,
255 AddressRange range;
400 AddressRange current_source_line_range;
660 AddressRange range;
1179 const AddressRange &range,
tools/lldb/source/Core/FormatEntity.cpp 464 AddressRange inline_range;
tools/lldb/source/Core/IOHandler.cpp 4447 AddressRange m_disassembly_range;
tools/lldb/source/Core/Module.cpp 542 AddressRange addr_range;
tools/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.cpp 172 AddressRange range(addr, i * 2);
tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp 1391 AddressRange range;
tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp 439 AddressRange range;
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp 855 AddressRange addr_range;
910 AddressRange addr_range;
tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp 481 AddressRange range;
tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp 192 AddressRange range(pc, 2 * 15);
tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp 240 AddressRange range;
323 AddressRange range_of_curr_func;
tools/lldb/source/Plugins/ObjectFile/PECOFF/PECallFrameInfo.cpp 444 bool PECallFrameInfo::GetAddressRange(Address addr, AddressRange &range) {
465 bool PECallFrameInfo::GetUnwindPlan(const AddressRange &range,
509 const AddressRange &range) const {
tools/lldb/source/Plugins/ObjectFile/PECOFF/PECallFrameInfo.h 32 lldb_private::AddressRange &range) override;
36 bool GetUnwindPlan(const lldb_private::AddressRange &range,
41 const lldb_private::AddressRange &range) const;
tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp 79 AddressRange mmap_range;
160 AddressRange munmap_range;
tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp 155 AddressRange addr_range;
431 AddressRange addr_range;
1773 AddressRange addr_range;
tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp 124 const AddressRange *addr_range_ptr = nullptr;
125 AddressRange range;
215 const AddressRange *addr_range_ptr = nullptr;
216 AddressRange range;
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp 2362 AddressRange func_range;
tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp 399 AddressRange func_range(file_vm_addr, sol.length,
tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp 283 AddressRange func_range =
1000 AddressRange range;
tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp 170 AddressRange func_range(curr_symbol->GetAddress(), 0);
tools/lldb/source/Plugins/SystemRuntime/MacOSX/SystemRuntimeMacOSX.cpp 587 AddressRange addr_range;
601 AddressRange addr_range;
615 AddressRange addr_range;
629 AddressRange addr_range;
tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp 34 AddressRange &range, Thread &thread, UnwindPlan &unwind_plan) {
51 AddressRange &range, uint8_t *opcode_data, size_t opcode_size,
279 AddressRange &func, Thread &thread, UnwindPlan &unwind_plan) {
283 bool UnwindAssemblyInstEmulation::GetFastUnwindPlan(AddressRange &func,
290 AddressRange &func, const ExecutionContext &exe_ctx,
tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.h 23 lldb_private::AddressRange &func, lldb_private::Thread &thread,
27 GetNonCallSiteUnwindPlanFromAssembly(lldb_private::AddressRange &func,
32 AugmentUnwindPlanFromCallSite(lldb_private::AddressRange &func,
36 bool GetFastUnwindPlan(lldb_private::AddressRange &func,
43 FirstNonPrologueInsn(lldb_private::AddressRange &func,
130 lldb_private::AddressRange *m_range_ptr;
tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp 44 AddressRange &func, Thread &thread, UnwindPlan &unwind_plan) {
67 AddressRange &func, Thread &thread, UnwindPlan &unwind_plan) {
170 bool UnwindAssembly_x86::GetFastUnwindPlan(AddressRange &func, Thread &thread,
208 AddressRange &func, const ExecutionContext &exe_ctx,
tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.h 22 lldb_private::AddressRange &func, lldb_private::Thread &thread,
26 AugmentUnwindPlanFromCallSite(lldb_private::AddressRange &func,
30 bool GetFastUnwindPlan(lldb_private::AddressRange &func,
37 FirstNonPrologueInsn(lldb_private::AddressRange &func,
tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp 816 const AddressRange &func_range,
843 const AddressRange &func_range,
916 uint8_t *data, size_t size, AddressRange &func_range,
1337 uint8_t *data, size_t size, AddressRange &func_range,
tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.h 68 lldb_private::AddressRange &func_range,
85 lldb_private::AddressRange &func_range,
120 const lldb_private::AddressRange &func_range,
123 const lldb_private::AddressRange &func_range,
tools/lldb/source/Symbol/Block.cpp 240 AddressRange &range) {
243 const AddressRange &func_range = function->GetAddressRange();
268 Target &target, AddressRange &range) {
271 AddressRange containing_range;
278 const AddressRange &func_range = function->GetAddressRange();
292 bool Block::GetRangeAtIndex(uint32_t range_idx, AddressRange &range) {
tools/lldb/source/Symbol/CompactUnwindInfo.cpp 204 AddressRange func_range(func_range_start_file_addr,
tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp 155 bool DWARFCallFrameInfo::GetUnwindPlan(const AddressRange &range,
172 bool DWARFCallFrameInfo::GetAddressRange(Address addr, AddressRange &range) {
195 DWARFCallFrameInfo::GetFirstFDEEntryInRange(const AddressRange &range) {
583 AddressRange range(range_base, m_objfile.GetAddressByteSize(),
tools/lldb/source/Symbol/FuncUnwinders.cpp 36 FuncUnwinders::FuncUnwinders(UnwindTable &unwind_table, AddressRange range)
tools/lldb/source/Symbol/Function.cpp 190 const AddressRange &range)
tools/lldb/source/Symbol/LineEntry.cpp 193 AddressRange LineEntry::GetSameLineContiguousAddressRange(
197 AddressRange complete_line_range = range;
tools/lldb/source/Symbol/Symbol.cpp 51 bool is_artificial, const AddressRange &range,
tools/lldb/source/Symbol/SymbolContext.cpp 138 lldb_private::AddressRange block_range;
395 AddressRange &range) const {
476 AddressRange range;
712 AddressRange &range,
tools/lldb/source/Symbol/UnwindPlan.cpp 428 void UnwindPlan::SetPlanValidAddressRange(const AddressRange &range) {
tools/lldb/source/Symbol/UnwindTable.cpp 86 llvm::Optional<AddressRange> UnwindTable::GetAddressRange(const Address &addr,
88 AddressRange range;
tools/lldb/source/Target/Process.cpp 5771 AddressRange range_bounds) {
tools/lldb/source/Target/StackFrame.cpp 1321 AddressRange pc_range;
1698 AddressRange pc_range = function->GetAddressRange();
1948 AddressRange pc_range;
tools/lldb/source/Target/StackFrameList.cpp 113 AddressRange containing_range;
tools/lldb/source/Target/Thread.cpp 1359 bool abort_other_plans, const AddressRange &range,
1378 auto address_range =
1386 bool abort_other_plans, const AddressRange &range,
tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp 110 AddressRange range = sc.line_entry.range;
tools/lldb/source/Target/ThreadPlanStepInRange.cpp 35 Thread &thread, const AddressRange &range,
51 Thread &thread, const AddressRange &range,
tools/lldb/source/Target/ThreadPlanStepOut.cpp 105 AddressRange range;
444 AddressRange inline_range;
tools/lldb/source/Target/ThreadPlanStepOverRange.cpp 32 Thread &thread, const AddressRange &range,
252 AddressRange inline_range;
284 AddressRange step_range(
382 AddressRange my_range;
tools/lldb/source/Target/ThreadPlanStepRange.cpp 33 const AddressRange &range,
76 void ThreadPlanStepRange::AddRange(const AddressRange &new_range) {
203 AddressRange range(m_addr_context.symbol->GetAddressRef(),
tools/lldb/unittests/Symbol/TestLineEntry.cpp 88 auto range =
97 auto range =
106 auto range =
tools/lldb/unittests/UnwindAssembly/ARM64/TestArm64InstEmulation.cpp 64 AddressRange sample_range;
160 AddressRange sample_range;
322 AddressRange sample_range;
417 AddressRange sample_range;
519 AddressRange sample_range;
tools/lldb/unittests/UnwindAssembly/PPC64/TestPPC64InstEmulation.cpp 62 AddressRange sample_range;
181 AddressRange sample_range;
tools/lldb/unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp 155 AddressRange sample_range(0x1000, sizeof(data));
231 AddressRange sample_range(0x1000, sizeof(data));
352 AddressRange sample_range(0x1000, sizeof(data));
607 AddressRange sample_range(0x1000, sizeof(data));
795 AddressRange sample_range(0x1000, sizeof(data));
902 AddressRange sample_range(0x1000, sizeof(data));
974 AddressRange sample_range(0x1000, sizeof(data));
1018 AddressRange sample_range(0x1000, sizeof(data));
1066 AddressRange sample_range(0x1000, sizeof(data));
1099 AddressRange sample_range(0x1000, sizeof(data));
1145 AddressRange sample_range(0x1000, sizeof(data));
1173 AddressRange sample_range(0x1000, sizeof(data));
1201 AddressRange sample_range(0x1000, sizeof(data));
1229 AddressRange sample_range(0x1000, sizeof(data));
1257 AddressRange sample_range(0x1000, sizeof(data));
1282 AddressRange sample_range;
1311 AddressRange sample_range;
1340 AddressRange sample_range;
1366 AddressRange sample_range;
1394 AddressRange sample_range;
1428 AddressRange sample_range(0x1000, sizeof(data));
1450 AddressRange sample_range;
1478 AddressRange sample_range;
1512 AddressRange sample_range(0x1000, sizeof(data64_1));
1578 AddressRange sample_range;
1618 AddressRange sample_range;
1658 AddressRange sample_range;
1698 AddressRange sample_range;
1740 AddressRange sample_range;
1766 AddressRange sample_range;
1792 AddressRange sample_range;
1818 AddressRange sample_range;
1844 AddressRange sample_range;
1870 AddressRange sample_range;
1896 AddressRange sample_range;
1922 AddressRange sample_range;
1948 AddressRange sample_range;
1974 AddressRange sample_range;
2000 AddressRange sample_range;
2028 AddressRange sample_range;
2066 AddressRange sample_range;
2107 AddressRange sample_range;
2132 AddressRange sample_range;
2171 AddressRange sample_range;
2205 AddressRange sample_range;
2296 AddressRange sample_range;
2374 AddressRange sample_range;
2456 AddressRange sample_range;
2511 AddressRange sample_range(0x1000, sizeof(data));
2545 AddressRange sample_range(0x1000, sizeof(data));
2584 AddressRange sample_range(0x1000, sizeof(data));
2626 AddressRange sample_range;
2670 AddressRange sample_range(0x1000, sizeof(data));
2823 AddressRange sample_range;
usr/include/c++/7.4.0/bits/alloc_traits.h 387 using allocator_type = allocator<_Tp>;
389 using value_type = _Tp;
392 using pointer = _Tp*;
395 using const_pointer = const _Tp*;
474 construct(allocator_type& __a, _Up* __p, _Args&&... __args)
474 construct(allocator_type& __a, _Up* __p, _Args&&... __args)
486 destroy(allocator_type& __a, _Up* __p)
usr/include/c++/7.4.0/bits/allocator.h 108 class allocator: public __allocator_base<_Tp>
113 typedef _Tp* pointer;
114 typedef const _Tp* const_pointer;
115 typedef _Tp& reference;
116 typedef const _Tp& const_reference;
117 typedef _Tp value_type;
137 allocator(const allocator<_Tp1>&) throw() { }
usr/include/c++/7.4.0/bits/move.h 46 inline _GLIBCXX_CONSTEXPR _Tp*
47 __addressof(_Tp& __r) _GLIBCXX_NOEXCEPT
72 constexpr _Tp&&
73 forward(typename std::remove_reference<_Tp>::type& __t) noexcept
83 constexpr _Tp&&
84 forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
98 move(_Tp&& __t) noexcept
104 : public __and_<__not_<is_nothrow_move_constructible<_Tp>>,
105 is_copy_constructible<_Tp>>::type { };
136 inline _GLIBCXX17_CONSTEXPR _Tp*
137 addressof(_Tp& __r) noexcept
143 const _Tp* addressof(const _Tp&&) = delete;
143 const _Tp* addressof(const _Tp&&) = delete;
usr/include/c++/7.4.0/bits/shared_ptr.h 343 _Args&&... __args)
688 allocate_shared(const _Alloc& __a, _Args&&... __args)
703 make_shared(_Args&&... __args)
usr/include/c++/7.4.0/bits/shared_ptr_base.h 1317 _Args&&... __args)
usr/include/c++/7.4.0/bits/stl_construct.h 74 _Construct(_T1* __p, _Args&&... __args)
74 _Construct(_T1* __p, _Args&&... __args)
75 { ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(__args)...); }
97 _Destroy(_Tp* __pointer)
204 allocator<_Tp>&)
usr/include/c++/7.4.0/bits/stl_iterator.h 1224 __make_move_if_noexcept_iterator(_Tp* __i)
usr/include/c++/7.4.0/bits/stl_iterator_base_types.h 181 typedef _Tp value_type;
183 typedef _Tp* pointer;
184 typedef _Tp& reference;
192 typedef _Tp value_type;
194 typedef const _Tp* pointer;
195 typedef const _Tp& reference;
usr/include/c++/7.4.0/bits/stl_uninitialized.h 288 _ForwardIterator __result, allocator<_Tp>&)
usr/include/c++/7.4.0/bits/stl_vector.h 77 rebind<_Tp>::other _Tp_alloc_type;
216 class vector : protected _Vector_base<_Tp, _Alloc>
227 typedef _Vector_base<_Tp, _Alloc> _Base;
232 typedef _Tp value_type;
919 _Tp*
923 const _Tp*
1483 _M_realloc_insert(iterator __position, _Args&&... __args);
usr/include/c++/7.4.0/bits/unique_ptr.h 68 default_delete(const default_delete<_Up>&) noexcept { }
72 operator()(_Tp* __ptr) const
74 static_assert(!is_void<_Tp>::value,
76 static_assert(sizeof(_Tp)>0,
122 using type = _Up*;
137 using pointer = typename _Ptr<_Tp, _Dp>::type;
161 typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
163 __uniq_ptr_impl<_Tp, _Dp> _M_t;
166 using pointer = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
167 using element_type = _Tp;
706 operator!=(const unique_ptr<_Tp, _Dp>& __x, nullptr_t) noexcept
usr/include/c++/7.4.0/ext/alloc_traits.h 117 { typedef typename _Base_type::template rebind_alloc<_Tp> other; };
usr/include/c++/7.4.0/ext/new_allocator.h 63 typedef _Tp* pointer;
64 typedef const _Tp* const_pointer;
65 typedef _Tp& reference;
66 typedef const _Tp& const_reference;
67 typedef _Tp value_type;
111 return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp)));
130 { return size_t(-1) / sizeof(_Tp); }
135 construct(_Up* __p, _Args&&... __args)
135 construct(_Up* __p, _Args&&... __args)
136 { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
140 destroy(_Up* __p) { __p->~_Up(); }
usr/include/c++/7.4.0/type_traits 215 : public __is_void_helper<typename remove_cv<_Tp>::type>::type
326 : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
354 : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
381 : public __is_pointer_helper<typename remove_cv<_Tp>::type>::type
567 : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
581 : public __or_<is_lvalue_reference<_Tp>,
582 is_rvalue_reference<_Tp>>::type
588 : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
588 : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
601 : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
601 : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
602 is_void<_Tp>>>::type
611 : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
611 : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
611 : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
612 is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
612 is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
631 : public __is_member_pointer_helper<typename remove_cv<_Tp>::type>::type
638 : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
638 : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
777 : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
777 : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
798 typedef decltype(__test<_Tp>(0)) type;
811 remove_all_extents<_Tp>::type>::type
825 : public __is_destructible_safe<_Tp>::type
984 typedef decltype(__test<_Tp, _Arg>(0)) type;
989 : public __and_<is_destructible<_Tp>,
990 __is_direct_constructible_impl<_Tp, _Arg>>
1072 __is_direct_constructible_ref_cast<_Tp, _Arg>,
1073 __is_direct_constructible_new_safe<_Tp, _Arg>
1079 : public __is_direct_constructible_new<_Tp, _Arg>::type
1119 : public __is_direct_constructible<_Tp, _Arg>
1130 : public __is_constructible_impl<_Tp, _Args...>::type
1142 : public is_constructible<_Tp, const _Tp&>
1142 : public is_constructible<_Tp, const _Tp&>
1148 : public __is_copy_constructible_impl<_Tp>
1160 : public is_constructible<_Tp, _Tp&&>
1160 : public is_constructible<_Tp, _Tp&&>
1166 : public __is_move_constructible_impl<_Tp>
1215 : public __and_<is_constructible<_Tp, _Args...>,
1216 __is_nt_constructible_impl<_Tp, _Args...>>
1246 : public is_nothrow_constructible<_Tp, _Tp&&>
1246 : public is_nothrow_constructible<_Tp, _Tp&&>
1252 : public __is_nothrow_move_constructible_impl<_Tp>
1554 { typedef _Tp type; };
1563 { typedef _Tp type; };
1574 remove_const<typename remove_volatile<_Tp>::type>::type type;
1629 { typedef _Tp type; };
1633 { typedef _Tp type; };
1645 { typedef _Tp& type; };
1650 : public __add_lvalue_reference_helper<_Tp>
1659 { typedef _Tp&& type; };
1955 { typedef _Tp type; };