Home
last modified time | relevance | path

Searched refs:token (Results 1 – 25 of 734) sorted by relevance

12345678910>>...30

/NextBSD/sys/contrib/dev/acpica/compiler/
HDasltokens.y56 %token <i> PARSEOP_ACCESSAS
57 %token <i> PARSEOP_ACCESSATTRIB_BLOCK
58 %token <i> PARSEOP_ACCESSATTRIB_BLOCK_CALL
59 %token <i> PARSEOP_ACCESSATTRIB_BYTE
60 %token <i> PARSEOP_ACCESSATTRIB_MULTIBYTE
61 %token <i> PARSEOP_ACCESSATTRIB_QUICK
62 %token <i> PARSEOP_ACCESSATTRIB_RAW_BYTES
63 %token <i> PARSEOP_ACCESSATTRIB_RAW_PROCESS
64 %token <i> PARSEOP_ACCESSATTRIB_SND_RCV
65 %token <i> PARSEOP_ACCESSATTRIB_WORD
[all …]
/NextBSD/usr.bin/localedef/
HDparser.y45 char *token; member
50 %token T_CODE_SET
51 %token T_MB_CUR_MAX
52 %token T_MB_CUR_MIN
53 %token T_COM_CHAR
54 %token T_ESC_CHAR
55 %token T_LT
56 %token T_GT
57 %token T_NL
58 %token T_SEMI
[all …]
/NextBSD/sbin/dhclient/
HDparse.c66 int brace_count = 0, token; in skip_to_semi() local
70 token = peek_token(&val, cfile); in skip_to_semi()
71 if (token == RBRACE) { in skip_to_semi()
73 token = next_token(&val, cfile); in skip_to_semi()
78 } else if (token == LBRACE) { in skip_to_semi()
80 } else if (token == SEMI && !brace_count) { in skip_to_semi()
81 token = next_token(&val, cfile); in skip_to_semi()
83 } else if (token == '\n') { in skip_to_semi()
90 token = next_token(&val, cfile); in skip_to_semi()
93 token = next_token(&val, cfile); in skip_to_semi()
[all …]
HDclparse.c66 int token; in read_client_conf() local
108 token = peek_token(&val, cfile); in read_client_conf()
109 if (token == EOF) in read_client_conf()
113 token = next_token(&val, cfile); /* Clear the peek buffer */ in read_client_conf()
152 int token; in read_client_leases() local
161 token = next_token(&val, cfile); in read_client_leases()
162 if (token == EOF) in read_client_leases()
164 if (token != LEASE) { in read_client_leases()
198 int token; in parse_client_statement() local
288 token = next_token(&val, cfile); in parse_client_statement()
[all …]
/NextBSD/contrib/groff/src/preproc/eqn/
HDeqn.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 LEFT
[all …]
/NextBSD/contrib/gcc/
HDscan-decls.c64 enum cpp_ttype token = get_a_token (pfile)->type; in skip_to_closing_brace() local
66 if (token == CPP_EOF) in skip_to_closing_brace()
68 if (token == CPP_OPEN_BRACE) in skip_to_closing_brace()
70 if (token == CPP_CLOSE_BRACE && --nesting == 0) in skip_to_closing_brace()
103 const cpp_token *token; in scan_decls() local
106 token = get_a_token (pfile); in scan_decls()
112 if (token->type == CPP_OPEN_BRACE) in scan_decls()
121 if (token->type == CPP_OPEN_BRACE) in scan_decls()
127 if (token->type == CPP_EOF) in scan_decls()
130 if (token->type == CPP_SEMICOLON) in scan_decls()
[all …]
/NextBSD/usr.bin/migcom/
HDparser.y89 %token sySkip
90 %token syRoutine
91 %token sySimpleRoutine
93 %token sySubsystem
94 %token syKernelUser
95 %token syKernelServer
97 %token syMsgOption
98 %token syMsgSeqno
99 %token syWaitTime
100 %token sySendTime
[all …]
/NextBSD/contrib/groff/src/roff/troff/
HDtoken.h27 class token {
65 token();
66 ~token();
67 token(const token &);
68 void operator=(const token &);
92 int operator==(const token &); // need this for delimiters, and for conditions
93 int operator!=(const token &); // ditto
105 extern token tok; // the current token
139 inline int token::newline() in newline()
144 inline int token::space() in space()
[all …]
/NextBSD/crypto/heimdal/lib/asn1/
HDasn1parse.y86 %token kw_ABSENT
87 %token kw_ABSTRACT_SYNTAX
88 %token kw_ALL
89 %token kw_APPLICATION
90 %token kw_AUTOMATIC
91 %token kw_BEGIN
92 %token kw_BIT
93 %token kw_BMPString
94 %token kw_BOOLEAN
95 %token kw_BY
[all …]
/NextBSD/sys/geom/vinum/
HDgeom_vinum_share.c76 gv_tokenize(char *cptr, char *token[], int maxtoken) in gv_tokenize() argument
92 token[tokennr] = cptr; /* Point to it. */ in gv_tokenize()
439 gv_new_drive(int max, char *token[]) in gv_new_drive() argument
445 if (token[1] == NULL || *token[1] == '\0') in gv_new_drive()
452 if (!strcmp(token[j], "state")) { in gv_new_drive()
458 d->state = gv_drivestatei(token[j]); in gv_new_drive()
459 } else if (!strcmp(token[j], "device")) { in gv_new_drive()
465 ptr = token[j]; in gv_new_drive()
472 strlcpy(d->name, token[j], sizeof(d->name)); in gv_new_drive()
489 gv_new_volume(int max, char *token[]) in gv_new_volume() argument
[all …]
/NextBSD/contrib/ntp/libjsmn/
HDjsmn.c26 static void jsmn_fill_token(jsmntok_t *token, jsmntype_t type, in jsmn_fill_token() argument
28 token->type = type; in jsmn_fill_token()
29 token->start = start; in jsmn_fill_token()
30 token->end = end; in jsmn_fill_token()
31 token->size = 0; in jsmn_fill_token()
39 jsmntok_t *token; in jsmn_parse_primitive() local
70 token = jsmn_alloc_token(parser, tokens, num_tokens); in jsmn_parse_primitive()
71 if (token == NULL) { in jsmn_parse_primitive()
75 jsmn_fill_token(token, JSMN_PRIMITIVE, start, parser->pos); in jsmn_parse_primitive()
77 token->parent = parser->toksuper; in jsmn_parse_primitive()
[all …]
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/tests/
HDsanitizer_symbolizer_test.cc21 char *token; in TEST() local
24 rest = ExtractToken("a;b;c", ";", &token); in TEST()
25 EXPECT_STREQ("a", token); in TEST()
27 InternalFree(token); in TEST()
29 rest = ExtractToken("aaa-bbb.ccc", ";.-*", &token); in TEST()
30 EXPECT_STREQ("aaa", token); in TEST()
32 InternalFree(token); in TEST()
36 int token; in TEST() local
37 const char *rest = ExtractInt("123,456;789", ";,", &token); in TEST()
38 EXPECT_EQ(123, token); in TEST()
[all …]
/NextBSD/lib/libasl/
HDasl_ipc.h62 (server, request, requestCnt, startid, count, flags, reply, replyCnt, lastid, status, token) in __asl_server_query() argument
73 security_token_t *token;
74 …uery(server, request, requestCnt, startid, count, flags, reply, replyCnt, lastid, status, token); }
87 security_token_t *token
99 (server, request, requestCnt, startid, count, flags, reply, replyCnt, lastid, status, token) in __asl_server_query_timeout() argument
110 audit_token_t token;
111 …eout(server, request, requestCnt, startid, count, flags, reply, replyCnt, lastid, status, token); }
124 audit_token_t token
136 (server, request, requestCnt, status, token) in __asl_server_prune() argument
141 security_token_t *token;
[all …]
/NextBSD/crypto/heimdal/lib/gssapi/krb5/
HDcfx.c291 gss_cfx_wrap_token token;
422 token = (gss_cfx_wrap_token)header->buffer.value;
424 token->TOK_ID[0] = 0x05;
425 token->TOK_ID[1] = 0x04;
426 token->Flags = 0;
427 token->Filler = 0xFF;
430 token->Flags |= CFXSentByAcceptor;
433 token->Flags |= CFXAcceptorSubkey;
445 token->Flags |= CFXSealed;
446 token->EC[0] = (ec >> 8) & 0xFF;
[all …]
/NextBSD/contrib/groff/src/preproc/pic/
HDpic.y84 %token <str> LABEL
85 %token <str> VARIABLE
86 %token <x> NUMBER
87 %token <lstr> TEXT
88 %token <lstr> COMMAND_LINE
89 %token <str> DELIMITED
90 %token <n> ORDINAL
91 %token TH
92 %token LEFT_ARROW_HEAD
93 %token RIGHT_ARROW_HEAD
[all …]
/NextBSD/usr.sbin/notifyd/
HDnotify_ipc.h88 (server, name, nameCnt, token, status) in _notify_server_register_plain() argument
92 int *token;
94 { return _notify_server_register_plain(server, name, nameCnt, token, status); }
100 int *token,
113 (server, name, nameCnt, size, slot, token, status) in _notify_server_register_check() argument
119 int *token;
121 { return _notify_server_register_check(server, name, nameCnt, size, slot, token, status); }
129 int *token,
142 (server, name, nameCnt, sig, token, status) in _notify_server_register_signal() argument
147 int *token;
[all …]
/NextBSD/contrib/ntp/scripts/deprecated/
HDhtml2man.in97 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->[1] eq "address") {
144 if($token->[1] eq "dt" || $token->[1] eq "br" && $deflevel > 0) {
148 if($token->[1] eq "dd") {
[all …]
/NextBSD/contrib/amd/fsinfo/
HDfsi_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 tFREQ
[all …]
/NextBSD/contrib/binutils/binutils/
HDarparse.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 DIRECTORY
[all …]
/NextBSD/cddl/contrib/opensolaris/lib/libdtrace/common/
HDdt_grammar.y49 %token DT_TOK_COMMA DT_TOK_ELLIPSIS
50 %token DT_TOK_ASGN DT_TOK_ADD_EQ DT_TOK_SUB_EQ DT_TOK_MUL_EQ
51 %token DT_TOK_DIV_EQ DT_TOK_MOD_EQ DT_TOK_AND_EQ DT_TOK_XOR_EQ DT_TOK_OR_EQ
52 %token DT_TOK_LSH_EQ DT_TOK_RSH_EQ DT_TOK_QUESTION DT_TOK_COLON
53 %token DT_TOK_LOR DT_TOK_LXOR DT_TOK_LAND
54 %token DT_TOK_BOR DT_TOK_XOR DT_TOK_BAND DT_TOK_EQU DT_TOK_NEQ
55 %token DT_TOK_LT DT_TOK_LE DT_TOK_GT DT_TOK_GE DT_TOK_LSH DT_TOK_RSH
56 %token DT_TOK_ADD DT_TOK_SUB DT_TOK_MUL DT_TOK_DIV DT_TOK_MOD
57 %token DT_TOK_LNEG DT_TOK_BNEG DT_TOK_ADDADD DT_TOK_SUBSUB
58 %token DT_TOK_PREINC DT_TOK_POSTINC DT_TOK_PREDEC DT_TOK_POSTDEC
[all …]
/NextBSD/contrib/jansson/src/
HDpack_unpack.c18 char token; member
25 token_t token; member
34 #define token(scanner) ((scanner)->token.token) macro
59 memset(&s->token, 0, sizeof(token_t)); in scanner_init()
69 s->prev_token = s->token; in next_token()
72 s->token = s->next_token; in next_token()
94 s->token.token = *t; in next_token()
95 s->token.line = s->line; in next_token()
96 s->token.column = s->column; in next_token()
97 s->token.pos = s->pos; in next_token()
[all …]
/NextBSD/contrib/subversion/subversion/libsvn_ra_svn/
HDeditorp.c69 const char *token; member
94 svn_string_t *token; member
112 const char *token) in ra_svn_make_baton() argument
120 b->token = token; in ra_svn_make_baton()
174 const char *token = make_token('d', eb, pool); in ra_svn_open_root() local
177 SVN_ERR(svn_ra_svn__write_cmd_open_root(eb->conn, pool, rev, token)); in ra_svn_open_root()
178 *root_baton = ra_svn_make_baton(eb->conn, pool, eb, token); in ra_svn_open_root()
189 path, rev, b->token)); in ra_svn_delete_entry()
199 const char *token = make_token('d', b->eb, pool); in ra_svn_add_dir() local
204 SVN_ERR(svn_ra_svn__write_cmd_add_dir(b->conn, pool, path, b->token, in ra_svn_add_dir()
[all …]
/NextBSD/contrib/libarchive/libarchive/
HDarchive_getdate.c57 struct token { int token; time_t value; }; argument
63 struct token *tokenp; /* Pointer to next token. */
106 if (gds->tokenp[0].token == tUNUMBER in timephrase()
107 && gds->tokenp[1].token == ':' in timephrase()
108 && gds->tokenp[2].token == tUNUMBER in timephrase()
109 && gds->tokenp[3].token == ':' in timephrase()
110 && gds->tokenp[4].token == tUNUMBER) { in timephrase()
118 else if (gds->tokenp[0].token == tUNUMBER in timephrase()
119 && gds->tokenp[1].token == ':' in timephrase()
120 && gds->tokenp[2].token == tUNUMBER) { in timephrase()
[all …]
/NextBSD/contrib/gcclibs/libcpp/
HDmacro.c95 cpp_token *token = _cpp_temp_token (pfile); in new_string_token() local
98 token->type = CPP_STRING; in new_string_token()
99 token->val.str.len = len; in new_string_token()
100 token->val.str.text = text; in new_string_token()
101 token->flags = 0; in new_string_token()
102 return token; in new_string_token()
367 const cpp_token *token = arg->first[i]; in stringify_arg() local
369 if (token->type == CPP_PADDING) in stringify_arg()
372 source = token->val.source; in stringify_arg()
376 escape_it = (token->type == CPP_STRING || token->type == CPP_WSTRING in stringify_arg()
[all …]
/NextBSD/contrib/libgnuregex/
HDregcomp.c55 static int fetch_number (re_string_t *input, re_token_t *token,
57 static int peek_token (re_token_t *token, re_string_t *input,
62 re_token_t *token, reg_syntax_t syntax,
65 re_token_t *token, reg_syntax_t syntax,
68 re_token_t *token, reg_syntax_t syntax,
71 re_token_t *token, reg_syntax_t syntax,
74 re_dfa_t *dfa, re_token_t *token,
77 re_token_t *token, reg_syntax_t syntax,
81 re_token_t *token, int token_len,
87 re_token_t *token);
[all …]

12345678910>>...30