HomeSort by: relevance | last modified time | path
    Searched refs:token (Results 1 - 25 of 1048) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/acpica/dist/compiler/
asltokens.y 4 * Module Name: asltokens.y - Bison/Yacc token types
49 * Token types: These are returned by the lexer
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_PROCES
    [all...]
  /src/external/bsd/byacc/dist/test/
err_syntax3.y 8 %token <text> '(' '*' '&
err_syntax6.y 8 %token <text) '(' '*' '&
err_syntax10.y 8 %token <text> '(' '*' '&'
9 %token <TEXT> '(' '*' '&'
err_syntax12.y 8 %token text 123
9 %token text 456
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_symbolizer_test.cc 21 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...]
  /src/external/bsd/am-utils/dist/fsinfo/
null_gram.y 10 token: label
  /src/bin/sh/
arith_token.c 65 * 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_VAR=\"%s\"\n"
    [all...]
  /src/external/bsd/nsd/dist/simdzone/src/fallback/
bench.c 20 token_t token; local
23 take(parser, &token);
24 while (token.code > 0) {
26 take(parser, &token);
29 return token.code ? -1 : 0;
  /src/external/bsd/nsd/dist/simdzone/src/haswell/
bench.c 22 token_t token; local
25 take(parser, &token);
26 while (token.code > 0) {
28 take(parser, &token);
31 return token.code ? -1 : 0;
  /src/external/bsd/nsd/dist/simdzone/src/westmere/
bench.c 22 token_t token; local
25 take(parser, &token);
26 while (token.code > 0) {
28 take(parser, &token);
31 return token.code ? -1 : 0;
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
cow-string-inst.cc 41 random_device::_M_init(const std::string& token)
42 { _M_init(token.c_str(), token.length()); }
45 random_device::_M_init_pretr1(const std::string& token)
46 { _M_init(token.c_str(), token.length()); }
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
cow-string-inst.cc 42 random_device::_M_init(const std::string& token)
43 { _M_init(token.c_str(), token.length()); }
46 random_device::_M_init_pretr1(const std::string& token)
47 { _M_init(token.c_str(), token.length()); }
  /src/usr.bin/rpcgen/
rpc_scan.h 90 * 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...]
  /src/external/gpl2/groff/dist/src/preproc/eqn/
eqn.y 42 %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...]
  /src/external/gpl3/binutils/dist/binutils/
arparse.y 43 %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...]
  /src/external/gpl3/binutils.old/dist/binutils/
arparse.y 43 %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...]
  /src/external/bsd/dhcpcd/dist/src/
auth.h 54 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 *,
  /src/external/bsd/nsd/dist/simdzone/src/generic/
gpos.h 18 const token_t *token)
20 const char *text = token->data + (token->data[0] == '-');
33 if (token->length > 255)
65 if (text != token->data + token->length)
68 *rdata->octets = (uint8_t)token->length;
69 memcpy(rdata->octets + 1, token->data, token->length);
70 rdata->octets += 1 + token->length
    [all...]
parser.h 29 typedef struct token token_t;
30 struct token { struct
198 static really_inline void defer_error(token_t *token, int32_t code)
200 token->code = code;
201 token->data = end_of_file;
202 token->length = 0;
304 // update reference to partial token
317 // always null-terminate for terminating token
340 // restore non-terminated token (partial quoted or contiguous)
356 // save non-terminated token
    [all...]
nxt.h 25 token_t *token)
30 if (is_contiguous(token)) {
31 if (scan_type(token->data, token->length, &code, &mnemonic) != 1)
39 take(parser, token);
40 while (is_contiguous(token)) {
41 if (scan_type(token->data, token->length, &code, &mnemonic) != 1)
50 take(parser, token);
56 return have_delimiter(parser, type, token);
    [all...]
  /src/external/gpl2/groff/dist/src/roff/troff/
token.h 1 /* $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 an unstretchable space
    [all...]
  /src/external/gpl3/gdb/dist/gnulib/import/
strtok_r.c 46 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;
  /src/external/gpl3/gdb.old/dist/gnulib/import/
strtok_r.c 46 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;
  /src/external/bsd/ntp/dist/ntpd/
ntp_parser.y 49 * 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 <Integer> T_Automa
    [all...]

Completed in 34 milliseconds

1 2 3 4 5 6 7 8 91011>>