Home
last modified time | relevance | path

Searched refs:Container (Results 1 – 25 of 84) sorted by relevance

1234

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DAttrIterator.h33 template <typename SpecificAttr, typename Container = AttrVec>
35 using Iterator = typename Container::const_iterator;
100 template <typename SpecificAttr, typename Container>
101 inline specific_attr_iterator<SpecificAttr, Container>
105 template <typename SpecificAttr, typename Container>
106 inline specific_attr_iterator<SpecificAttr, Container>
107 specific_attr_end(const Container& container) { in specific_attr_end()
111 template <typename SpecificAttr, typename Container>
112 inline bool hasSpecificAttr(const Container& container) { in hasSpecificAttr()
116 template <typename SpecificAttr, typename Container>
[all …]
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dstack63 template<class Container>
64 stack(Container) -> stack<typename Container::value_type, Container>; // C++17
67 stack(Container, Allocator) -> stack<typename Container::value_type, Container>; // C++17
69 template <class T, class Container>
70 bool operator==(const stack<T, Container>& x, const stack<T, Container>& y);
72 bool operator< (const stack<T, Container>& x, const stack<T, Container>& y);
74 bool operator!=(const stack<T, Container>& x, const stack<T, Container>& y);
76 bool operator> (const stack<T, Container>& x, const stack<T, Container>& y);
78 bool operator>=(const stack<T, Container>& x, const stack<T, Container>& y);
80 bool operator<=(const stack<T, Container>& x, const stack<T, Container>& y);
[all …]
H A Dqueue71 template<class Container>
72 queue(Container) -> queue<typename Container::value_type, Container>; // C++17
75 queue(Container, Allocator) -> queue<typename Container::value_type, Container>; // C++17
78 bool operator==(const queue<T, Container>& x,const queue<T, Container>& y);
81 bool operator< (const queue<T, Container>& x,const queue<T, Container>& y);
84 bool operator!=(const queue<T, Container>& x,const queue<T, Container>& y);
87 bool operator> (const queue<T, Container>& x,const queue<T, Container>& y);
90 bool operator>=(const queue<T, Container>& x,const queue<T, Container>& y);
93 bool operator<=(const queue<T, Container>& x,const queue<T, Container>& y);
96 void swap(queue<T, Container>& x, queue<T, Container>& y)
[all …]
H A Diterator262 template <class Container>
267 Container* container;
283 template <class Container> back_insert_iterator<Container> back_inserter(Container& x); // constex…
285 template <class Container>
290 Container* container;
306 template <class Container> front_insert_iterator<Container> front_inserter(Container& x); // const…
308 template <class Container>
313 Container* container;
314 typename Container::iterator iter;
323 insert_iterator(Container& x, typename Container::iterator i); // constexpr in C++20
[all …]
H A Dspan67 template <class Container>
68 constexpr explicit(Extent != dynamic_extent) span(Container& cont);
69 template <class Container>
70 constexpr explicit(Extent != dynamic_extent) span(const Container& cont);
120 template<class Container>
121 span(Container&) -> span<typename Container::value_type>;
123 template<class Container>
124 span(const Container&) -> span<const typename Container::value_type>;
185 // is_array_v<Container> is false,
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecordMapping.h23 CodeViewContainer Container) in SymbolRecordMapping() argument
24 : IO(Reader), Container(Container) {} in SymbolRecordMapping()
26 CodeViewContainer Container) in SymbolRecordMapping() argument
27 : IO(Writer), Container(Container) {} in SymbolRecordMapping()
41 CodeViewContainer Container; variable
H A DSymbolDeserializer.h26 MappingInfo(ArrayRef<uint8_t> RecordData, CodeViewContainer Container) in MappingInfo()
28 Mapping(Reader, Container) {} in MappingInfo()
56 CodeViewContainer Container) in SymbolDeserializer() argument
57 : Delegate(Delegate), Container(Container) {} in SymbolDeserializer()
65 Mapping = std::make_unique<MappingInfo>(Record.content(), Container); in visitSymbolBegin()
93 CodeViewContainer Container; variable
H A DSymbolDumper.h28 CodeViewContainer Container, in CVSymbolDumper() argument
31 : W(W), Types(Types), Container(Container), in CVSymbolDumper()
50 CodeViewContainer Container; variable
H A DSymbolSerializer.h48 SymbolSerializer(BumpPtrAllocator &Storage, CodeViewContainer Container);
52 CodeViewContainer Container) { in writeOneSymbol() argument
55 SymbolSerializer Serializer(Storage, Container); in writeOneSymbol()
/freebsd-13.1/contrib/llvm-project/llvm/lib/TextAPI/
H A DInterfaceFile.cpp22 typename C::iterator addEntry(C &Container, StringRef InstallName) { in addEntry() argument
23 auto I = partition_point(Container, [=](const InterfaceFileRef &O) { in addEntry()
26 if (I != Container.end() && I->getInstallName() == InstallName) in addEntry()
29 return Container.emplace(I, InstallName); in addEntry()
33 typename C::iterator addEntry(C &Container, const Target &Target_) { in addEntry() argument
35 lower_bound(Container, Target_, [](const Target &LHS, const Target &RHS) { in addEntry()
38 if ((Iter != std::end(Container)) && !(Target_ < *Iter)) in addEntry()
41 return Container.insert(Iter, Target_); in addEntry()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamWriter.h491 template <typename Container>
511 template <typename Container>
512 void EmitRecordWithAbbrev(unsigned Abbrev, const Container &Vals) { in EmitRecordWithAbbrev()
521 template <typename Container>
522 void EmitRecordWithBlob(unsigned Abbrev, const Container &Vals, in EmitRecordWithBlob()
526 template <typename Container>
527 void EmitRecordWithBlob(unsigned Abbrev, const Container &Vals, in EmitRecordWithBlob()
535 template <typename Container>
536 void EmitRecordWithArray(unsigned Abbrev, const Container &Vals, in EmitRecordWithArray()
540 template <typename Container>
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopIterator.h115 LoopBlocksDFS(Loop *Container) : in LoopBlocksDFS() argument
116 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) { in LoopBlocksDFS()
117 PostBlocks.reserve(Container->getNumBlocks()); in LoopBlocksDFS()
177 LoopBlocksRPO(Loop *Container) : DFS(Container) {} in LoopBlocksRPO() argument
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2833 template <typename Container>
3125 template <typename Container>
3170 template <typename Container>
3199 template <typename Container>
3477 template <typename Container>
3729 template <typename Container>
4230 template <typename Container>
4278 template <typename Container>
4829 template <typename Container>
5016 template <typename Container>
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsectionRecord.cpp69 CodeViewContainer Container) const { in commit()
70 assert(Writer.getOffset() % alignOf(Container) == 0 && in commit()
79 Header.Length = alignTo(DataSize, alignOf(Container)); in commit()
H A DSymbolSerializer.cpp22 CodeViewContainer Container) in SymbolSerializer() argument
24 Mapping(Writer, Container) {} in SymbolSerializer()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h1491 template <typename Container> inline void sort(Container &&C) {
1503 template <typename Container, typename Compare>
1504 inline void sort(Container &&C, Compare Comp) {
1715 void erase_if(Container &C, UnaryPredicate P) {
1722 template <typename Container, typename ValueType>
1723 void erase_value(Container &C, ValueType V) {
1730 template <typename Container, typename Range>
1738 void replace(Container &Cont, typename Container::iterator ContIt,
1757 void replace(Container &Cont, typename Container::iterator ContIt,
1805 template <typename Container, typename StreamT,
[all …]
H A Diterator_range.h36 template <typename Container>
37 iterator_range(Container &&c) in iterator_range()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DDynamicType.cpp233 static raw_ostream &printJsonContainer(const ContainerTy &Container, in printJsonContainer() argument
236 if (Container.isEmpty()) { in printJsonContainer()
242 for (auto I = Container.begin(); I != Container.end(); ++I) { in printJsonContainer()
248 if (std::next(I) != Container.end()) in printJsonContainer()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp1205 if (!Container) in CollectOverriddenMethodsRecurse()
1233 Overridden = Container->getMethod(Method->getSelector(), in CollectOverriddenMethodsRecurse()
1264 CollectOverriddenMethodsRecurse(Container, Method, Methods, in CollectOverriddenMethods()
1336 if (auto *ImplDecl = dyn_cast<ObjCImplDecl>(Container)) in findPropertyDecl()
1338 Container = ImplDecl->getClassInterface(); in findPropertyDecl()
1348 for (const auto *I : Container->instance_properties()) { in findPropertyDecl()
1355 for (const auto *I : Container->class_properties()) { in findPropertyDecl()
1367 if (const auto *Found = findMatchingProperty(Container)) in findPropertyDecl()
1378 ClassDecl = cast<ObjCInterfaceDecl>(Container); in findPropertyDecl()
1384 if (Ext == Container) in findPropertyDecl()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Index/
H A DIndexDecl.cpp76 const ObjCImplDecl *Container) { in hasUserDefined() argument
77 const ObjCMethodDecl *MD = Container->getMethod(D->getSelector(), in hasUserDefined()
525 auto *Container = cast<ObjCImplDecl>(D->getDeclContext()); in VisitObjCPropertyImplDecl() local
533 Loc = Container->getLocation(); in VisitObjCPropertyImplDecl()
545 if (MD->isPropertyAccessor() && !hasUserDefined(MD, Container)) in VisitObjCPropertyImplDecl()
546 IndexCtx.handleDecl(MD, Loc, AccessorMethodRoles, {}, Container); in VisitObjCPropertyImplDecl()
549 if (MD->isPropertyAccessor() && !hasUserDefined(MD, Container)) in VisitObjCPropertyImplDecl()
550 IndexCtx.handleDecl(MD, Loc, AccessorMethodRoles, {}, Container); in VisitObjCPropertyImplDecl()
563 IvarLoc = Container->getLocation(); in VisitObjCPropertyImplDecl()
/freebsd-13.1/sys/contrib/device-tree/Bindings/mtd/partitions/
H A Dbrcm,trx.txt1 Broadcom TRX Container Partition
13 Container can hold up to 4 partitions. The first partition has to contain a
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h147 template <class T> class Container {
150 Container(CopyReducerBase &S, unsigned N) : Elems(S.Arena, N) {} in Container() function
172 template <class T> class Container {
176 Container(VisitReducerBase &S, unsigned N) {} in Container() function
246 R_SExpr reduceSCFG(SCFG &Orig, Container<BasicBlock *> Bbs) { in reduceSCFG()
250 R_BasicBlock reduceBasicBlock(BasicBlock &Orig, Container<R_SExpr> &As, in reduceBasicBlock()
251 Container<R_SExpr> &Is, R_SExpr T) { in reduceBasicBlock()
255 R_SExpr reducePhi(Phi &Orig, Container<R_SExpr> &As) { in reducePhi()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLSymbols.h37 codeview::CodeViewContainer Container) const;
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h673 template <class Container,
674 class Compare = CompareLess<typename Container::value_type>>
675 uptr InternalLowerBound(const Container &v,
676 const typename Container::value_type &val,
704 template <class Container,
705 class Compare = CompareLess<typename Container::value_type>>
706 void SortAndDedup(Container &v, Compare comp = {}) {
/freebsd-13.1/contrib/googletest/googletest/src/
H A Dgtest-internal-inl.h278 template <class Container, typename Predicate>
279 inline int CountIf(const Container& c, Predicate predicate) { in CountIf()
283 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) { in CountIf()
291 template <class Container, typename Functor>
292 void ForEach(const Container& c, Functor functor) { in ForEach()

1234