Lines Matching defs:ident
61 struct ident *protect;
70 struct ident {
71 struct ident *next; /* Hash chain of identifiers */
191 struct ident *ident;
221 extern struct ident *hash_ident(struct ident *);
222 extern struct ident *built_in_ident(const char *);
223 extern struct token *built_in_token(int, struct ident *);
225 extern const char *show_ident(const struct ident *);
240 static inline int match_ident(struct token *token, struct ident *id)
242 return token->pos.type == TOKEN_IDENT && token->ident == id;