reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/FormatVariadic.h
  253 inline auto formatv(const char *Fmt, Ts &&... Vals) -> formatv_object<decltype(
include/llvm/Support/FormatVariadicDetails.h
   36   explicit provider_format_adapter(T &&Item) : Item(std::forward<T>(Item)) {}
  138 build_format_adapter(T &&Item) {
tools/lldb/include/lldb/Target/Thread.h
  227   Vote ShouldReportStop(Event *event_ptr);
  229   Vote ShouldReportRun(Event *event_ptr);
  779       bool stop_other_threads, Vote stop_vote, Vote run_vote,
  779       bool stop_other_threads, Vote stop_vote, Vote run_vote,
  841       bool stop_other_threads, Vote stop_vote, Vote run_vote,
  841       bool stop_other_threads, Vote stop_vote, Vote run_vote,
 1147   void SetShouldReportStop(Vote vote);
tools/lldb/include/lldb/Target/ThreadList.h
  107   Vote ShouldReportStop(Event *event_ptr);
  109   Vote ShouldReportRun(Event *event_ptr);
  141   void SetShouldReportStop(Vote vote);
tools/lldb/include/lldb/Target/ThreadPlan.h
  358              Vote stop_vote, Vote run_vote);
  358              Vote stop_vote, Vote run_vote);
  420   virtual Vote ShouldReportStop(Event *event_ptr);
  422   virtual Vote ShouldReportRun(Event *event_ptr);
  586   Vote m_stop_vote;
  587   Vote m_run_vote;
tools/lldb/include/lldb/Target/ThreadPlanBase.h
   31   Vote ShouldReportStop(Event *event_ptr) override;
tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
   41   Vote ShouldReportStop(Event *event_ptr) override;
tools/lldb/include/lldb/Target/ThreadPlanStepInstruction.h
   21                             Vote stop_vote, Vote run_vote);
   21                             Vote stop_vote, Vote run_vote);
tools/lldb/include/lldb/Target/ThreadPlanStepOut.h
   21                     bool first_insn, bool stop_others, Vote stop_vote,
   22                     Vote run_vote, uint32_t frame_idx,
   78       bool stop_others, Vote stop_vote, Vote run_vote, uint32_t frame_idx,
   78       bool stop_others, Vote stop_vote, Vote run_vote, uint32_t frame_idx,
tools/lldb/include/lldb/Target/ThreadPlanStepRange.h
   33   Vote ShouldReportStop(Event *event_ptr) override;
tools/lldb/include/lldb/Utility/Log.h
  141               const char *format, Args &&... args) {
tools/lldb/include/lldb/lldb-private-enumerations.h
  252   static void format(const lldb_private::Vote &V, llvm::raw_ostream &Stream,
tools/lldb/source/Target/Process.cpp
 3433         Vote stop_vote = m_thread_list.ShouldReportStop(event_ptr);
tools/lldb/source/Target/Thread.cpp
  484 void Thread::SetShouldReportStop(Vote vote) {
  919 Vote Thread::ShouldReportStop(Event *event_ptr) {
  958     Vote thread_vote = eVoteNoOpinion;
  979 Vote Thread::ShouldReportRun(Event *event_ptr) {
 1423     bool stop_other_threads, Vote stop_vote, Vote run_vote, uint32_t frame_idx,
 1423     bool stop_other_threads, Vote stop_vote, Vote run_vote, uint32_t frame_idx,
 1435     bool stop_other_threads, Vote stop_vote, Vote run_vote, uint32_t frame_idx,
 1435     bool stop_other_threads, Vote stop_vote, Vote run_vote, uint32_t frame_idx,
tools/lldb/source/Target/ThreadList.cpp
  356 Vote ThreadList::ShouldReportStop(Event *event_ptr) {
  359   Vote result = eVoteNoOpinion;
  373     const Vote vote = thread_sp->ShouldReportStop(event_ptr);
  397 void ThreadList::SetShouldReportStop(Vote vote) {
  408 Vote ThreadList::ShouldReportRun(Event *event_ptr) {
  412   Vote result = eVoteNoOpinion;
tools/lldb/source/Target/ThreadPlan.cpp
   23                        Vote stop_vote, Vote run_vote)
   23                        Vote stop_vote, Vote run_vote)
   64 Vote ThreadPlan::ShouldReportStop(Event *event_ptr) {
   70       Vote prev_vote = prev_plan->ShouldReportStop(event_ptr);
   79 Vote ThreadPlan::ShouldReportRun(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanBase.cpp
   60 Vote ThreadPlanBase::ShouldReportStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanCallFunction.cpp
  239 Vote ThreadPlanCallFunction::ShouldReportStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
   26                                                      Vote stop_vote,
   27                                                      Vote run_vote)
tools/lldb/source/Target/ThreadPlanStepOut.cpp
   36     Vote stop_vote, Vote run_vote, uint32_t frame_idx,
   36     Vote stop_vote, Vote run_vote, uint32_t frame_idx,
tools/lldb/source/Target/ThreadPlanStepRange.cpp
   67 Vote ThreadPlanStepRange::ShouldReportStop(Event *event_ptr) {
   70   const Vote vote = IsPlanComplete() ? eVoteYes : eVoteNo;
usr/include/c++/7.4.0/bits/alloc_traits.h
  474 	construct(allocator_type& __a, _Up* __p, _Args&&... __args)
  475 	{ __a.construct(__p, std::forward<_Args>(__args)...); }
usr/include/c++/7.4.0/bits/move.h
   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
usr/include/c++/7.4.0/bits/shared_ptr.h
  343 		   _Args&&... __args)
  344 	: __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
  688     allocate_shared(const _Alloc& __a, _Args&&... __args)
  691 			     std::forward<_Args>(__args)...);
  703     make_shared(_Args&&... __args)
  707 				       std::forward<_Args>(__args)...);
usr/include/c++/7.4.0/bits/shared_ptr_base.h
 1317 		     _Args&&... __args)
 1328 			      std::forward<_Args>(__args)...);
usr/include/c++/7.4.0/ext/new_allocator.h
  135 	construct(_Up* __p, _Args&&... __args)
  136 	{ ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
usr/include/c++/7.4.0/type_traits
 1554     { typedef _Tp     type; };
 1558     { 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; };
 1659     { typedef _Tp&&   type; };
 2104     { typedef typename remove_cv<_Up>::type __type; };