/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | RangeMap.h | 141 typedef llvm::SmallVector<Entry, N> Collection; typedef 224 typename Collection::const_iterator pos, end, prev; in IsSorted() 250 Collection minimal_ranges(m_entries.begin(), pos); in CombineConsecutiveRanges() 284 typename Collection::iterator pos, end; in Slide() 291 void Reserve(typename Collection::size_type size) { m_entries.reserve(size); } in Reserve() 322 typename Collection::const_iterator begin = m_entries.begin(); in FindEntryIndexThatContains() 323 typename Collection::const_iterator end = m_entries.end(); in FindEntryIndexThatContains() 324 typename Collection::const_iterator pos = in FindEntryIndexThatContains() 344 typename Collection::const_iterator begin = m_entries.begin(); in FindEntryThatContains() 345 typename Collection in FindEntryThatContains() 445 typedef llvm::SmallVector<AugmentedEntry, N> Collection; global() typedef 741 typedef llvm::SmallVector<Entry, N> Collection; global() typedef [all...] |
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | AddressRanges.h | 60 using Collection = SmallVector<T>; 61 Collection Ranges; 76 typename Collection::const_iterator It = find(Addr, Addr + 1); in getRangeThatContains() 83 typename Collection::const_iterator begin() const { return Ranges.begin(); } in begin() 84 typename Collection::const_iterator end() const { return Ranges.end(); } in end() 96 typename Collection::const_iterator find(uint64_t Start, uint64_t End) const { in find() 123 Collection::const_iterator insert(AddressRange Range) { in insert()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/ |
H A D | LineTable.h | 119 typedef std::vector<gsym::LineEntry> Collection; typedef 120 Collection Lines; ///< All line entries in the line table. 223 Collection::const_iterator begin() const { return Lines.begin(); } in begin() 224 Collection::const_iterator end() const { return Lines.end(); } in end()
|
/freebsd/contrib/atf/atf-c++/ |
H A D | utils.hpp | 50 template< typename Collection > 52 grep_collection(const std::string& regexp, const Collection& collection) in grep_collection() 54 for (typename Collection::const_iterator iter = collection.begin(); in grep_collection()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUIGroupLP.cpp | 152 SmallVector<SUnit *, 32> Collection; member in __anon5d856e630111::SchedGroup 180 bool isFull() const { return MaxSize && Collection.size() >= *MaxSize; } in isFull() 194 if (!Rule.get()->apply(SU, Collection, SyncPipe)) in allowedByRules() 205 Collection.push_back(&SU); in add() 209 void pop() { Collection.pop_back(); } in pop() 395 SmallVector<SUnit *, 32> TempCollection = SG.Collection; in reset() 396 SG.Collection.clear(); in reset() 401 SG.Collection.push_back(*SchedBarr); in reset() 455 for (auto &SU : SG.Collection) { in makePipeline() 942 bool apply(const SUnit *SU, const ArrayRef<SUnit *> Collection, in apply() argument [all …]
|
/freebsd/contrib/kyua/utils/text/ |
H A D | operations.hpp | 53 template< typename Collection > 54 std::string join(const Collection&, const std::string&);
|
H A D | operations.ipp | 46 template< typename Collection > 48 utils::text::join(const Collection& strings, const std::string& delimiter) 52 for (typename Collection::const_iterator iter = strings.begin();
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | RegisterNumber.h | 50 typedef std::map<lldb::RegisterKind, uint32_t> Collection; typedef 55 Collection m_kind_regnum_map;
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/ |
H A D | CheckerRegistryData.h | 179 binaryFind(CheckerOrPackageInfoList &Collection, StringRef FullName) { in binaryFind() argument 184 assert(llvm::is_sorted(Collection, CheckerOrPackageFullNameLT{}) && in binaryFind() 188 return llvm::lower_bound(Collection, CheckerOrPackage(FullName), in binaryFind()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Debuginfod/ |
H A D | Debuginfod.h | 158 DebuginfodCollection &Collection; member 159 DebuginfodServer(DebuginfodLog &Log, DebuginfodCollection &Collection);
|
/freebsd/contrib/llvm-project/llvm/lib/Debuginfod/ |
H A D | Debuginfod.cpp | 559 DebuginfodCollection &Collection) in DebuginfodServer() argument 560 : Log(Log), Collection(Collection) { in DebuginfodServer() 571 Expected<std::string> PathOrErr = Collection.findDebugBinaryPath(ID); in DebuginfodServer() 589 Expected<std::string> PathOrErr = Collection.findBinaryPath(ID); in DebuginfodServer()
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | qt | 7 0 string \<!DOCTYPE\040RCC\> Qt Resource Collection file
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | InputFile.cpp | 428 TypeCollectionPtr &Collection = (Kind == kIds) ? Ids : Types; in getOrCreateTypeCollection() local 435 Collection = in getOrCreateTypeCollection() 437 return *Collection; in getOrCreateTypeCollection()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | RegisterNumber.cpp | 87 Collection::iterator iter = m_kind_regnum_map.find(kind); in GetAsKind()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/ |
H A D | DWARFExpressionList.h | 151 using const_iterator = ExprVec::Collection::const_iterator;
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/ |
H A D | xray-graph-diff.cpp | 296 template <typename T> static bool containsNullptr(const T &Collection) { in containsNullptr() argument 297 return llvm::is_contained(Collection, nullptr); in containsNullptr()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxdump/ |
H A D | llvm-cxxdump.cpp | 109 std::map<std::pair<StringRef, uint64_t>, StringRef> &Collection) { in collectRelocationOffsets() argument 121 Collection[std::make_pair(SymName, Offset - SymOffset)] = *RelocSymName; in collectRelocationOffsets()
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseStmt.cpp | 2050 ExprResult Collection; in ParseForStatement() local 2137 Collection = ParseExpression(); in ParseForStatement() 2175 Collection = ParseExpression(); in ParseForStatement() 2314 ForLoc, FirstPart.get(), Collection.get(), T.getCloseLocation()); in ParseForStatement()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | JSON.h | 174 template <typename Collection> explicit Array(const Collection &C) { in Array()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGObjC.cpp | 1805 llvm::Value *Collection; in EmitObjCForCollectionStmt() local 1807 Collection = EmitARCRetainScalarExpr(S.getCollection()); in EmitObjCForCollectionStmt() 1810 EmitObjCConsumeObject(S.getCollection()->getType(), Collection); in EmitObjCForCollectionStmt() 1812 Collection = EmitScalarExpr(S.getCollection()); in EmitObjCForCollectionStmt() 1841 FastEnumSel, Collection, Args); in EmitObjCForCollectionStmt() 1909 Builder.CreateBitCast(Collection, ObjCIdType); in EmitObjCForCollectionStmt() 2050 FastEnumSel, Collection, Args); in EmitObjCForCollectionStmt()
|
/freebsd/sys/contrib/openzfs/config/ |
H A D | lib-prefix.m4 | 194 …dnl See Solaris 10 Software Developer Collection > Solaris 64-bit Developer's Guide > The Developm…
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaStmt.cpp | 2094 if (const Stmt *Collection = S->getCollection()) in VisitObjCForCollectionStmt() local 2095 Visit(Collection); in VisitObjCForCollectionStmt() 2329 static bool ObjCEnumerationCollection(Expr *Collection) { in ObjCEnumerationCollection() argument 2330 return !Collection->isTypeDependent() in ObjCEnumerationCollection() 2331 && Collection->getType()->getAs<ObjCObjectPointerType>() != nullptr; in ObjCEnumerationCollection()
|
/freebsd/contrib/llvm-project/lld/docs/ |
H A D | WebAssembly.rst | 231 Garbage Collection
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | funstack.ok | 1063 Collection of articles in honor of 1168 H. D. Baecker Garbage Collection for Virtual Memory 2242 Collection . . . . . . . . . . . . . . . 495--508 2436 Compactifying Garbage Collection'' . . . 354--354 2487 Garbage Collection . . . . . . . . . . . 491--500 2747 Jeffrey M. Barth Shifting Garbage Collection Overhead to 3201 E. F. M. Steffens On-the-Fly Garbage Collection: An 3462 F. L. Morris On a Comparison of Garbage Collection
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | LangOptions.def | 375 ENUM_LANGOPT(GC, GCMode, 2, NonGC, "Objective-C Garbage Collection mode")
|