Searched refs:token (Results 1 - 25 of 463) sorted by relevance

1234567891011>>

/freebsd-10-stable/sys/contrib/dev/acpica/compiler/
H A Dasltokens.y4 * Module Name: asltokens.y - Bison/Yacc token types
56 %token <i> PARSEOP_ACCESSAS
57 %token <i> PARSEOP_ACCESSATTRIB_BLOCK
58 %token <i> PARSEOP_ACCESSATTRIB_BLOCK_CALL
59 %token <i> PARSEOP_ACCESSATTRIB_BYTE
60 %token <i> PARSEOP_ACCESSATTRIB_MULTIBYTE
61 %token <i> PARSEOP_ACCESSATTRIB_QUICK
62 %token <i> PARSEOP_ACCESSATTRIB_RAW_BYTES
63 %token <i> PARSEOP_ACCESSATTRIB_RAW_PROCESS
64 %token <
[all...]
/freebsd-10-stable/contrib/byacc/test/
H A Derr_syntax3.y6 %token <text> '(' '*' '&
H A Derr_syntax6.y6 %token <text) '(' '*' '&
H A Derr_syntax10.y6 %token <text> '(' '*' '&'
7 %token <TEXT> '(' '*' '&'
H A Derr_syntax12.y6 %token text 123
7 %token text 456
H A Derr_syntax7.y6 %token <text> '\777'
H A Derr_syntax7a.y6 %token <text> '\xfff'
H A Derr_syntax7b.y6 %token <text> '\x.'
H A Derr_syntax8.y6 %token . '\777'
H A Derr_syntax8a.y6 %token $$123 '\777'
/freebsd-10-stable/contrib/amd/fsinfo/
H A Dnull_gram.y8 token: label
/freebsd-10-stable/contrib/gcc/
H A Dscan-decls.c46 /* Get a token but skip padding. */
64 enum cpp_ttype token = get_a_token (pfile)->type; local
66 if (token == CPP_EOF)
68 if (token == CPP_OPEN_BRACE)
70 if (token == CPP_CLOSE_BRACE && --nesting == 0)
103 const cpp_token *token; local
106 token = get_a_token (pfile);
112 if (token->type == CPP_OPEN_BRACE)
121 if (token->type == CPP_OPEN_BRACE)
127 if (token
[all...]
/freebsd-10-stable/usr.bin/csup/
H A Drcsparse.c56 asserttoken(yyscan_t *sp, int token) argument
60 t = token;
62 assert(t == token);
119 int strict, token; local
133 token = rcslex(*sp);
134 if (token == KEYWORD_TWO) {
140 token = rcslex(*sp);
144 assert(token == KEYWORD);
145 token = rcslex(*sp);
146 while (token
226 parse_deltas(struct rcsfile *rf, yyscan_t *sp, int token) argument
303 parse_deltatexts(struct rcsfile *rf, yyscan_t *sp, int token) argument
[all...]
H A Dparse.y33 #include "token.h"
42 %token DEFAULT
43 %token <i> NAME
44 %token <i> BOOLEAN
45 %token EQUAL
46 %token <str> STRING
/freebsd-10-stable/contrib/libyaml/src/
H A Dparser.c45 * Peek the next token in the token queue.
53 * Remove the next token from the queue (must be called after PEEK_TOKEN).
315 yaml_token_t *token; local
317 token = PEEK_TOKEN(parser);
318 if (!token) return 0;
320 if (token->type != YAML_STREAM_START_TOKEN) {
322 "did not find expected <stream-start>", token->start_mark);
326 STREAM_START_EVENT_INIT(*event, token->data.stream_start.encoding,
327 token
345 yaml_token_t *token; local
442 yaml_token_t *token; local
472 yaml_token_t *token; local
532 yaml_token_t *token; local
729 yaml_token_t *token; local
788 yaml_token_t *token; local
838 yaml_token_t *token; local
904 yaml_token_t *token; local
954 yaml_token_t *token; local
1016 yaml_token_t *token; local
1046 yaml_token_t *token; local
1077 yaml_token_t *token; local
1106 yaml_token_t *token; local
1177 yaml_token_t *token; local
1250 yaml_token_t *token; local
[all...]
/freebsd-10-stable/contrib/groff/src/preproc/eqn/
H A Deqn.y40 %token OVER
41 %token SMALLOVER
42 %token SQRT
43 %token SUB
44 %token SUP
45 %token LPILE
46 %token RPILE
47 %token CPILE
48 %token PILE
49 %token LEF
[all...]
/freebsd-10-stable/sbin/dhclient/
H A Dparse.c52 * leaving the brace in the token buffer for the caller. If we see a
66 int brace_count = 0, token; local
70 token = peek_token(&val, cfile);
71 if (token == RBRACE) {
73 token = next_token(&val, cfile);
78 } else if (token == LBRACE) {
80 } else if (token == SEMI && !brace_count) {
81 token = next_token(&val, cfile);
83 } else if (token == '\n') {
90 token
100 int token; local
120 int token; local
157 int token, hlen; local
217 int token; local
245 int token, count = 0; local
437 int guess, token; local
[all...]
H A Dclparse.c66 int token; local
108 token = peek_token(&val, cfile);
109 if (token == EOF)
113 token = next_token(&val, cfile); /* Clear the peek buffer */
152 int token; local
161 token = next_token(&val, cfile);
162 if (token == EOF)
164 if (token != LEASE) {
198 int token; local
288 token
298 int token; local
348 int token; local
391 int token; local
491 int token; local
618 int token; local
681 int token; local
882 int token; local
928 int token; local
[all...]
/freebsd-10-stable/contrib/binutils/binutils/
H A Darparse.y43 %token NEWLINE
44 %token VERBOSE
45 %token <name> FILENAME
46 %token ADDLIB
47 %token LIST
48 %token ADDMOD
49 %token CLEAR
50 %token CREATE
51 %token DELETE
52 %token DIRECTOR
[all...]
/freebsd-10-stable/contrib/apr/strings/
H A Dapr_strtok.c29 char *token; local
41 token = str;
43 /* skip valid token characters to terminate token and
46 *last = token + 1;
55 return token;
/freebsd-10-stable/contrib/groff/src/roff/troff/
H A Dtoken.h27 class token { class
65 token();
66 ~token();
67 token(const token &);
68 void operator=(const token &);
74 int space(); // is the current token a space?
75 int stretchable_space(); // is the current token a stretchable space?
76 int unstretchable_space(); // is the current token an unstretchable space?
77 int white_space(); // is the current token spac
[all...]
/freebsd-10-stable/sys/contrib/rdma/krping/
H A Dgetopt.c33 char *token; local
37 if ((token = strsep(options, ",")) == NULL)
39 } while (*token == '\0');
41 *optopt = token;
43 if ((val = strchr (token, '=')) != NULL) {
48 if (!strcmp(opts->name, token)) {
54 "an argument\n", caller, token);
65 "in %s=%s\n", caller, token, val);
72 "%s option\n", caller, val, token);
76 printk(KERN_INFO "%s: Unrecognized option %s\n", caller, token);
[all...]
/freebsd-10-stable/usr.bin/rpcgen/
H A Drpc_scan.h118 * a token
120 struct token { struct
124 typedef struct token token; typedef in typeref:struct:token
130 void scan(tok_kind expect, token *tokp);
131 void scan2(tok_kind expect1, tok_kind expect2, token *tokp);
132 void scan3(tok_kind expect1, tok_kind expect2, tok_kind expect3, token *tokp);
133 void scan_num(token *tokp);
134 void peek(token *tokp);
135 int peekscan(tok_kind expect, token *tok
[all...]
/freebsd-10-stable/contrib/ntp/scripts/deprecated/
H A Dhtml2man.in94 # $token->[0] has "T", "S", "E" for Text, Start, End
95 # $token->[1] has the tag name, or text (for "T" case)
97 while (my $token = $p->get_token) {
98 if($token->[0] eq "T") {
99 my $text = $token->[1];
116 if($token->[0] eq "S") {
117 if($token->[1] eq "h4") {
132 if($token->[1] eq "tt") {
136 if($token->[1] eq "i") {
140 if($token
[all...]
/freebsd-10-stable/contrib/ntp/libjsmn/
H A Djsmn.c6 * Allocates a fresh unused token from the token pull.
24 * Fills token type and boundaries.
26 static void jsmn_fill_token(jsmntok_t *token, jsmntype_t type, argument
28 token->type = type;
29 token->start = start;
30 token->end = end;
31 token->size = 0;
35 * Fills next available token with JSON primitive.
39 jsmntok_t *token; local
88 jsmntok_t *token; local
157 jsmntok_t *token; local
[all...]

Completed in 320 milliseconds

1234567891011>>