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

1234567891011>>

/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Dasltokens.y4 * Module Name: asltokens.y - Bison/Yacc token types
174 %token <i> PARSEOP_ACCESSAS
175 %token <i> PARSEOP_ACCESSATTRIB_BLOCK
176 %token <i> PARSEOP_ACCESSATTRIB_BLOCK_CALL
177 %token <i> PARSEOP_ACCESSATTRIB_BYTE
178 %token <i> PARSEOP_ACCESSATTRIB_MULTIBYTE
179 %token <i> PARSEOP_ACCESSATTRIB_QUICK
180 %token <i> PARSEOP_ACCESSATTRIB_RAW_BYTES
181 %token <i> PARSEOP_ACCESSATTRIB_RAW_PROCESS
182 %token <
[all...]
/freebsd-11-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-11-stable/contrib/amd/fsinfo/
H A Dnull_gram.y8 token: label
/freebsd-11-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-11-stable/usr.bin/localedef/
H A Dparser.y47 char *token;
52 %token T_CODE_SET
53 %token T_MB_CUR_MAX
54 %token T_MB_CUR_MIN
55 %token T_COM_CHAR
56 %token T_ESC_CHAR
57 %token T_LT
58 %token T_GT
59 %token T_NL
60 %token T_SEM
[all...]
/freebsd-11-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-11-stable/sbin/dhclient/
H A Dparse.c54 * leaving the brace in the token buffer for the caller. If we see a
68 int brace_count = 0, token; local
72 token = peek_token(&val, cfile);
73 if (token == RBRACE) {
75 token = next_token(&val, cfile);
80 } else if (token == LBRACE) {
82 } else if (token == SEMI && !brace_count) {
83 token = next_token(&val, cfile);
85 } else if (token == '\n') {
92 token
102 int token; local
122 int token; local
159 int token; local
220 int token; local
248 int token; local
441 int guess, token; local
[all...]
H A Dclparse.c66 int token; local
110 token = peek_token(&val, cfile);
111 if (token == EOF)
115 token = next_token(&val, cfile); /* Clear the peek buffer */
154 int token; local
163 token = next_token(&val, cfile);
164 if (token == EOF)
166 if (token != LEASE) {
200 int token; local
290 token
300 int token; local
350 int token; local
393 int token; local
493 int token; local
620 int token; local
683 int token; local
884 int token; local
930 int token; local
[all...]
/freebsd-11-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-11-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-11-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-11-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-11-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-11-stable/sys/contrib/rdma/krping_compat/
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-11-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-11-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...]
/freebsd-11-stable/contrib/wpa/src/utils/
H A Djson.c191 static int json_check_tree_state(struct json_token *token) argument
193 if (!token)
195 if (json_check_tree_state(token->child) < 0 ||
196 json_check_tree_state(token->sibling) < 0)
198 if (token->state != JSON_COMPLETED) {
200 "JSON: Unexpected token state %d (name=%s type=%d)",
201 token->state, token->name ? token->name : "N/A",
202 token
222 struct json_token *root = NULL, *curr_token = NULL, *token = NULL; local
493 struct json_token *token, *ret = NULL; local
509 struct json_token *token; local
551 json_print_token(struct json_token *token, int depth, char *buf, size_t buflen) argument
[all...]

Completed in 211 milliseconds

1234567891011>>