Home | History | Annotate | Download | only in c

Lines Matching refs:iterators

15886    iterators ( iterators-definition )
15888 iterators-definition:
15890 iterator-specifier , iterators-definition
15988 iterator ( iterators-definition ) */
15994 tree nl, iterators = NULL_TREE;
16017 iterators = c_parser_omp_iterators (parser);
16020 if (iterators)
16029 if (iterators)
16032 if (iterators != error_mark_node)
16034 TREE_VEC_ELT (iterators, 5) = block;
16036 OMP_CLAUSE_DECL (c) = build_tree_list (iterators,
16064 iterator ( iterators-definition ) */
16071 tree nl, c, iterators = NULL_TREE;
16083 if (strcmp ("iterator", p) == 0 && iterators == NULL_TREE)
16085 iterators = c_parser_omp_iterators (parser);
16111 if (iterators
16117 iterators = NULL_TREE;
16140 if (iterators)
16143 if (iterators == error_mark_node)
16144 iterators = NULL_TREE;
16146 TREE_VEC_ELT (iterators, 5) = block;
16152 if (iterators)
16154 = build_tree_list (iterators, OMP_CLAUSE_DECL (c));
16165 if (iterators)
19526 /* Check for iterators appearing in lb, b or incr expressions. */