• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lib-src/

Lines Matching +defs:token +defs:pos

109 enum token
265 int pos; /* Buffer position of occurrence. */
308 int pos; /* Buffer position. */
354 unsigned yyival; /* Set for token CINT. */
355 char *yytext; /* Set for token IDENT. */
451 /* The current lookahead token. */
779 add_member_decl (cls, name, regexp, pos, hash, var, sc, vis, flags)
783 int pos;
801 m->pos = pos;
836 add_member_defn (cls, name, regexp, pos, hash, var, sc, flags)
840 int pos;
872 m->def_pos = pos;
886 add_define (name, regexp, pos)
888 int pos;
890 add_global_defn (name, regexp, pos, 0, 1, SC_FRIEND, F_DEFINE);
891 add_global_decl (name, regexp, pos, 0, 1, SC_FRIEND, F_DEFINE);
906 add_global_defn (name, regexp, pos, hash, var, sc, flags)
908 int pos;
924 add_member_defn (sym, name, regexp, pos, hash, 0,
928 add_member_defn (global_symbols, name, regexp, pos, hash, var, sc, flags);
943 add_global_decl (name, regexp, pos, hash, var, sc, flags)
945 int pos;
971 m->pos = pos;
1010 m->pos = 0;
1367 fprintf (fp, "%u ", (unsigned) m->pos);
1403 fprintf (fp, "%u", (unsigned) root->pos);
1575 int pos = BUFFER_POS ();
1576 add_define (yytext, regexp, pos);
1607 /* Value is the next token from the input buffer. */
1875 yyerror ("invalid token '..' ('...' assumed)", NULL);
2075 /* Return a printable representation of token T. */
2210 /* Insert a keyword NAME with token value TK into the keyword hash
2342 /* Match the current lookahead token and set it to the next token. */
2346 /* Return the lookahead token. If current lookahead token is cleared,
2347 read a new token. */
2351 /* Is the current lookahead equal to the token T? */
2368 /* Match token T if current lookahead is T. */
2372 /* Skip to matching token if current token is T. */
2378 /* Skip forward until a given token TOKEN or YYEOF is seen and return
2379 the current lookahead token after skipping. */
2382 skip_to (token)
2383 int token;
2385 while (!LOOKING_AT2 (YYEOF, token))
2498 /* Re-initialize the parser by resetting the lookahead token. */
2650 int pos;
2752 pos = BUFFER_POS ();
2759 add_member_decl (cls, id, regexp, pos, hash, 0, sc, vis, flags);
2765 add_member_defn (cls, id, regexp, pos, hash, 0, sc, flags);
2813 pos = BUFFER_POS ();
2818 add_member_decl (cls, id, regexp, pos, 0, 1, sc, vis, 0);
2820 add_member_decl (cls, id, regexp, pos, hash, 0, sc, vis, 0);
2833 pos = BUFFER_POS ();
2837 add_member_decl (cls, id, regexp, pos, 0, 1, sc, vis, 0);
2838 add_member_defn (cls, id, regexp, pos, 0, 1, sc, 0);
3164 current->pos = BUFFER_POS ();
3261 int pos = BUFFER_POS ();
3264 add_member_defn (*cls, *id, regexp, pos, 0, 1, SC_UNKNOWN, flags);
3266 add_global_defn (*id, regexp, pos, 0, 1, sc, flags);
3278 int pos = BUFFER_POS ();
3279 add_global_defn (*id, regexp, pos, 0, 1, sc, flags);
3300 int pos = 0;
3395 pos = BUFFER_POS ();
3402 add_member_defn (cls, id, regexp, pos, hash, 0,
3415 pos = BUFFER_POS ();
3417 add_global_decl (id, regexp, pos, hash, 0, sc, flags);
3431 add_global_defn (id, regexp, pos, hash, 0, sc, flags);