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

/freebsd-current/contrib/atf/atf-c++/
H A Dutils.hpp50 template< typename Collection >
52 grep_collection(const std::string& regexp, const Collection& collection)
54 for (typename Collection::const_iterator iter = collection.begin();
/freebsd-current/contrib/kyua/utils/text/
H A Doperations.hpp53 template< typename Collection >
54 std::string join(const Collection&, const std::string&);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DRegisterNumber.h50 typedef std::map<lldb::RegisterKind, uint32_t> Collection; typedef in class:RegisterNumber
55 Collection m_kind_regnum_map;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DLineTable.h119 typedef std::vector<gsym::LineEntry> Collection; typedef in class:llvm::gsym::LineTable
120 Collection Lines; ///< All line entries in the line table.
223 Collection::const_iterator begin() const { return Lines.begin(); }
224 Collection::const_iterator end() const { return Lines.end(); }
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h141 typedef llvm::SmallVector<Entry, N> Collection; typedef in class:lldb_private::RangeVector
224 typename Collection::const_iterator pos, end, prev;
250 Collection minimal_ranges(m_entries.begin(), pos);
284 typename Collection::iterator pos, end;
291 void Reserve(typename Collection::size_type size) { m_entries.reserve(size); }
322 typename Collection::const_iterator begin = m_entries.begin();
323 typename Collection::const_iterator end = m_entries.end();
324 typename Collection::const_iterator pos =
344 typename Collection::const_iterator begin = m_entries.begin();
345 typename Collection
445 typedef llvm::SmallVector<AugmentedEntry, N> Collection; typedef in class:lldb_private::RangeDataVector
741 typedef llvm::SmallVector<Entry, N> Collection; typedef in class:lldb_private::AddressDataArray
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAddressRanges.h60 using Collection = SmallVector<T>;
61 Collection Ranges;
76 typename Collection::const_iterator It = find(Addr, Addr + 1);
83 typename Collection::const_iterator begin() const { return Ranges.begin(); }
84 typename Collection::const_iterator end() const { return Ranges.end(); }
96 typename Collection::const_iterator find(uint64_t Start, uint64_t End) const {
123 Collection::const_iterator insert(AddressRange Range) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Debuginfod/
H A DDebuginfod.h158 DebuginfodCollection &Collection; member in struct:llvm::DebuginfodServer
159 DebuginfodServer(DebuginfodLog &Log, DebuginfodCollection &Collection);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUIGroupLP.cpp153 // Collection of SUnits that are classified as members of this group.
154 SmallVector<SUnit *, 32> Collection; member in class:__anon2257::SchedGroup
181 bool isFull() const { return MaxSize && Collection.size() >= *MaxSize; }
198 if (!TheRule->apply(SU, Collection, SyncPipe)) {
210 Collection.push_back(&SU);
214 void pop() { Collection.pop_back(); }
400 SmallVector<SUnit *, 32> TempCollection = SG.Collection;
401 SG.Collection.clear();
406 SG.Collection.push_back(*SchedBarr);
460 for (auto &SU : SG.Collection) {
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerRegistryData.h179 binaryFind(CheckerOrPackageInfoList &Collection, StringRef FullName) { argument
184 assert(llvm::is_sorted(Collection, CheckerOrPackageFullNameLT{}) &&
188 return llvm::lower_bound(Collection, CheckerOrPackage(FullName),
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DRegisterNumber.cpp87 Collection::iterator iter = m_kind_regnum_map.find(kind);
/freebsd-current/contrib/llvm-project/llvm/lib/Debuginfod/
H A DDebuginfod.cpp558 DebuginfodCollection &Collection)
559 : Log(Log), Collection(Collection) {
570 Expected<std::string> PathOrErr = Collection.findDebugBinaryPath(ID);
588 Expected<std::string> PathOrErr = Collection.findBinaryPath(ID);
557 DebuginfodServer(DebuginfodLog &Log, DebuginfodCollection &Collection) argument
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistry.cpp390 static void insertOptionToCollection(StringRef FullName, T &Collection, argument
394 auto It = binaryFind(Collection, FullName);
395 assert(It != Collection.end() &&
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDWARFExpressionList.h149 using const_iterator = ExprVec::Collection::const_iterator;
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DInputFile.cpp428 TypeCollectionPtr &Collection = (Kind == kIds) ? Ids : Types; local
435 Collection =
437 return *Collection;
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-graph-diff.cpp296 template <typename T> static bool containsNullptr(const T &Collection) { argument
297 return llvm::is_contained(Collection, nullptr);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h174 template <typename Collection> explicit Array(const Collection &C) {
229 /// json::ary(Collection) converts all items in a collection to Values.
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp109 std::map<std::pair<StringRef, uint64_t>, StringRef> &Collection) {
121 Collection[std::make_pair(SymName, Offset - SymOffset)] = *RelocSymName;
106 collectRelocationOffsets( const ObjectFile *Obj, const SectionRef &Sec, uint64_t SecAddress, uint64_t SymAddress, uint64_t SymSize, StringRef SymName, std::map<std::pair<StringRef, uint64_t>, StringRef> &Collection) argument
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjC.cpp1802 llvm::Value *Collection; local
1804 Collection = EmitARCRetainScalarExpr(S.getCollection());
1807 EmitObjCConsumeObject(S.getCollection()->getType(), Collection);
1809 Collection = EmitScalarExpr(S.getCollection());
1840 FastEnumSel, Collection, Args);
1908 Builder.CreateBitCast(Collection, ObjCIdType);
2049 FastEnumSel, Collection, Args);
/freebsd-current/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2035 ExprResult Collection; local
2121 Collection = ParseExpression();
2158 Collection = ParseExpression();
2298 Collection.get(),
/freebsd-current/contrib/kyua/store/
H A Dschema_v3.sql204 -- Collection of output files of the test case.
H A Dschema_v1.sql192 -- Collection of output files of the test case.
H A Dschema_v2.sql242 -- Collection of output files of the test case.
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp2071 if (const Stmt *Collection = S->getCollection())
2072 Visit(Collection);
2469 static bool ObjCEnumerationCollection(Expr *Collection) { argument
2470 return !Collection->isTypeDependent()
2471 && Collection->getType()->getAs<ObjCObjectPointerType>() != nullptr;
H A DTreeTransform.h2494 Expr *Collection,
2499 Collection,
8464 ExprResult Collection = getDerived().TransformExpr(S->getCollection());
8465 if (Collection.isInvalid())
8476 Collection.get() == S->getCollection() &&
8483 Collection.get(),
2492 RebuildObjCForCollectionStmt(SourceLocation ForLoc, Stmt *Element, Expr *Collection, SourceLocation RParenLoc, Stmt *Body) argument
/freebsd-current/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5254 SourceLocation ColonLoc, Expr *Collection,
11333 /// \param OriginalInits [out] Collection of statements and declarations that

Completed in 507 milliseconds