Home
last modified time | relevance | path

Searched refs:collection (Results 1 – 25 of 211) sorted by relevance

123456789

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointSiteList.cpp
H A DBreakpointLocationCollection.cpp36 collection::iterator pos = GetIDPairIterator(bp_id, bp_loc_id); // Predicate in Remove()
60 BreakpointLocationCollection::collection::iterator
68 BreakpointLocationCollection::collection::const_iterator
80 collection::iterator pos = GetIDPairIterator(break_id, break_loc_id); in FindByIDPair()
90 collection::const_iterator pos = in FindByIDPair()
139 collection::iterator pos, begin = m_break_loc_collection.begin(), in ValidForThisThread()
151 collection::const_iterator pos, begin = m_break_loc_collection.begin(), in IsInternal()
168 collection::iterator pos, begin = m_break_loc_collection.begin(), in GetDescription()
H A DBreakpointLocationList.cpp72 collection::const_iterator end = m_locations.end(); in FindByID()
73 collection::const_iterator pos = in FindByID()
84 collection::iterator pos, end = m_locations.end(); in FindInModule()
129 collection::const_iterator pos, end = m_locations.end(); in Dump()
155 collection::iterator pos, end = m_locations.end(); in ClearAllBreakpointSites()
166 collection::iterator pos, end = m_locations.end(); in ResolveAllBreakpointSites()
180 collection::const_iterator pos, end = m_locations.end(); in GetHitCount()
195 collection::const_iterator pos, end = m_locations.end(); in GetNumResolvedLocations()
206 collection::iterator pos, end = m_locations.end(); in GetDescription()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStopPointSiteList.h55 typename collection::const_iterator pos; in Dump()
56 typename collection::const_iterator end = m_site_list.end(); in Dump()
73 typename collection::iterator iter = m_site_list.find(addr); in FindByAddress()
89 typename collection::iterator pos = GetIDIterator(site_id); in FindByID()
107 typename collection::const_iterator pos = GetIDConstIterator(site_id); in FindByID()
160 typename collection::iterator pos = GetIDIterator(site_id); // Predicate in Remove()
177 typename collection::iterator pos = m_site_list.find(addr); in RemoveByAddress()
191 typename collection::const_iterator lower, upper, pos; in FindInRange()
200 typename collection::const_iterator prev_pos = lower; in FindInRange()
257 typename collection::iterator iter = m_site_list.begin(); in Sites()
[all …]
H A DBreakpointLocationCollection.h155 typedef std::vector<lldb::BreakpointLocationSP> collection; typedef
157 collection::iterator GetIDPairIterator(lldb::break_id_t break_id,
160 collection::const_iterator
164 collection m_break_loc_collection;
168 typedef llvm::iterator_range<collection::const_iterator>
H A DBreakpointSiteList.h
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeList.h41 typedef std::vector<lldb::TypeSP> collection; typedef
42 typedef llvm::iterator_range<collection::const_iterator> TypeIterable;
52 typedef collection::iterator iterator;
53 typedef collection::const_iterator const_iterator;
55 collection m_types;
H A DTypeMap.h46 typedef std::multimap<lldb::user_id_t, lldb::TypeSP> collection; typedef
47 typedef llvm::iterator_range<ValueMapIterator<collection::const_iterator>>
60 typedef collection::iterator iterator;
61 typedef collection::const_iterator const_iterator;
63 collection m_types;
H A DUnwindTable.h71 typedef std::map<lldb::addr_t, lldb::FuncUnwindersSP> collection; typedef
72 typedef collection::iterator iterator;
73 typedef collection::const_iterator const_iterator;
76 collection m_unwinds;
H A DVariableList.h19 typedef std::vector<lldb::VariableSP> collection; typedef
73 typedef collection::iterator iterator;
74 typedef collection::const_iterator const_iterator;
86 collection m_variables;
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDeclContext.cpp60 collection::const_iterator pos; in operator ==()
61 collection::const_iterator begin = m_entries.begin(); in operator ==()
62 collection::const_iterator end = m_entries.end(); in operator ==()
64 collection::const_iterator rhs_pos; in operator ==()
65 collection::const_iterator rhs_begin = rhs.m_entries.begin(); in operator ==()
H A DUniqueDWARFASTType.h74 typedef std::vector<UniqueDWARFASTType> collection; typedef
75 collection m_collection;
92 collection::iterator pos = m_collection.find(unique_name_cstr); in Find()
101 typedef llvm::DenseMap<const char *, UniqueDWARFASTTypeList> collection; typedef
102 collection m_collection;
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DUnixSignals.cpp118 collection::iterator signal = m_signals.find(signo); in AddSignalCode()
127 collection::iterator pos = m_signals.find(signo); in RemoveSignal()
147 collection::const_iterator pos = m_signals.find(signo); in GetSignalDescription()
207 collection::const_iterator pos, end = m_signals.end(); in GetSignalNumberFromName()
229 collection::const_iterator pos = m_signals.find(current_signal); in GetNextSignalNumber()
230 collection::const_iterator end = m_signals.end(); in GetNextSignalNumber()
256 collection::const_iterator pos = m_signals.find(signo); in GetShouldSuppress()
263 collection::iterator pos = m_signals.find(signo); in SetShouldSuppress()
280 collection::const_iterator pos = m_signals.find(signo); in GetShouldStop()
287 collection::iterator pos = m_signals.find(signo); in SetShouldStop()
[all …]
H A DThreadList.cpp224 collection threads_copy; in ShouldStop()
255 collection::iterator pos, end = threads_copy.end(); in ShouldStop()
366 collection::iterator pos, end = m_threads.end(); in ShouldReportStop()
414 collection::iterator pos, end = m_threads.end(); in SetShouldReportStop()
427 collection::iterator pos, end = m_threads.end(); in ShouldReportRun()
482 collection::iterator pos, end = m_threads.end(); in RefreshStateAfterStop()
492 collection::iterator pos, end = m_threads.end(); in DiscardThreadPlans()
505 collection::iterator pos, end = m_threads.end(); in WillResume()
660 collection::iterator pos, end = m_threads.end(); in DidResume()
672 collection::iterator pos, end = m_threads.end(); in DidStop()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadCollection.h22 typedef std::vector<lldb::ThreadSP> collection; typedef
23 typedef LockingAdaptedIterable<std::recursive_mutex, collection>
28 ThreadCollection(collection threads);
52 collection m_threads;
H A DQueueList.h50 typedef std::vector<lldb::QueueSP> collection; typedef
51 typedef LockingAdaptedIterable<std::mutex, collection> QueueIterable;
99 collection m_queues; ///< The queues for this process.
H A DStackFrameList.h146 typedef std::vector<lldb::StackFrameSP> collection; typedef
147 typedef collection::iterator iterator;
148 typedef collection::const_iterator const_iterator;
173 collection m_frames;
H A DPathMappingList.h143 typedef std::vector<pair> collection; typedef
144 typedef collection::iterator iterator;
145 typedef collection::const_iterator const_iterator;
155 collection m_pairs;
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpecList.h29 typedef std::vector<std::shared_ptr<SupportFile>> collection; typedef
30 typedef collection::const_iterator const_iterator;
84 collection m_files; ///< A collection of FileSpec objects.
93 typedef std::vector<FileSpec> collection; typedef
94 typedef collection::const_iterator const_iterator;
252 collection m_files; ///< A collection of FileSpec objects.
H A DVMRange.h25 typedef std::vector<VMRange> collection; typedef
26 typedef collection::iterator iterator;
27 typedef collection::const_iterator const_iterator;
84 static bool ContainsValue(const VMRange::collection &coll,
87 static bool ContainsRange(const VMRange::collection &coll,
H A DStringList.h27 typedef std::vector<std::string> collection; typedef
60 typedef collection::iterator iterator;
61 typedef collection::const_iterator const_iterator;
133 collection m_strings;
/freebsd/contrib/atf/atf-c++/
H A Dmacros.hpp119 #define ATF_REQUIRE_IN(element, collection) \ argument
120 ATF_REQUIRE((collection).find(element) != (collection).end())
122 #define ATF_REQUIRE_NOT_IN(element, collection) \ argument
123 ATF_REQUIRE((collection).find(element) == (collection).end())
H A Dutils.hpp52 grep_collection(const std::string& regexp, const Collection& collection) in grep_collection() argument
54 for (typename Collection::const_iterator iter = collection.begin(); in grep_collection()
55 iter != collection.end(); ++iter) { in grep_collection()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleList.h507 collection; ///< The module collection type. typedef
513 collection::iterator RemoveImpl(collection::iterator pos,
519 collection m_modules; ///< The collection of modules.
525 typedef LockingAdaptedIterable<std::recursive_mutex, collection>
531 typedef llvm::iterator_range<collection::const_iterator>
H A DUniqueCStringMap.h35 typedef std::vector<Entry> collection; typedef
36 typedef typename collection::iterator iterator;
37 typedef typename collection::const_iterator const_iterator;
191 collection temp(m_map.begin(), m_map.end()); in SizeToFit()
240 collection m_map;

123456789