Searched refs:token (Results 76 - 100 of 1018) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl2/groff/dist/src/preproc/pic/
H A Dpic.y86 %token <str> LABEL
87 %token <str> VARIABLE
88 %token <x> NUMBER
89 %token <lstr> TEXT
90 %token <lstr> COMMAND_LINE
91 %token <str> DELIMITED
92 %token <n> ORDINAL
93 %token TH
94 %token LEFT_ARROW_HEAD
95 %token RIGHT_ARROW_HEA
[all...]
/netbsd-current/external/mpl/dhcp/dist/keama/
H A Djson.c41 enum dhcp_token token; local
48 token = next_token(&val, NULL, cfile);
49 switch (token) {
90 enum dhcp_token token; local
97 token = peek_token(&val, NULL, cfile);
98 switch (token) {
131 enum dhcp_token token; local
138 token = peek_token(&val, NULL, cfile);
139 switch (token) {
149 token
[all...]
H A Dparse.c101 enum dhcp_token token; local
105 token = peek_token(&val, NULL, cfile);
106 if (token == RBRACE) {
116 } else if (token == LBRACE) {
118 } else if (token == SEMI && (brace_count == 0)) {
122 } else if (token == EOL) {
130 /* Eat the current token */
131 token = next_token(&val, NULL, cfile);
132 } while (token != END_OF_FILE);
138 enum dhcp_token token; local
152 enum dhcp_token token; local
182 enum dhcp_token token; local
223 enum dhcp_token token; local
332 enum dhcp_token token; local
403 enum dhcp_token token; local
475 enum dhcp_token token; local
653 enum dhcp_token token; local
776 int token; local
943 enum dhcp_token token; local
1291 enum dhcp_token token; local
1500 enum dhcp_token token; local
1534 enum dhcp_token token; local
1601 enum dhcp_token token; local
2105 int token; local
2217 int token; local
2318 enum dhcp_token token; local
2384 enum dhcp_token token; local
2447 enum dhcp_token token; local
2486 enum dhcp_token token; local
2697 enum dhcp_token token; local
3626 enum dhcp_token token; local
3940 enum dhcp_token token; local
4057 enum dhcp_token token; local
4222 enum dhcp_token token; local
4399 enum dhcp_token token; local
4519 enum dhcp_token token; local
4654 enum dhcp_token token; local
4702 enum dhcp_token token; local
4842 enum dhcp_token token; local
[all...]
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A DQLParser.tab.hh467 struct token struct in class:QL::Parser
474 L_YYUNDEF = 257, // "invalid token"
520 typedef token::token_kind_type token_kind_type;
534 S_YYUNDEF = 2, // "invalid token"
783 /// Type access provider for token (enum) based symbols.
800 /// Constructor from (external) token numbers.
845 YY_ASSERT (tok == token::L_YYEOF
846 || (token::L_YYerror <= tok && tok <= token::L_FILEIOVFD)
847 || (token
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dparse.c94 const utf8_t *comment = token.blockComment;
101 if (skipAttributes(&token, &tk) && tk->value == TOKmodule)
103 while (token.value != TOKmodule)
105 switch (token.value)
119 if (token.value == TOKlparen)
135 error("@%s attribute for module declaration is not supported", token.toChars());
147 error("'module' expected instead of %s", token.toChars());
163 if (token.value == TOKmodule)
165 Loc loc = token.loc;
168 if (token
[all...]
/netbsd-current/external/bsd/elftosb/dist/elftosb2/
H A Delftosb_parser.y6 /* write header with token defines */
75 /* token definitions */
76 %token <m_str> TOK_IDENT "identifier"
77 %token <m_str> TOK_STRING_LITERAL "string"
78 %token <m_int> TOK_INT_LITERAL "integer"
79 %token <m_str> TOK_SECTION_NAME "section name"
80 %token <m_str> TOK_SOURCE_NAME "source name"
81 %token <m_blob> TOK_BLOB "binary object"
82 %token '('
83 %token ')'
[all...]
/netbsd-current/lib/libintl/
H A Dplural_parser.c101 int token; member in struct:tokenizer_context::__anon40
110 tcx->token0.token = T_NONE;
227 /* get the next token */
231 if (tcx->token0.token != T_NONE) {
232 int token = tcx->token0.token; local
233 tcx->token0.token = T_NONE;
235 return token;
240 /* push back the last token */
243 int token, unio
242 unget_token(struct tokenizer_context *tcx, int token, union token_data *token_data) argument
256 int token; local
468 int token; local
509 int token; local
540 int token; local
588 int token; local
641 int token, token1; local
760 int token; local
856 int token; local
1003 int token; local
[all...]
/netbsd-current/external/mpl/dhcp/dist/client/
H A Dclparse.c226 token = peek_token(&val, NULL, cfile);
227 if (token == END_OF_FILE)
270 int token; local
282 token = peek_token (&val, (unsigned *)0, cfile);
283 if (token == END_OF_FILE)
309 int token; local
321 while ((token = next_token(&val, NULL, cfile)) != END_OF_FILE) {
327 if (token == DEFAULT_DUID) {
345 int token; local
358 token
412 int token; local
881 int token; local
957 int token; local
1109 int token; local
1227 int token; local
1618 int token, no_semi, len; local
1746 int token, no_semi, len; local
1854 int token, no_semi, len; local
1980 int token, no_semi; local
2088 int token, no_semi; local
2193 int token; local
2242 int token; local
2330 enum dhcp_token token; local
[all...]
/netbsd-current/external/bsd/atf/dist/tools/
H A Dparser.hpp87 // The "token" class.
93 //! \brief Representation of a read token.
95 //! A pair that contains the information of a token read from a stream.
96 //! It contains the token's type and its associated data, if any.
98 struct token { struct in namespace:tools::parser
105 token(void);
106 token(size_t, const token_type&, const std::string& = "");
134 token m_la;
163 token next(void);
217 token
[all...]
/netbsd-current/external/mpl/bind/dist/tests/isc/
H A Dlex_test.c42 isc_token_t token; local
57 result = isc_lex_gettoken(lex, 0, &token);
69 isc_token_t token; local
88 result = isc_lex_gettoken(lex, 0, &token);
95 result = isc_lex_gettoken(lex, 0, &token);
192 isc_token_t token; local
211 memset(&token, 0, sizeof(token));
212 result = isc_lex_getmastertoken(lex, &token,
217 switch (token
246 isc_token_t token; local
301 isc_token_t token; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dparse.d2 * Takes a token stream from the lexer, and parses it into an abstract syntax tree.
107 const comment = token.blockComment;
115 if (token.value == TOK.module_)
117 const loc = token.loc;
124 if (token.value != TOK.identifier)
131 Identifier id = token.ident;
137 if (token.value != TOK.identifier)
142 id = token.ident;
147 if (token.value != TOK.semicolon)
148 error("`;` expected following module declaration instead of `%s`", token
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gold/
H A Dyyscript.y103 %token <string> STRING
104 %token <string> QUOTED_STRING
105 %token <integer> INTEGER
110 In most cases the keyword is recognized as the token name in upper
113 %token ABSOLUTE
114 %token ADDR
115 %token ALIGN_K /* ALIGN */
116 %token ALIGNOF
117 %token ASSERT_K /* ASSERT */
118 %token AS_NEEDE
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/gold/
H A Dyyscript.y103 %token <string> STRING
104 %token <string> QUOTED_STRING
105 %token <integer> INTEGER
110 In most cases the keyword is recognized as the token name in upper
113 %token ABSOLUTE
114 %token ADDR
115 %token ALIGN_K /* ALIGN */
116 %token ALIGNOF
117 %token ASSERT_K /* ASSERT */
118 %token AS_NEEDE
[all...]
/netbsd-current/external/gpl3/binutils/dist/gold/
H A Dyyscript.y106 %token <string> STRING
107 %token <string> QUOTED_STRING
108 %token <integer> INTEGER
113 In most cases the keyword is recognized as the token name in upper
116 %token ABSOLUTE
117 %token ADDR
118 %token ALIGN_K /* ALIGN */
119 %token ALIGNOF
120 %token ASSERT_K /* ASSERT */
121 %token AS_NEEDE
[all...]
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/
H A Dcfx.c321 gss_cfx_wrap_token token; local
452 token = (gss_cfx_wrap_token)header->buffer.value;
454 token->TOK_ID[0] = 0x05;
455 token->TOK_ID[1] = 0x04;
456 token->Flags = 0;
457 token->Filler = 0xFF;
460 token->Flags |= CFXSentByAcceptor;
463 token->Flags |= CFXAcceptorSubkey;
475 token->Flags |= CFXSealed;
476 token
755 gss_cfx_wrap_token token, ttoken; local
1198 gss_cfx_wrap_token token; local
1408 gss_cfx_wrap_token token; local
1613 gss_cfx_mic_token token; local
1694 gss_cfx_mic_token token; local
[all...]
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/asn1/
H A Dasn1parse.y89 %token kw_ABSENT
90 %token kw_ABSTRACT_SYNTAX
91 %token kw_ALL
92 %token kw_APPLICATION
93 %token kw_AUTOMATIC
94 %token kw_BEGIN
95 %token kw_BIT
96 %token kw_BMPString
97 %token kw_BOOLEAN
98 %token kw_B
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/binutils/
H A Dmcparse.y53 %token NL
54 %token<ustr> MCIDENT MCFILENAME MCLINE MCCOMMENT
55 %token<tok> MCTOKEN
56 %token MCENDLINE
57 %token MCLANGUAGENAMES MCFACILITYNAMES MCSEVERITYNAMES MCOUTPUTBASE MCMESSAGEIDTYPEDEF
58 %token MCLANGUAGE MCMESSAGEID MCSEVERITY MCFACILITY MCSYMBOLICNAME
59 %token <ival> MCNUMBER
62 %type<ustr> alias_name token lines comments
123 token '=' MCNUMBER alias_name
127 | token '
338 token: MCIDENT { $$ = $1; } label
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/binutils/
H A Dmcparse.y53 %token NL
54 %token<ustr> MCIDENT MCFILENAME MCLINE MCCOMMENT
55 %token<tok> MCTOKEN
56 %token MCENDLINE
57 %token MCLANGUAGENAMES MCFACILITYNAMES MCSEVERITYNAMES MCOUTPUTBASE MCMESSAGEIDTYPEDEF
58 %token MCLANGUAGE MCMESSAGEID MCSEVERITY MCFACILITY MCSYMBOLICNAME
59 %token <ival> MCNUMBER
62 %type<ustr> alias_name token lines comments
123 token '=' MCNUMBER alias_name
127 | token '
338 token: MCIDENT { $$ = $1; } label
[all...]
/netbsd-current/external/gpl3/binutils/dist/binutils/
H A Dmcparse.y53 %token NL
54 %token<ustr> MCIDENT MCFILENAME MCLINE MCCOMMENT
55 %token<tok> MCTOKEN
56 %token MCENDLINE
57 %token MCLANGUAGENAMES MCFACILITYNAMES MCSEVERITYNAMES MCOUTPUTBASE MCMESSAGEIDTYPEDEF
58 %token MCLANGUAGE MCMESSAGEID MCSEVERITY MCFACILITY MCSYMBOLICNAME
59 %token <ival> MCNUMBER
62 %type<ustr> alias_name token lines comments
123 token '=' MCNUMBER alias_name
127 | token '
338 token: MCIDENT { $$ = $1; } label
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Drandom.cc313 random_device::_M_init(const std::string& token) argument
317 _M_init_pretr1(token);
329 if (token == "default")
335 else if (token == "rdseed")
339 else if (token == "rdrand" || token == "rdrnd")
343 else if (token == "darn")
347 else if (token == "hw" || token == "hardware")
351 else if (token
507 _M_init_pretr1(const std::string& token) argument
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/unittests/
H A Dobservable-selftests.c37 static gdb::observers::token observer_token0;
38 static gdb::observers::token observer_token1;
39 static gdb::observers::token observer_token2;
40 static gdb::observers::token observer_token3;
41 static gdb::observers::token observer_token4;
42 static gdb::observers::token observer_token5;
49 gdb::observers::token *token; member in struct:dependency_observer_data
152 std::vector<const gdb::observers::token *> dependency_tokens;
154 dependency_tokens.emplace_back (test_observers[index].token);
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Drandom.cc148 random_device::_M_init(const std::string& token) argument
152 _M_init_pretr1(token);
165 if (token == "default")
182 else if (token == "rdseed")
186 else if (token == "rdrand" || token == "rdrnd")
190 else if (token == "rand_s")
194 else if (token == "/dev/urandom" || token == "/dev/random")
196 fname = token
302 _M_init_pretr1(const std::string& token) argument
[all...]
/netbsd-current/external/bsd/libarchive/dist/libarchive/
H A Darchive_getdate.c54 struct token { int token; time_t value; }; member in struct:token
60 struct token *tokenp; /* Pointer to next token. */
103 if (gds->tokenp[0].token == tUNUMBER
104 && gds->tokenp[1].token == ':'
105 && gds->tokenp[2].token == tUNUMBER
106 && gds->tokenp[3].token == ':'
107 && gds->tokenp[4].token == tUNUMBER) {
115 else if (gds->tokenp[0].token
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dx-scheme.c193 /* A token consists of a sequence of characters. */
194 struct token struct
198 char *chars; /* the token's constituents */
201 /* Initialize a 'struct token'. */
203 init_token (struct token *tp)
210 /* Free the memory pointed to by a 'struct token'. */
212 free_token (struct token *tp)
217 /* Ensure there is enough room in the token for one more character. */
219 grow_token (struct token *tp)
228 /* Read the next token
644 struct token *token; /* for t_symbol and t_string */ member in struct:object
887 struct token token; local
964 struct token token; local
1014 struct token token; local
1029 struct token token; local
[all...]
/netbsd-current/external/bsd/ntp/dist/libntp/
H A Dauthreadkeys.c45 * Save this and space to end of token
53 * If token length is zero return an error, else set end of
54 * token to zero and return start.
143 char *token; local
174 token = nexttok(&line);
175 if (token == NULL)
181 keyno = atoi(token);
185 token);
192 token, NTP_MAXKEY);
199 token
[all...]

Completed in 570 milliseconds

1234567891011>>