Lines Matching defs:where
234 static inline struct token *scan_next(struct token **where)
236 struct token *token = *where;
243 *where = token;
602 static struct token **copy(struct token **where, struct token *list, int *count)
613 *where = token;
614 where = &token->next;
617 *where = &eof_token_entry;
618 return where;
869 * -isystem dir adds dir where isys_includepath points adding this dir as
899 static int try_include(struct position pos, const char *path, const char *filename, int flen, struct token **where, const char **next_path)
916 *where = tokenize(&pos, streamname, fd, *where, next_path);
1611 static int expression_value(struct token **where)
1615 struct token **list = where, **beginning = NULL;
1662 p = constant_expression(*where, &expr);
1775 static inline void update_inc_ptrs(const char ***where)
1778 if (*where <= dirafter_includepath) {
1783 if (where == &dirafter_includepath)
1786 if (*where <= sys_includepath) {
1788 if (where == &sys_includepath)
1791 if (*where <= isys_includepath) {
1793 if (where == &isys_includepath)
1799 if (*where <= angle_includepath) {
1801 if (where == &angle_includepath)
1806 /* Add a path before 'where' and update the pointers associated with the
1809 const char ***where)
1826 dst = *where;
1828 update_inc_ptrs(where);