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

1234567891011>>

/netbsd-current/sys/external/bsd/acpica/dist/compiler/
H A Dasltokens.y4 * Module Name: asltokens.y - Bison/Yacc token types
66 %token <i> PARSEOP_ACCESSAS
67 %token <i> PARSEOP_ACCESSATTRIB_BLOCK
68 %token <i> PARSEOP_ACCESSATTRIB_BLOCK_CALL
69 %token <i> PARSEOP_ACCESSATTRIB_BYTE
70 %token <i> PARSEOP_ACCESSATTRIB_BYTES
71 %token <i> PARSEOP_ACCESSATTRIB_QUICK
72 %token <i> PARSEOP_ACCESSATTRIB_RAW_BYTES
73 %token <i> PARSEOP_ACCESSATTRIB_RAW_PROCESS
74 %token <
[all...]
/netbsd-current/external/bsd/byacc/dist/test/
H A Derr_syntax3.y8 %token <text> '(' '*' '&
H A Derr_syntax6.y8 %token <text) '(' '*' '&
H A Derr_syntax10.y8 %token <text> '(' '*' '&'
9 %token <TEXT> '(' '*' '&'
H A Derr_syntax12.y8 %token text 123
9 %token text 456
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
H A Dsanitizer_symbolizer_test.cc21 char *token; local
24 rest = ExtractToken("a;b;c", ";", &token);
25 EXPECT_STREQ("a", token);
27 InternalFree(token);
29 rest = ExtractToken("aaa-bbb.ccc", ";.-*", &token);
30 EXPECT_STREQ("aaa", token);
32 InternalFree(token);
36 int token; local
37 const char *rest = ExtractInt("123,456;789", ";,", &token);
38 EXPECT_EQ(123, token);
43 uptr token; local
50 char *token; local
[all...]
/netbsd-current/external/bsd/am-utils/dist/fsinfo/
H A Dnull_gram.y10 token: label
/netbsd-current/bin/sh/
H A Darith_token.c65 * Scan next arithmetic token, return its type,
69 * refer to the next char after the token returned, except
75 int token; local
81 token = *buf;
83 if (isdigit(token)) {
91 token = *end;
96 "%.*s", token, (int)(end - buf), buf);
99 VTRACE(DBG_ARITH, ("Arith token ARITH_NUM=%jd\n",
103 } else if (is_name(token)) {
117 VTRACE(DBG_ARITH, ("Arith token ARITH_VA
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dcow-string-inst.cc42 random_device::_M_init(const std::string& token) argument
43 { _M_init(token.c_str(), token.length()); }
46 random_device::_M_init_pretr1(const std::string& token) argument
47 { _M_init(token.c_str(), token.length()); }
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dcow-string-inst.cc42 random_device::_M_init(const std::string& token) argument
43 { _M_init(token.c_str(), token.length()); }
46 random_device::_M_init_pretr1(const std::string& token) argument
47 { _M_init(token.c_str(), token.length()); }
/netbsd-current/usr.bin/make/unit-tests/
H A Dcond-token-string.exp1 make: "cond-token-string.mk" line 15: while evaluating "${:Uvalue:Z}"": Unknown modifier "Z"
2 make: "cond-token-string.mk" line 15: Malformed conditional ("" != "${:Uvalue:Z}")
3 make: "cond-token-string.mk" line 25: xvalue is not defined.
4 make: "cond-token-string.mk" line 32: Malformed conditional (x${:Uvalue} == "")
5 make: "cond-token-string.mk" line 42: Expected.
7 make: "cond-token-string.mk" line 52: The string literal "UNDEF" is not empty.
9 make: "cond-token-string.mk" line 61: The string literal " " is not empty, even though it consists of whitespace only.
11 make: "cond-token-string.mk" line 71: An undefined variable in quotes expands to an empty string, which then evaluates to false.
13 make: "cond-token-string.mk" line 77: A nonempty expression evaluates to true.
15 make: "cond-token
[all...]
/netbsd-current/usr.bin/rpcgen/
H A Drpc_scan.h90 * a token
92 struct token { struct
96 typedef struct token token; typedef in typeref:struct:token
102 void scan(tok_kind, token *);
103 void scan2(tok_kind, tok_kind, token *);
104 void scan3(tok_kind, tok_kind, tok_kind, token *);
105 void scan_num(token *);
106 void peek(token *);
107 int peekscan(tok_kind, token *);
[all...]
/netbsd-current/external/gpl2/groff/dist/src/preproc/eqn/
H A Deqn.y42 %token OVER
43 %token SMALLOVER
44 %token SQRT
45 %token SUB
46 %token SUP
47 %token LPILE
48 %token RPILE
49 %token CPILE
50 %token PILE
51 %token LEF
[all...]
/netbsd-current/external/gpl3/binutils/dist/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...]
/netbsd-current/external/gpl3/binutils.old/dist/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...]
/netbsd-current/external/gpl3/gdb.old/dist/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...]
/netbsd-current/external/bsd/dhcpcd/dist/src/
H A Dauth.h54 struct token { struct
55 TAILQ_ENTRY(token) next;
64 TAILQ_HEAD(token_head, token);
82 struct token *token; member in struct:authstate
83 struct token *reconf;
88 const struct token * dhcp_auth_validate(struct authstate *,
95 const struct token *,
/netbsd-current/external/gpl2/groff/dist/src/roff/troff/
H A Dtoken.h1 /* $NetBSD: token.h,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */
29 class token { class
67 token();
68 ~token();
69 token(const token &);
70 void operator=(const token &);
76 int space(); // is the current token a space?
77 int stretchable_space(); // is the current token a stretchable space?
78 int unstretchable_space(); // is the current token a
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gnulib/import/
H A Dstrtok_r.c46 char *token; local
59 /* Find the end of the token. */
60 token = s;
61 s = strpbrk (token, delim);
63 /* This token finishes the string. */
64 *save_ptr = __rawmemchr (token, '\0');
67 /* Terminate the token and make *SAVE_PTR point past it. */
71 return token;
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dstrtok_r.c46 char *token; local
59 /* Find the end of the token. */
60 token = s;
61 s = strpbrk (token, delim);
63 /* This token finishes the string. */
64 *save_ptr = __rawmemchr (token, '\0');
67 /* Terminate the token and make *SAVE_PTR point past it. */
71 return token;
/netbsd-current/external/bsd/ntp/dist/ntpd/
H A Dntp_parser.y49 * Enable generation of token names array even without YYDEBUG.
52 %token-table
74 %token <Integer> T_Abbrev
75 %token <Integer> T_Age
76 %token <Integer> T_All
77 %token <Integer> T_Allan
78 %token <Integer> T_Allpeers
79 %token <Integer> T_Auth
80 %token <Integer> T_Autokey
81 %token <Intege
[all...]
/netbsd-current/external/bsd/ntp/dist/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...]
/netbsd-current/external/bsd/ntp/dist/libjsmn/
H A Djsmn.c8 * Allocates a fresh unused token from the token pull.
26 * Fills token type and boundaries.
28 static void jsmn_fill_token(jsmntok_t *token, jsmntype_t type, argument
30 token->type = type;
31 token->start = start;
32 token->end = end;
33 token->size = 0;
37 * Fills next available token with JSON primitive.
41 jsmntok_t *token; local
90 jsmntok_t *token; local
159 jsmntok_t *token; local
[all...]
/netbsd-current/external/mpl/dhcp/dist/dhcpctl/
H A Domshell.c118 enum dhcp_token token; local
217 token = next_token (&val, (unsigned *)0, cfile);
218 switch (token) {
220 parse_warn (cfile, "unknown token: %s", val);
248 token = next_token (&val, (unsigned *)0, cfile);
249 if (is_identifier (token)) {
258 } else if (token == NUMBER) {
265 token = next_token (&val, (unsigned *)0, cfile);
266 if (token != END_OF_FILE && token !
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-indentation.h32 /* Extract token information from TOKEN, which ought to either be a
37 get_token_indent_info (const T *token) argument
40 info.location = token->location;
41 info.type = token->type;
42 info.keyword = token->keyword;

Completed in 531 milliseconds

1234567891011>>