Searched refs:container (Results 1 - 22 of 22) sorted by relevance

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DAttrIterator.h116 specific_attr_begin(const Container& container) { argument
117 return specific_attr_iterator<SpecificAttr, Container>(container.begin());
121 specific_attr_end(const Container& container) { argument
122 return specific_attr_iterator<SpecificAttr, Container>(container.end());
126 inline bool hasSpecificAttr(const Container& container) { argument
127 return specific_attr_begin<SpecificAttr>(container) !=
128 specific_attr_end<SpecificAttr>(container);
131 inline SpecificAttr *getSpecificAttr(const Container& container) { argument
133 specific_attr_begin<SpecificAttr>(container);
134 if (i != specific_attr_end<SpecificAttr>(container))
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dtree-iterator.c73 gcc_assert (t != i->container);
100 TREE_SIDE_EFFECTS (i->container) = 1;
111 STATEMENT_LIST_HEAD (i->container) = head;
117 head->prev = STATEMENT_LIST_TAIL (i->container);
121 STATEMENT_LIST_HEAD (i->container) = head;
122 STATEMENT_LIST_TAIL (i->container) = tail;
149 gcc_assert (t != i->container);
176 TREE_SIDE_EFFECTS (i->container) = 1;
187 STATEMENT_LIST_TAIL (i->container) = tail;
193 gcc_assert (!STATEMENT_LIST_TAIL (i->container));
[all...]
H A Dtree-iterator.h35 tree container; member in struct:__anon1219
44 i.container = t;
55 i.container = t;
H A Dbasic-block.h660 VEC(edge,gc) **container;
666 gcc_assert (i.container);
667 return *i.container;
680 i.container = ev;
693 i.container = ev;
659 VEC(edge,gc) **container; member in struct:__anon1015
H A Dtree-flow-inline.h655 bsi.tsi.container = NULL;
687 bsi.tsi.container = NULL;
/freebsd-9.3-release/sys/dev/aac/
H A Daac_debug.c228 " BlockRead: container %d 0x%x/%d\n",
235 " BlockWrite: container %d 0x%x/%d "
281 case AifEnContainerChange: /* Adapter specific container
284 "container %d,%d\n",
285 aif->data.EN.data.ECC.container[0],
286 aif->data.EN.data.ECC.container[1]);
295 "container %d failed, "
297 aif->data.EN.data.EMF.container,
301 case AifEnContainerEvent: /* Significant container
304 "container
[all...]
H A Daacreg.h840 struct aac_AifContainers container; /* For Container and member in union:aac_AifJobClient
872 AifEnContainerChange, /* Adapter specific container
876 AifEnContainerEvent, /* Significant container event */
884 AifEnAddContainer, /* A new container was created. */
885 AifEnDeleteContainer, /* A container was deleted. */
890 AifEnContainerScsiEvent, /* a container event with no. and scsi id */
916 u_int32_t container; /* Container with failed element */ member in struct:aac_AifEnsMirrorFailover
922 u_int32_t container[2]; /* container that changed, -1 if no member in struct:aac_AifEnsContainerChange
923 * container */
927 u_int32_t container; /* container number */ member in struct:aac_AifEnsContainerEvent
[all...]
H A Daac.c268 mtx_init(&sc->aac_container_lock, "AAC container lock", NULL, MTX_DEF);
385 * Request information of container #cid
401 device_printf(sc->aac_dev, "Error probing container %d\n", cid);
453 * Create a device to represent a new container
462 * Check container volume type for validity. Note that many of
2886 * container, rather we rely on an AIF coming from the
3230 * A container was added or deleted, but the message
3248 * Check the container against our list.
3266 * If the container matched, continue
3275 * This is a new container
[all...]
/freebsd-9.3-release/sys/dev/aacraid/
H A Daacraid_debug.c142 " BlockRead: container %d 0x%x/%d\n",
149 " BlockWrite: container %d 0x%x/%d "
195 case AifEnContainerChange: /* Adapter specific container
198 "container %d,%d\n",
199 aif->data.EN.data.ECC.container[0],
200 aif->data.EN.data.ECC.container[1]);
209 "container %d failed, "
211 aif->data.EN.data.EMF.container,
215 case AifEnContainerEvent: /* Significant container
218 "container
[all...]
H A Daacraid_reg.h829 struct aac_AifContainers container; /* For Container and member in union:aac_AifJobClient
861 AifEnContainerChange, /* Adapter specific container
865 AifEnContainerEvent, /* Significant container event */
873 AifEnAddContainer, /* A new container was created. */
874 AifEnDeleteContainer, /* A container was deleted. */
879 AifEnContainerScsiEvent, /* a container event with no. and scsi id */
907 u_int32_t container; /* Container with failed element */ member in struct:aac_AifEnsMirrorFailover
913 u_int32_t container[2]; /* container that changed, -1 if no member in struct:aac_AifEnsContainerChange
914 * container */
918 u_int32_t container; /* container number */ member in struct:aac_AifEnsContainerEvent
[all...]
H A Daacraid.c440 * Request information of container #cid
477 device_printf(sc->aac_dev, "Error probing container %d\n", cid);
497 device_printf(sc->aac_dev, "Error probing container %d\n", cid);
551 * Create a device to represent a new container
562 * Check container volume type for validity. Note that many of
2650 * container, rather we rely on an AIF coming from the
3098 * A container was added or deleted, but the message
3117 * Check the container against our list.
3135 * If the container matched, continue
3144 * This is a new container
[all...]
/freebsd-9.3-release/contrib/libcxxrt/
H A Dlibelftc_dem_gnu3.c53 char **container; member in struct:vector_str
120 len += strlen(v->container[i]);
137 free(v->container[i]);
139 free(v->container);
158 if (strncmp(v->container[i], o, l) == 0)
190 elem_size = strlen(v->container[i]);
192 memcpy(rtn + elem_pos, v->container[i], elem_size);
224 tmp_ctn[i] = v->container[i];
226 free(v->container);
228 v->container
[all...]
/freebsd-9.3-release/contrib/libstdc++/include/bits/
H A Dstl_iterator.h377 * These are output iterators, constructed from a container-of-T.
378 * Assigning a T to the iterator appends it to the container using
389 _Container* container; member in class:back_insert_iterator
392 /// A nested typedef for the type of whatever container you used.
395 /// The only way to create this %iterator is with a container.
397 back_insert_iterator(_Container& __x) : container(&__x) { }
402 * reference-to-const T for container<T>.
406 * container (you can think of the position as being permanently at
408 * always append the value to the end of the container.
413 container
464 _Container* container; member in class:front_insert_iterator
542 _Container* container; member in class:insert_iterator
[all...]
/freebsd-9.3-release/sys/kern/
H A Dkern_module.c152 module_register(const moduledata_t *data, linker_file_t container) argument
180 if (container)
181 TAILQ_INSERT_TAIL(&container->modules, newmod, flink);
182 newmod->file = container;
H A Dkern_linker.c128 linker_file_t container; member in struct:modlist
487 *result = mod->container;
514 lf = mod->container;
679 if (ml->container == file) {
1386 modlist_newmodule(const char *modname, int version, linker_file_t container) argument
1393 mod->container = container;
1600 if (lf == mod->container)
1602 mod->container->refs++;
1604 mod->container);
[all...]
/freebsd-9.3-release/lib/liblzma/
H A DMakefile18 container.h \
/freebsd-9.3-release/contrib/libucl/src/
H A Ducl_parser.c909 ucl_hash_t *container; local
1089 container = parser->stack->obj->value.ov;
1092 tobj = ucl_hash_search_obj (container, nobj);
1094 container = ucl_hash_insert_object (container, nobj);
1106 parser->stack->obj->value.ov = container;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Index/
H A DUSRGeneration.cpp288 const DeclContext *container = D->getDeclContext(); local
289 if (const ObjCProtocolDecl *pd = dyn_cast<ObjCProtocolDecl>(container)) {
312 llvm_unreachable("Invalid ObjC container.");
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclObjC.cpp2858 ObjCContainerDecl *container
2861 // Prevent the search from reaching this container again. This is
2864 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(container)) {
2865 searchFromContainer(container);
2869 searchFromContainer(container);
2878 void searchFromContainer(ObjCContainerDecl *container) { argument
2879 if (container->isInvalidDecl()) return;
2881 switch (container->getDeclKind()) {
2884 searchFrom(cast<type##Decl>(container)); \
2890 llvm_unreachable("not an ObjC container!");
2960 search(ObjCContainerDecl *container) argument
[all...]
/freebsd-9.3-release/contrib/gcc/config/i386/
H A Di386.c3603 /* Construct container for the argument used by GCC interface. See
4627 rtx container;
4654 container = construct_container (nat_mode, TYPE_MODE (type), type, 0,
4662 if (container)
4673 need_temp = (!REG_P (container)
4679 if (!need_temp && !REG_P (container))
4682 if (SSE_REGNO_P (REGNO (XEXP (XVECEXP (container, 0, 0), 0))))
4686 for (i = 0; i < XVECLEN (container, 0) && !need_temp; i++)
4688 rtx slot = XVECEXP (container, 0, i);
4698 for (i = 0; i < XVECLEN (container,
4618 rtx container; local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang-c/
H A DIndex.h2391 * \brief A fast container representing a set of CXCursors.
5038 * \brief Returns the cursor kind for the container for the current code
5039 * completion context. The container is only guaranteed to be set for
5040 * contexts where a container exists (i.e. member accesses or Objective-C
5041 * message sends); if there is not a container, this function will return
5047 * information about the container. If Clang does not have complete
5050 * \returns the container kind, or CXCursor_InvalidCode if there is not a
5051 * container
5059 * \brief Returns the USR for the container for the current code completion
5060 * context. If there is not a container fo
5583 const CXIdxContainerInfo *container; member in struct:__anon2948
[all...]
/freebsd-9.3-release/contrib/libstdc++/include/ext/
H A Dropeimpl.h1664 rope<_CharT, _Alloc>& __r(__first.container());

Completed in 304 milliseconds