Home
last modified time | relevance | path

Searched full:container (Results 1 – 25 of 929) sorted by relevance

12345678910>>...38

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DAttrIterator.h35 template <typename SpecificAttr, typename Container = AttrVec>
37 using Iterator = typename Container::const_iterator;
102 template <typename SpecificAttr, typename Container>
103 inline specific_attr_iterator<SpecificAttr, Container>
104 specific_attr_begin(const Container& container) { in specific_attr_begin() argument
105 return specific_attr_iterator<SpecificAttr, Container>(container.begin()); in specific_attr_begin()
107 template <typename SpecificAttr, typename Container>
108 inline specific_attr_iterator<SpecificAttr, Container>
109 specific_attr_end(const Container& container) { in specific_attr_end() argument
110 return specific_attr_iterator<SpecificAttr, Container>(container.end()); in specific_attr_end()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dstack19 template <class T, class Container = deque<T>>
23 typedef Container container_type;
45 template<container-compatible-range<T> R> stack(from_range_t, R&& rg); // since C++23
53 template<container-compatible-range<T> R, class Alloc>
63 template<container-compatible-range<T> R>
68 void swap(stack& c) noexcept(is_nothrow_swappable_v<Container>)
71 template<class Container>
72 stack(Container) -> stack<typename Container::value_type, Container>; // C++17
80 template<class Container, class Allocator>
81 stack(Container, Allocator) -> stack<typename Container::value_type, Container>; // C++17
[all …]
H A Dqueue19 template <class T, class Container = deque<T>>
23 typedef Container container_type;
46 template<container-compatible-range<T> R> queue(from_range_t, R&& rg); // since C++23
59 template<container-compatible-range<T> R, class Alloc>
72 template<container-compatible-range<T> R>
77 void swap(queue& q) noexcept(is_nothrow_swappable_v<Container>)
80 template<class Container>
81 queue(Container) -> queue<typename Container::value_type, Container>; // C++17
89 template<class Container, class Allocator>
90 queue(Container, Allocator) -> queue<typename Container::value_type, Container>; // C++17
[all …]
H A Diterator313 template <class Container>
318 Container* container;
320 typedef Container container_type;
327 explicit back_insert_iterator(Container& x); // constexpr in C++20
328 …back_insert_iterator& operator=(const typename Container::value_type& value); // constexpr in C++…
334 template <class Container> back_insert_iterator<Container> back_inserter(Container& x); // constex…
336 template <class Container>
341 Container* container;
343 typedef Container container_type;
350 explicit front_insert_iterator(Container& x); // constexpr in C++20
[all …]
/freebsd/sys/dev/aac/
H A Daac_debug.c228 " BlockRead: container %d 0x%x/%d\n", in aac_print_fib()
235 " BlockWrite: container %d 0x%x/%d " in aac_print_fib()
281 case AifEnContainerChange: /* Adapter specific container in aac_print_aif()
284 "container %d,%d\n", in aac_print_aif()
285 aif->data.EN.data.ECC.container[0], in aac_print_aif()
286 aif->data.EN.data.ECC.container[1]); in aac_print_aif()
295 "container %d failed, " in aac_print_aif()
297 aif->data.EN.data.EMF.container, in aac_print_aif()
301 case AifEnContainerEvent: /* Significant container in aac_print_aif()
304 "container %d event " in aac_print_aif()
[all …]
H A Daacreg.h200 /* Container Commands */
321 * Container types
362 FT_VOLUME, /* Container - Volume Set */
363 FT_STRIPE, /* Container - Stripe Set */
364 FT_MIRROR, /* Container - Mirror Set */
365 FT_RAID5, /* Container - Raid 5 Set */
412 * Container creation data
801 AifJobCtrZero, /* Container clear operation */
802 AifJobCtrCopy, /* Container copy operation */
803 AifJobCtrCreateMirror, /* Container Create Mirror operation */
[all …]
/freebsd/contrib/libucl/src/
H A Ducl_msgpack.c399 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
403 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
406 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
409 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
412 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
415 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
418 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
421 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
424 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
694 * Insert new container to the stack in ucl_msgpack_get_container()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dstack19 template <class T, class Container = deque<T>>
23 typedef Container container_type;
45 template<container-compatible-range<T> R> stack(from_range_t, R&& rg); // since C++23
53 template<container-compatible-range<T> R, class Alloc>
63 template<container-compatible-range<T> R>
68 void swap(stack& c) noexcept(is_nothrow_swappable_v<Container>)
71 template<class Container>
72 stack(Container) -> stack<typename Container::value_type, Container>; // C++17
80 template<class Container, class Allocator>
81 stack(Container, Allocator) -> stack<typename Container::value_type, Container>; // C++17
[all …]
H A Dqueue19 template <class T, class Container = deque<T>>
23 typedef Container container_type;
46 template<container-compatible-range<T> R> queue(from_range_t, R&& rg); // since C++23
59 template<container-compatible-range<T> R, class Alloc>
72 template<container-compatible-range<T> R>
77 void swap(queue& q) noexcept(is_nothrow_swappable_v<Container>)
80 template<class Container>
81 queue(Container) -> queue<typename Container::value_type, Container>; // C++17
89 template<class Container, class Allocator>
90 queue(Container, Allocator) -> queue<typename Container::value_type, Container>; // C++17
[all …]
H A Diterator313 template <class Container>
318 Container* container;
320 typedef Container container_type;
327 explicit back_insert_iterator(Container& x); // constexpr in C++20
328 …back_insert_iterator& operator=(const typename Container::value_type& value); // constexpr in C++…
334 template <class Container> back_insert_iterator<Container> back_inserter(Container& x); // constex…
336 template <class Container>
341 Container* container;
343 typedef Container container_type;
350 explicit front_insert_iterator(Container& x); // constexpr in C++20
[all …]
/freebsd/sys/dev/aacraid/
H A Daacraid_debug.c140 " BlockRead: container %d 0x%x/%d\n", in aacraid_print_fib()
147 " BlockWrite: container %d 0x%x/%d " in aacraid_print_fib()
193 case AifEnContainerChange: /* Adapter specific container in aacraid_print_aif()
196 "container %d,%d\n", in aacraid_print_aif()
197 aif->data.EN.data.ECC.container[0], in aacraid_print_aif()
198 aif->data.EN.data.ECC.container[1]); in aacraid_print_aif()
207 "container %d failed, " in aacraid_print_aif()
209 aif->data.EN.data.EMF.container, in aacraid_print_aif()
213 case AifEnContainerEvent: /* Significant container in aacraid_print_aif()
216 "container %d event " in aacraid_print_aif()
[all …]
H A Daacraid_reg.h134 /* Container Commands */
268 * Container types
309 FT_VOLUME, /* Container - Volume Set */
310 FT_STRIPE, /* Container - Stripe Set */
311 FT_MIRROR, /* Container - Mirror Set */
312 FT_RAID5, /* Container - Raid 5 Set */
369 * Container creation data
790 AifJobCtrZero, /* Container clear operation */
791 AifJobCtrCopy, /* Container copy operation */
792 AifJobCtrCreateMirror, /* Container Create Mirror operation */
[all …]
/freebsd/contrib/elftoolchain/libelftc/
H A Dlibelftc_vstr.c59 len += strlen(v->container[i]); in get_strlen_sum()
76 free(v->container[i]); in vector_str_dest()
78 free(v->container); in vector_str_dest()
97 if (strncmp(v->container[i], o, l) == 0) in vector_str_find()
129 elem_size = strlen(v->container[i]); in vector_str_get_flat()
131 memcpy(rtn + elem_pos, v->container[i], elem_size); in vector_str_get_flat()
163 tmp_ctn[i] = v->container[i]; in vector_str_grow()
165 free(v->container); in vector_str_grow()
167 v->container = tmp_ctn; in vector_str_grow()
189 if ((v->container = malloc(sizeof(char *) * v->capacity)) == NULL) in vector_str_init()
[all …]
/freebsd/release/
H A DMakefile.oci2 # Makefile for building OCI container images.
13 cp -p ${.OBJDIR}/container-image-${_IMG}.txz ${DESTDIR}/ociimages
19 OCI_DEPS_dynamic=container-image-static.txz
20 OCI_DEPS_runtime=container-image-dynamic.txz
21 OCI_DEPS_notoolchain=container-image-runtime.txz
22 OCI_DEPS_toolchain=container-image-notoolchain.txz
25 OCI_TARGETS+= container-image-${_IMG}.txz
26 container-image-${_IMG}.txz: ${OCI_DEPS_${_IMG}}
29 …ke-oci-image.sh ${.CURDIR} ${REVISION} ${BRANCH} ${TARGET_ARCH} ${_IMG} container-image-${_IMG}.txz
/freebsd/contrib/libxo/libxo/
H A Dxo_open_container.316 .Nd open (and close) container constructs
43 A container appears once under a given parent where a list contains
45 A container is used to hold
47 The container has no value, but serves to
50 To open a container, call
68 container, a warning will be generated.
99 To create a container, use the
113 parameter gives the name of the container, encoded in
129 avoid keeping track of the open container name.
134 close does not match the current open container.
[all …]
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DRecordsSlice.cpp44 ObjCContainerRecord *Container = findContainer(/*isIVar=*/false, Super); in addRecord() local
46 if (Container == nullptr) in addRecord()
47 Container = addObjCCategory(Super, {}); in addRecord()
48 return addObjCIVar(Container, IVar, Linkage); in addRecord()
58 ObjCContainerRecord *Container = findObjCInterface(Super); in findContainer() local
61 if (Container == nullptr) in findContainer()
62 Container = findObjCCategory(Super, ""); in findContainer()
63 return Container; in findContainer()
67 R *findRecord(K Key, const C &Container) { in findRecord() argument
68 const auto *Record = Container.find(Key); in findRecord()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecordMapping.h24 CodeViewContainer Container) in SymbolRecordMapping() argument
25 : IO(Reader), Container(Container) {} in SymbolRecordMapping()
27 CodeViewContainer Container) in SymbolRecordMapping() argument
28 : IO(Writer), Container(Container) {} in SymbolRecordMapping()
42 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
/freebsd/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DBitstreamRemarkContainer.h1 //===-- BitstreamRemarkContainer.h - Container for remarks --------------*-===//
24 /// The current version of the remark container.
30 /// Type of the remark container.
31 /// The remark container has two modes:
38 /// * Container version and type
44 /// * Container version and type
49 /// * Container version and type
58 /// container.
92 constexpr StringRef MetaContainerInfoName = StringRef("Container info", 14);
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2364 // Implements a matcher that checks the size of an STL-style container.
2371 template <typename Container>
2372 operator Matcher<Container>() const {
2373 return Matcher<Container>(new Impl<const Container&>(size_matcher_));
2376 template <typename Container>
2377 class Impl : public MatcherInterface<Container> {
2379 using SizeType = decltype(std::declval<Container>().size());
2392 bool MatchAndExplain(Container container,
2394 SizeType size = container.size();
2412 // container.
[all …]
/freebsd/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dcommon_interface_defs.h113 /// Annotates the current state of a contiguous container, such as
116 /// A contiguous container is a container that keeps all of its elements
117 /// in a contiguous region of memory. The container owns the region of memory
130 /// container so that the tool can report errors when memory from
135 /// container is destroyed or when the container reallocates the storage.
164 /// Annotates the current state of a contiguous container memory,
168 /// in a contiguous region of memory. The container owns the region of memory
180 /// During unpoisoning memory of empty container (before first element is
211 /// A contiguous container is a container that keeps all of its elements in a
212 /// contiguous region of memory. The container owns the region of memory
[all …]
/freebsd/sys/dev/qlnx/qlnxe/
H A Decore_iscsi_api.h210 * @param p_conn partially initialized incoming container of
222 * @param p_conn container of iSCSI connection data
245 * @param p_conn container of iSCSI connection data
255 * resources (incliding container of iSCSI connection
259 * @param p_conn container of iSCSI connection data
269 * @param p_conn container of iSCSI connection data
283 * @param p_conn container of iSCSI connection data
297 * @param p_conn container of iSCSI connection data
311 * @param p_conn container of iSCSI connection data
329 * @param p_conn container of iSCSI connection data
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMismatchedIteratorChecker.cpp9 // Defines a checker for mistakenly applying a foreign iterator on a container
11 // iterators of the same container should be used.
85 // Check for erase, insert and emplace using iterator of another container in checkPreCall()
112 // Check match of first-last iterator pair in a constructor of a container in checkPreCall()
143 // to the same container and the last to also to the same container but in checkPreCall()
170 // check whether they belong to the same container in checkPreCall()
203 // Verify match between a container and the container of an iterator in verifyMatch()
220 // the same or a different container but we get different conjured symbols in verifyMatch()
232 reportBug("Container accessed using foreign iterator argument.", in verifyMatch()
249 // the same or a different container but we get different conjured symbols in verifyMatch()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A Diterator_range.h50 template <typename Container>
53 typename Container,
55 llvm::detail::IterOfRange<Container>, IteratorT>::value> * = nullptr>
57 iterator_range(Container &&c)
69 template <typename Container>
70 iterator_range(Container &&)
71 -> iterator_range<llvm::detail::IterOfRange<Container>>;
/freebsd/crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/
H A Dldap_krbcontainer.c36 * Read the kerberos container location from krb5.conf.
51 /* read kerberos container location from [dbmodules] section of krb5.conf file */ in krb5_ldap_read_krbcontainer_dn()
56 k5_setmsg(context, st, _("Error reading kerberos container " in krb5_ldap_read_krbcontainer_dn()
62 /* read kerberos container location from [dbdefaults] section of krb5.conf file */ in krb5_ldap_read_krbcontainer_dn()
67 k5_setmsg(context, st, _("Error reading kerberos container " in krb5_ldap_read_krbcontainer_dn()
75 k5_setmsg(context, st, _("Kerberos container location not specified")); in krb5_ldap_read_krbcontainer_dn()

12345678910>>...38