| /freebsd-13.1/contrib/llvm-project/libcxx/include/__functional/ |
| H A D | reference_wrapper.h | 26 class _LIBCPP_TEMPLATE_VIS reference_wrapper 46 reference_wrapper(type& __f) _NOEXCEPT in reference_wrapper() function 181 reference_wrapper(_Tp&) -> reference_wrapper<_Tp>; 186 reference_wrapper<_Tp> 189 return reference_wrapper<_Tp>(__t); in ref() 194 reference_wrapper<_Tp> 195 ref(reference_wrapper<_Tp> __t) _NOEXCEPT in ref() 202 reference_wrapper<const _Tp> 205 return reference_wrapper<const _Tp>(__t); in cref() 210 reference_wrapper<const _Tp> [all …]
|
| H A D | unwrap_ref.h | 27 class reference_wrapper; variable 30 struct __unwrap_reference<reference_wrapper<_Tp> > { typedef _LIBCPP_NODEBUG_TYPE _Tp& type; };
|
| H A D | bind.h | 85 __mu(reference_wrapper<_Tp> __t, _Uj&)
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/ |
| H A D | functional | 35 class reference_wrapper 46 reference_wrapper(U&&); 47 reference_wrapper(const reference_wrapper<T>& x) noexcept; 50 reference_wrapper& operator=(const reference_wrapper<T>& x) noexcept; 63 reference_wrapper(T&) -> reference_wrapper<T>; 65 template <class T> reference_wrapper<T> ref(T& t) noexcept; 67 template <class T> reference_wrapper<T> ref(reference_wrapper<T>t) noexcept; 69 template <class T> reference_wrapper<const T> cref(const T& t) noexcept; 71 template <class T> reference_wrapper<const T> cref(reference_wrapper<T> t) noexcept; 411 function& operator=(reference_wrapper<F>) noexcept; [all …]
|
| H A D | __functional_base | 17 #include <__functional/reference_wrapper.h>
|
| H A D | module.modulemap | 434 module reference_wrapper { private header "__functional/reference_wrapper.h" }
|
| H A D | optional | 378 || is_same<_RawUp, reference_wrapper<_RawTp>>::value 379 || is_same<_RawUp, reference_wrapper<typename remove_const<_RawTp>::type>>::value
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | ScriptInterpreter.cpp | 37 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in CollectDataForBreakpointCommandCallback() 98 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in SetBreakpointCommandCallback() 110 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in SetBreakpointCommandCallbackFunction()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectBreakpointCommand.cpp | 248 std::vector<std::reference_wrapper<BreakpointOptions>> *bp_options_vec = in IOHandlerInputComplete() 249 (std::vector<std::reference_wrapper<BreakpointOptions>> *) in IOHandlerInputComplete() 259 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in CollectDataForBreakpointCommandCallback() 270 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in SetBreakpointCommandCallback() 453 std::vector<std::reference_wrapper<BreakpointOptions>>
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-xray/ |
| H A D | xray-graph-diff.h | 48 std::array<std::reference_wrapper<const GraphRenderer::GraphT>, N> G;
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | ScriptInterpreter.h | 364 std::vector<std::reference_wrapper<BreakpointOptions>> &options, 373 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, 393 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec,
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ |
| H A D | ASTSelection.h | 63 using ReferenceType = std::reference_wrapper<const SelectedASTNode>;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/ |
| H A D | ScriptInterpreterLua.h | 83 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec,
|
| H A D | ScriptInterpreterLua.cpp | 110 static_cast<std::vector<std::reference_wrapper<BreakpointOptions>> *>( in IOHandlerInputComplete() 320 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in CollectDataForBreakpointCommandCallback()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | ErrorOr.h | 61 using wrap = std::reference_wrapper<std::remove_reference_t<T>>;
|
| H A D | Error.h | 478 using wrap = std::reference_wrapper<std::remove_reference_t<T>>;
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | error.h | 192 using wrap = std::reference_wrapper<std::remove_reference_t<T>>;
|
| /freebsd-13.1/usr.bin/dtc/ |
| H A D | fdt.hh | 812 std::vector<std::reference_wrapper<fixup>> unresolved_fixups;
|
| H A D | fdt.cc | 1357 std::vector<std::reference_wrapper<fixup>> sorted_phandles; in resolve_cross_references()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPythonImpl.h | 248 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec,
|
| H A D | ScriptInterpreterPython.cpp | 638 std::vector<std::reference_wrapper<BreakpointOptions>> *bp_options_vec = in IOHandlerInputComplete() 639 (std::vector<std::reference_wrapper<BreakpointOptions>> *) in IOHandlerInputComplete() 1252 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in CollectDataForBreakpointCommandCallback()
|
| /freebsd-13.1/lib/libc++/ |
| H A D | Makefile | 373 FUN_HEADERS+= reference_wrapper.h
|
| /freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-tuple.h.pump | 211 // std::tr1::reference_wrapper<T> to make_tuple(). And we don't
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kInstrInfo.cpp | 93 std::vector<std::reference_wrapper<llvm::MachineInstr>> EraseList; in AnalyzeBranchImpl()
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | shared_ptr.h | 947 reference_wrapper<typename remove_reference<_Dp>::type>,
|