Home | History | Annotate | Download | only in include

Lines Matching defs:constructor_elt

1495 #define CONSTRUCTOR_ELT(NODE,IDX) \
1496 (VEC_index (constructor_elt, CONSTRUCTOR_ELTS (NODE), IDX))
1497 #define CONSTRUCTOR_NELTS(NODE) (VEC_length (constructor_elt, CONSTRUCTOR_ELTS (NODE)))
1499 /* Iterate through the vector V of CONSTRUCTOR_ELT elements, yielding the
1503 for (IX = 0; (IX >= VEC_length (constructor_elt, V)) \
1505 : ((VAL = VEC_index (constructor_elt, V, IX)->value), \
1509 /* Iterate through the vector V of CONSTRUCTOR_ELT elements, yielding both
1513 for (IX = 0; (IX >= VEC_length (constructor_elt, V)) \
1515 : ((VAL = VEC_index (constructor_elt, V, IX)->value), \
1516 (INDEX = VEC_index (constructor_elt, V, IX)->index), \
1523 constructor_elt *_ce___ = VEC_safe_push (constructor_elt, gc, V, NULL); \
1536 } constructor_elt;
1538 DEF_VEC_O(constructor_elt);
1539 DEF_VEC_ALLOC_O(constructor_elt,gc);
1544 VEC(constructor_elt,gc) *elts;
3978 extern tree build_vector_from_ctor (tree, VEC(constructor_elt,gc) *);
3979 extern tree build_constructor (tree, VEC(constructor_elt,gc) *);