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

1234

/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIECollection.h43 typedef std::vector<const DWARFDebugInfoEntry *> collection; typedef in class:DWARFDIECollection
44 typedef collection::iterator iterator;
45 typedef collection::const_iterator const_iterator;
47 collection m_dies; // Ordered list of die offsets
H A DDWARFDebugPubnames.h31 typedef std::list<DWARFDebugPubnamesSet> collection; typedef in class:DWARFDebugPubnames
32 typedef collection::iterator iterator;
33 typedef collection::const_iterator const_iterator;
35 collection m_sets;
H A DDWARFDeclContext.cpp35 collection::const_reverse_iterator pos;
36 collection::const_reverse_iterator begin = m_entries.rbegin();
37 collection::const_reverse_iterator end = m_entries.rend();
73 collection::const_iterator pos;
74 collection::const_iterator begin = m_entries.begin();
75 collection::const_iterator end = m_entries.end();
77 collection::const_iterator rhs_pos;
78 collection::const_iterator rhs_begin = rhs.m_entries.begin();
H A DDWARFAttribute.h36 typedef std::vector<DWARFAttribute> collection; typedef in class:DWARFAttribute
37 typedef collection::iterator iterator;
38 typedef collection::const_iterator const_iterator;
H A DDWARFDeclContext.h104 typedef std::vector<Entry> collection; typedef in class:DWARFDeclContext
105 collection m_entries;
H A DUniqueDWARFASTType.h128 typedef std::vector<UniqueDWARFASTType> collection; typedef in class:UniqueDWARFASTTypeList
129 collection m_collection;
161 collection::const_iterator pos = m_collection.find (unique_name_cstr);
171 typedef llvm::DenseMap<const char *, UniqueDWARFASTTypeList> collection; typedef in class:UniqueDWARFASTTypeMap
172 collection m_collection;
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DUnwindTable.h51 typedef std::map<lldb::addr_t, lldb::FuncUnwindersSP> collection; typedef in class:lldb_private::UnwindTable
52 typedef collection::iterator iterator;
53 typedef collection::const_iterator const_iterator;
56 collection m_unwinds;
H A DTypeList.h56 typedef std::multimap<lldb::user_id_t, lldb::TypeSP> collection; typedef in class:lldb_private::TypeList
57 typedef AdaptedIterable<collection, lldb::TypeSP, map_adapter> TypeIterable;
88 typedef collection::iterator iterator;
89 typedef collection::const_iterator const_iterator;
91 collection m_types;
H A DVariableList.h87 typedef std::vector<lldb::VariableSP> collection; typedef in class:lldb_private::VariableList
88 typedef collection::iterator iterator;
89 typedef collection::const_iterator const_iterator;
91 collection m_variables;
/freebsd-10.1-release/contrib/atf/atf-c++/
H A Dutils.hpp55 grep_collection(const std::string& regexp, const Collection& collection) argument
57 for (typename Collection::const_iterator iter = collection.begin();
58 iter != collection.end(); ++iter) {
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DQueueList.h62 typedef std::vector<lldb::QueueSP> collection; typedef in class:lldb_private::QueueList
63 typedef LockingAdaptedIterable<collection, lldb::QueueSP, vector_adapter> QueueIterable;
132 collection m_queues; ///< The queues for this process.
H A DPathMappingList.h153 typedef std::vector <pair> collection; typedef in class:lldb_private::PathMappingList
154 typedef collection::iterator iterator;
155 typedef collection::const_iterator const_iterator;
163 collection m_pairs;
H A DStackFrameList.h135 typedef std::vector<lldb::StackFrameSP> collection; typedef in class:lldb_private::StackFrameList
136 typedef collection::iterator iterator;
137 typedef collection::const_iterator const_iterator;
142 collection m_frames;
H A DThreadList.h76 typedef std::vector<lldb::ThreadSP> collection; typedef in class:lldb_private::ThreadList
77 typedef LockingAdaptedIterable<collection, lldb::ThreadSP, vector_adapter> ThreadIterable;
165 collection m_threads; ///< The threads for this process.
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DStreamCallback.h37 typedef std::map<lldb::tid_t, StreamString> collection; typedef in class:lldb_private::StreamCallback
40 collection m_accumulated_data;
H A DVMRange.h26 typedef std::vector<VMRange> collection; typedef in class:lldb_private::VMRange
27 typedef collection::iterator iterator;
28 typedef collection::const_iterator const_iterator;
157 ContainsValue(const VMRange::collection& coll, lldb::addr_t value);
160 ContainsRange(const VMRange::collection& coll, const VMRange& range);
165 FindRangeIndexThatContainsValue (const VMRange::collection& coll, lldb::addr_t value);
H A DValueObjectList.h27 // A collection of ValueObject values that
85 typedef std::vector<lldb::ValueObjectSP> collection; typedef in class:lldb_private::ValueObjectList
89 collection m_value_objects;
H A DThreadSafeSTLMap.h27 typedef std::map<_Key,_Tp> collection; typedef in class:lldb_private::ThreadSafeSTLMap
28 typedef typename collection::iterator iterator;
29 typedef typename collection::const_iterator const_iterator;
172 collection m_collection;
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointLocationCollection.h161 /// Check whether this collection of breakpoint locations have any
169 /// \b true if the collection contains at least one location that
175 /// Tell whether ALL the breakpoints in the location collection are internal.
195 typedef std::vector<lldb::BreakpointLocationSP> collection; typedef in class:lldb_private::BreakpointLocationCollection
197 collection::iterator
200 collection::const_iterator
203 collection m_break_loc_collection;
H A DBreakpointSiteList.h203 typedef std::map<lldb::addr_t, lldb::BreakpointSiteSP> collection; typedef in class:lldb_private::BreakpointSiteList
205 collection::iterator
208 collection::const_iterator
212 collection m_bp_site_list; // The breakpoint site list.
H A DBreakpointLocationList.h35 // This is not just some random collection of locations. Rather, the act of adding the location
100 /// A breakpoint collection that gets any breakpoint locations
258 typedef std::vector<lldb::BreakpointLocationSP> collection; typedef in class:lldb_private::BreakpointLocationList
264 collection m_locations; // Vector of locations, sorted by ID
/freebsd-10.1-release/usr.bin/csup/
H A Dparse.y62 | collection
70 collection
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointSiteList.cpp40 collection::iterator iter = m_bp_site_list.find (bp_site_load_addr);
44 m_bp_site_list.insert (iter, collection::value_type (bp_site_load_addr, bp));
85 collection::iterator pos = GetIDIterator(break_id); // Predicate
98 collection::iterator pos = m_bp_site_list.find(address);
124 BreakpointSiteList::collection::iterator
132 BreakpointSiteList::collection::const_iterator
145 collection::iterator pos = GetIDIterator(break_id);
157 collection::const_iterator pos = GetIDConstIterator(break_id);
169 collection::iterator iter = m_bp_site_list.find(addr);
179 collection
[all...]
H A DBreakpointLocationCollection.cpp51 collection::iterator pos = GetIDPairIterator(bp_id, bp_loc_id); // Predicate
81 BreakpointLocationCollection::collection::iterator
88 BreakpointLocationCollection::collection::const_iterator
99 collection::iterator pos = GetIDPairIterator(break_id, break_loc_id);
110 collection::const_iterator pos = GetIDPairConstIterator(break_id, break_loc_id);
153 collection::iterator pos,
168 collection::const_iterator pos,
188 collection::iterator pos,
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DUnixSignals.cpp116 collection::iterator pos = m_signals.find (signo);
124 collection::const_iterator pos = m_signals.find (signo);
144 collection::const_iterator pos, end = m_signals.end ();
169 collection::const_iterator pos = m_signals.find (current_signal);
170 collection::const_iterator end = m_signals.end();
192 collection::const_iterator pos = m_signals.find (signo);
208 collection::const_iterator pos = m_signals.find (signo);
217 collection::iterator pos = m_signals.find (signo);
238 collection::const_iterator pos = m_signals.find (signo);
247 collection
[all...]

Completed in 165 milliseconds

1234