Searched refs:collection (Results 1 - 25 of 82) sorted by relevance

1234

/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadCollection.h22 typedef std::vector<lldb::ThreadSP> collection; typedef in class:lldb_private::ThreadCollection
23 typedef LockingAdaptedIterable<collection, lldb::ThreadSP, vector_adapter,
29 ThreadCollection(collection threads);
53 collection m_threads;
H A DQueueList.h50 typedef std::vector<lldb::QueueSP> collection; typedef in class:lldb_private::QueueList
51 typedef LockingAdaptedIterable<collection, lldb::QueueSP, vector_adapter,
101 collection m_queues; ///< The queues for this process.
H A DStackFrameList.h127 typedef std::vector<lldb::StackFrameSP> collection; typedef in class:lldb_private::StackFrameList
128 typedef collection::iterator iterator;
129 typedef collection::const_iterator const_iterator;
149 collection m_frames;
H A DPathMappingList.h146 typedef std::vector<pair> collection; typedef in class:lldb_private::PathMappingList
147 typedef collection::iterator iterator;
148 typedef collection::const_iterator const_iterator;
154 collection m_pairs;
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointLocationCollection.h129 /// Check whether this collection of breakpoint locations have any
137 /// \b true if the collection contains at least one location that
141 /// Tell whether ALL the breakpoints in the location collection are internal.
155 typedef std::vector<lldb::BreakpointLocationSP> collection; typedef in class:lldb_private::BreakpointLocationCollection
157 collection::iterator GetIDPairIterator(lldb::break_id_t break_id,
160 collection::const_iterator
164 collection m_break_loc_collection;
168 typedef AdaptedIterable<collection, lldb::BreakpointLocationSP,
H A DStopPointSiteList.h41 typename collection::iterator iter = m_site_list.find(site_load_addr);
61 typename collection::const_iterator pos;
62 typename collection::const_iterator end = m_site_list.end();
79 typename collection::iterator iter = m_site_list.find(addr);
95 typename collection::iterator pos = GetIDIterator(site_id);
113 typename collection::const_iterator pos = GetIDConstIterator(site_id);
166 typename collection::iterator pos = GetIDIterator(site_id); // Predicate
183 typename collection::iterator pos = m_site_list.find(addr);
197 typename collection::const_iterator lower, upper, pos;
206 typename collection
278 typedef std::map<lldb::addr_t, StopPointSiteSP> collection; typedef in class:lldb_private::StopPointSiteList
[all...]
H A DWatchpointResourceList.h119 typedef std::vector<lldb::WatchpointResourceSP> collection; typedef in class:lldb_private::WatchpointResourceList
120 typedef LockingAdaptedIterable<collection, lldb::WatchpointResourceSP,
139 collection m_resources;
H A DBreakpointLocationList.h28 // is not just some random collection of locations. Rather, the act of
79 /// A breakpoint collection that gets any breakpoint locations
194 typedef std::vector<lldb::BreakpointLocationSP> collection; typedef in class:lldb_private::BreakpointLocationList
200 collection m_locations; // Vector of locations, sorted by ID
207 typedef AdaptedIterable<collection, lldb::BreakpointLocationSP,
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeList.h41 typedef std::vector<lldb::TypeSP> collection; typedef in class:lldb_private::TypeList
42 typedef AdaptedIterable<collection, lldb::TypeSP, vector_adapter>
62 typedef collection::iterator iterator;
63 typedef collection::const_iterator const_iterator;
65 collection m_types;
H A DTypeMap.h46 typedef std::multimap<lldb::user_id_t, lldb::TypeSP> collection; typedef in class:lldb_private::TypeMap
47 typedef AdaptedIterable<collection, lldb::TypeSP, map_adapter> TypeIterable;
63 typedef collection::iterator iterator;
64 typedef collection::const_iterator const_iterator;
66 collection m_types;
H A DUnwindTable.h67 typedef std::map<lldb::addr_t, lldb::FuncUnwindersSP> collection; typedef in class:lldb_private::UnwindTable
68 typedef collection::iterator iterator;
69 typedef collection::const_iterator const_iterator;
72 collection m_unwinds;
H A DVariableList.h19 typedef std::vector<lldb::VariableSP> collection; typedef in class:lldb_private::VariableList
70 typedef collection::iterator iterator;
71 typedef collection::const_iterator const_iterator;
83 collection m_variables;
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDeclContext.cpp62 collection::const_iterator pos;
63 collection::const_iterator begin = m_entries.begin();
64 collection::const_iterator end = m_entries.end();
66 collection::const_iterator rhs_pos;
67 collection::const_iterator rhs_begin = rhs.m_entries.begin();
H A DUniqueDWARFASTType.h69 typedef std::vector<UniqueDWARFASTType> collection; typedef in class:lldb_private::plugin::dwarf::UniqueDWARFASTTypeList
70 collection m_collection;
86 collection::const_iterator pos = m_collection.find(unique_name_cstr);
95 typedef llvm::DenseMap<const char *, UniqueDWARFASTTypeList> collection; typedef in class:lldb_private::plugin::dwarf::UniqueDWARFASTTypeMap
96 collection m_collection;
H A DDWARFAttribute.cpp21 collection::const_iterator end = m_infos.end();
22 collection::const_iterator beg = m_infos.begin();
23 collection::const_iterator pos;
H A DDWARFDeclContext.h83 typedef std::vector<Entry> collection;
84 collection m_entries;
/freebsd-current/contrib/atf/atf-c++/
H A Dutils.hpp52 grep_collection(const std::string& regexp, const Collection& collection) argument
54 for (typename Collection::const_iterator iter = collection.begin();
55 iter != collection.end(); ++iter) {
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectList.h22 /// A collection of ValueObject values that.
55 typedef std::vector<lldb::ValueObjectSP> collection; typedef in class:lldb_private::ValueObjectList
57 collection m_value_objects;
/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DStopPointSiteList.cpp28 typename collection::const_iterator pos = GetIDConstIterator(site_id);
H A DBreakpointLocationCollection.cpp36 collection::iterator pos = GetIDPairIterator(bp_id, bp_loc_id); // Predicate
60 BreakpointLocationCollection::collection::iterator
69 BreakpointLocationCollection::collection::const_iterator
82 collection::iterator pos = GetIDPairIterator(break_id, break_loc_id);
92 collection::const_iterator pos =
141 collection::iterator pos, begin = m_break_loc_collection.begin(),
153 collection::const_iterator pos, begin = m_break_loc_collection.begin(),
170 collection::iterator pos, begin = m_break_loc_collection.begin(),
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DVMRange.h25 typedef std::vector<VMRange> collection; typedef in class:lldb_private::VMRange
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 DFileSpecList.h29 typedef std::vector<std::shared_ptr<SupportFile>> collection; typedef in class:lldb_private::SupportFileList
30 typedef collection::const_iterator const_iterator;
78 collection m_files; ///< A collection of FileSpec objects.
82 /// A file collection class.
87 typedef std::vector<FileSpec> collection; typedef in class:lldb_private::FileSpecList
88 typedef collection::const_iterator const_iterator;
242 collection m_files; ///< A collection of FileSpec objects.
H A DStringList.h27 typedef std::vector<std::string> collection; typedef in class:lldb_private::StringList
60 typedef collection::iterator iterator;
61 typedef collection::const_iterator const_iterator;
133 collection m_strings;
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DVMRange.cpp24 bool VMRange::ContainsValue(const VMRange::collection &coll,
30 bool VMRange::ContainsRange(const VMRange::collection &coll,
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DUnixSignals.cpp116 collection::iterator signal = m_signals.find(signo);
125 collection::iterator pos = m_signals.find(signo);
145 collection::const_iterator pos = m_signals.find(signo);
201 collection::const_iterator pos, end = m_signals.end();
223 collection::const_iterator pos = m_signals.find(current_signal);
224 collection::const_iterator end = m_signals.end();
250 collection::const_iterator pos = m_signals.find(signo);
257 collection::iterator pos = m_signals.find(signo);
274 collection::const_iterator pos = m_signals.find(signo);
281 collection
[all...]

Completed in 202 milliseconds

1234