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

1234567891011>>

/freebsd-10.0-release/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.0-release/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.0-release/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.0-release/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.0-release/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
617 int token; local
680 int token; local
878 int token; local
924 int token; local
[all...]
/freebsd-10.0-release/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.0-release/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.0-release/contrib/ntp/libntp/
H A Dauthreadkeys.c40 * Save this and space to end of token
48 * If token length is zero return an error, else set end of
49 * token to zero and return start.
74 char *token; local
97 token = nexttok(&line);
98 if (token == 0)
104 keyno = atoi(token);
108 token);
115 NTP_MAXKEY, token);
122 token
[all...]
/freebsd-10.0-release/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.0-release/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.0-release/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.0-release/contrib/ntp/scripts/
H A Dhtml2man.in89 # $token->[0] has "T", "S", "E" for Text, Start, End
90 # $token->[1] has the tag name, or text (for "T" case)
92 while (my $token = $p->get_token) {
93 if($token->[0] eq "T") {
94 my $text = $token->[1];
104 if($token->[0] eq "S") {
105 if($token->[1] eq "h4") {
109 if($token->[1] eq "tt") {
113 if($token->[1] eq "i") {
117 if($token
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_diff/
H A Dtoken.c2 * token.c : routines for doing diffs
50 void *token; member in struct:svn_diff__node_t
71 * Support functions to build a tree of token positions
87 apr_uint32_t hash, void *token)
94 SVN_ERR_ASSERT(token);
105 SVN_ERR(vtable->token_compare(diff_baton, parent->token, token, &rv));
109 /* Discard the previous token. This helps in cases where
113 vtable->token_discard(diff_baton, parent->token);
115 parent->token
84 tree_insert_token(svn_diff__node_t **node, svn_diff__tree_t *tree, void *diff_baton, const svn_diff_fns2_t *vtable, apr_uint32_t hash, void *token) argument
162 void *token; local
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/compiler/
H A Daslcompiler.y124 %token <i> PARSEOP_ACCESSAS
125 %token <i> PARSEOP_ACCESSATTRIB_BLOCK
126 %token <i> PARSEOP_ACCESSATTRIB_BLOCK_CALL
127 %token <i> PARSEOP_ACCESSATTRIB_BYTE
128 %token <i> PARSEOP_ACCESSATTRIB_MULTIBYTE
129 %token <i> PARSEOP_ACCESSATTRIB_QUICK
130 %token <i> PARSEOP_ACCESSATTRIB_RAW_BYTES
131 %token <i> PARSEOP_ACCESSATTRIB_RAW_PROCESS
132 %token <i> PARSEOP_ACCESSATTRIB_SND_RCV
133 %token <
[all...]
/freebsd-10.0-release/contrib/amd/fsinfo/
H A Dfsi_gram.y66 %token tARCH
67 %token tAS
68 %token tAUTOMOUNT
69 %token tCLUSTER
70 %token tCONFIG
71 %token tDUMPSET
72 %token tEQ
73 %token tNFSEQ
74 %token tEXPORTFS
75 %token tFRE
[all...]
/freebsd-10.0-release/contrib/byacc/test/
H A Dquote_calc.y15 %token OP_ADD "ADD"
16 %token OP_SUB "SUB"
17 %token OP_MUL "MUL"
18 %token OP_DIV "DIV"
19 %token OP_MOD "MOD"
20 %token OP_AND "AND"
22 %token DIGIT LETTER
H A Dquote_calc2.y15 %token OP_ADD "ADD"
16 %token OP_SUB "SUB"
17 %token OP_MUL "MUL"
18 %token OP_DIV "DIV"
19 %token OP_MOD "MOD"
20 %token OP_AND "AND"
22 %token DIGIT LETTER
H A Dquote_calc3.y15 %token OP_ADD "ADD-operator"
16 %token OP_SUB "SUB-operator"
17 %token OP_MUL "MUL-operator"
18 %token OP_DIV "DIV-operator"
19 %token OP_MOD "MOD-operator"
20 %token OP_AND "AND-operator"
22 %token DIGIT LETTER
H A Dquote_calc4.y15 %token OP_ADD "ADD-operator"
16 %token OP_SUB "SUB-operator"
17 %token OP_MUL "MUL-operator"
18 %token OP_DIV "DIV-operator"
19 %token OP_MOD "MOD-operator"
20 %token OP_AND "AND-operator"
22 %token DIGIT LETTER
/freebsd-10.0-release/tools/regression/usr.bin/yacc/
H A Dquote_calc.y15 %token OP_ADD "ADD"
16 %token OP_SUB "SUB"
17 %token OP_MUL "MUL"
18 %token OP_DIV "DIV"
19 %token OP_MOD "MOD"
20 %token OP_AND "AND"
22 %token DIGIT LETTER
H A Dquote_calc2.y15 %token OP_ADD "ADD"
16 %token OP_SUB "SUB"
17 %token OP_MUL "MUL"
18 %token OP_DIV "DIV"
19 %token OP_MOD "MOD"
20 %token OP_AND "AND"
22 %token DIGIT LETTER
H A Dquote_calc3.y15 %token OP_ADD "ADD-operator"
16 %token OP_SUB "SUB-operator"
17 %token OP_MUL "MUL-operator"
18 %token OP_DIV "DIV-operator"
19 %token OP_MOD "MOD-operator"
20 %token OP_AND "AND-operator"
22 %token DIGIT LETTER
H A Dquote_calc4.y15 %token OP_ADD "ADD-operator"
16 %token OP_SUB "SUB-operator"
17 %token OP_MUL "MUL-operator"
18 %token OP_DIV "DIV-operator"
19 %token OP_MOD "MOD-operator"
20 %token OP_AND "AND-operator"
22 %token DIGIT LETTER

Completed in 226 milliseconds

1234567891011>>