| /dragonfly/sys/contrib/dev/acpica/source/compiler/ |
| HD | prscan.c | 427 char *Token; in PrPreprocessInputFile() local 452 Token = PrGetNextToken (AslGbl_MainTokenBuffer, PR_TOKEN_SEPARATORS, &Next); in PrPreprocessInputFile() 457 if (Token && (*Token == '#')) in PrPreprocessInputFile() 459 if (strlen (Token) == 1) in PrPreprocessInputFile() 461 Token = PrGetNextToken (NULL, PR_TOKEN_SEPARATORS, &Next); in PrPreprocessInputFile() 465 Token++; /* Skip leading # */ in PrPreprocessInputFile() 470 PrDoDirective (Token, &Next); in PrPreprocessInputFile() 486 while (Token) in PrPreprocessInputFile() 488 DefineInfo = PrMatchDefine (Token); in PrPreprocessInputFile() 500 PrDoMacroInvocation (AslGbl_MainTokenBuffer, Token, in PrPreprocessInputFile() [all …]
|
| HD | prmacros.c | 385 char *Token = NULL; in PrAddMacro() local 439 Token = PrGetNextToken (NULL, PR_MACRO_SEPARATORS, Next); in PrAddMacro() 440 if (!Token) in PrAddMacro() 450 TokenOffset = Token - AslGbl_MainTokenBuffer + strlen (Token); in PrAddMacro() 458 AslGbl_CurrentLineNumber, Token); in PrAddMacro() 460 Args[i].Name = UtLocalCalloc (strlen (Token) + 1); in PrAddMacro() 461 strcpy (Args[i].Name, Token); in PrAddMacro() 475 MacroBodyOffset = Token - AslGbl_MainTokenBuffer; in PrAddMacro() 479 Token = PrGetNextToken (NULL, PR_MACRO_SEPARATORS, Next); in PrAddMacro() 480 while (Token) in PrAddMacro() [all …]
|
| HD | prexpress.c | 218 char *Token; in PrExpandMacros() local 227 Token = PrGetNextToken (AslGbl_ExpressionTokenBuffer, PR_EXPR_SEPARATORS, &Next); in PrExpandMacros() 230 while (Token) in PrExpandMacros() 232 DefineInfo = PrMatchDefine (Token); in PrExpandMacros() 244 PrDoMacroInvocation (AslGbl_ExpressionTokenBuffer, Token, in PrExpandMacros() 253 TokenOffset = Token - AslGbl_ExpressionTokenBuffer + OffsetAdjust; in PrExpandMacros() 255 &AslGbl_CurrentLineBuffer[TokenOffset], strlen (Token), in PrExpandMacros() 260 OffsetAdjust += strlen (ReplaceString) - strlen (Token); in PrExpandMacros() 264 AslGbl_CurrentLineNumber, Token, in PrExpandMacros() 269 Token = PrGetNextToken (NULL, PR_EXPR_SEPARATORS, &Next); in PrExpandMacros()
|
| HD | aslsupport.l | 210 char *Token; in AslDoLineDirective() local 230 Token = strtok (AslGbl_CurrentLineBuffer, " "); in AslDoLineDirective() 231 if (!Token) in AslDoLineDirective() 238 LineNumber = (UINT32) UtDoConstant (Token); in AslDoLineDirective() 256 Token = strtok (NULL, " \""); in AslDoLineDirective() 257 if (Token) in AslDoLineDirective() 259 Filename = UtLocalCacheCalloc (strlen (Token) + 1); in AslDoLineDirective() 260 strcpy (Filename, Token); in AslDoLineDirective()
|
| HD | asloptions.c | 1050 char *Token; in AslMergeOptionTokens() local 1055 Token = strtok (InBuffer, ASL_TOKEN_SEPARATORS); in AslMergeOptionTokens() 1056 while (Token) in AslMergeOptionTokens() 1058 strcat (OutBuffer, Token); in AslMergeOptionTokens() 1059 Token = strtok (NULL, ASL_TOKEN_SEPARATORS); in AslMergeOptionTokens()
|
| HD | preprocess.h | 312 char *Token,
|
| /dragonfly/sys/contrib/dev/acpica/source/tools/acpihelp/ |
| HD | ahasl.c | 394 char *Token; in AhDisplayOperatorKeywords() local 409 Token = strtok (Gbl_LineBuffer, Separators); in AhDisplayOperatorKeywords() 410 while (Token) in AhDisplayOperatorKeywords() 412 if (strstr (Token, "Keyword")) in AhDisplayOperatorKeywords() 422 AhFindAslKeywords (Token); in AhDisplayOperatorKeywords() 425 Token = strtok (NULL, Separators); in AhDisplayOperatorKeywords()
|
| /dragonfly/contrib/bmake/ |
| HD | cond.c | 126 typedef enum Token { enum 129 } Token; typedef 165 Token curr; /* Single push-back token used in parsing */ 193 static Token 576 static Token 594 static Token 635 static Token 638 Token t = TOK_ERROR; in CondParser_Comparison() 680 CondParser_FuncCallEmpty(CondParser *par, bool doEval, Token *out_token) in CondParser_FuncCallEmpty() 683 Token tok; in CondParser_FuncCallEmpty() [all …]
|
| /dragonfly/contrib/binutils-2.27/gold/ |
| HD | script.cc | 54 class Token class 75 Token() in Token() function in gold::Token 81 Token(Classification classification, int lineno, int charpos) in Token() function in gold::Token 90 Token(Classification classification, const char* value, size_t length, in Token() function in gold::Token 100 Token(int opcode, int lineno, int charpos) in Token() function in gold::Token 171 Token::integer_value() const in integer_value() 229 const Token* 247 Token 248 make_token(Token::Classification c, const char* start) const in make_token() 249 { return Token(c, this->lineno_, start - this->linestart_ + 1); } in make_token() [all …]
|
| /dragonfly/contrib/binutils-2.34/gold/ |
| HD | script.cc | 54 class Token class 75 Token() in Token() function in gold::Token 81 Token(Classification classification, int lineno, int charpos) in Token() function in gold::Token 90 Token(Classification classification, const char* value, size_t length, in Token() function in gold::Token 100 Token(int opcode, int lineno, int charpos) in Token() function in gold::Token 171 Token::integer_value() const in integer_value() 229 const Token* 247 Token 248 make_token(Token::Classification c, const char* start) const in make_token() 249 { return Token(c, this->lineno_, start - this->linestart_ + 1); } in make_token() [all …]
|
| HD | yyscript.c | 1378 #define YYBACKUP(Token, Value) \ argument 1382 yychar = (Token); \
|
| /dragonfly/sys/contrib/dev/acpica/source/common/ |
| HD | dmextern.c | 517 char *Token; in AcpiDmGetExternalsFromFile() local 543 Token = strtok (AslGbl_StringBuffer, METHOD_SEPARATORS); /* "External" */ in AcpiDmGetExternalsFromFile() 544 if (!Token) in AcpiDmGetExternalsFromFile() 549 if (strcmp (Token, "External")) in AcpiDmGetExternalsFromFile() 560 Token = strtok (NULL, METHOD_SEPARATORS); /* "MethodObj" */ in AcpiDmGetExternalsFromFile() 561 if (!Token) in AcpiDmGetExternalsFromFile() 566 if (strcmp (Token, "MethodObj")) in AcpiDmGetExternalsFromFile() 571 Token = strtok (NULL, METHOD_SEPARATORS); /* Arg count */ in AcpiDmGetExternalsFromFile() 572 if (!Token) in AcpiDmGetExternalsFromFile() 580 ArgCount = strtoul (Token, NULL, 0); in AcpiDmGetExternalsFromFile() [all …]
|
| /dragonfly/sys/contrib/dev/acpica/source/tools/acpiexec/ |
| HD | aeinitfile.c | 222 char *Token; in AeProcessInitFile() local 253 TempNameBuffer = AcpiDbGetNextToken (LineBuffer, &Token, &Type); in AeProcessInitFile() 276 ValueBuffer = AcpiDbGetNextToken (Token, &Token, &Type); in AeProcessInitFile()
|
| /dragonfly/contrib/file/magic/Magdir/ |
| HD | sniffer | 17 >6 leshort 2 (Token Ring) 30 >6 leshort 2 (Token Ring) 49 >32 byte 0 (Token Ring) 72 >44 leshort 1 (Token Ring) 96 >20 belong&0x03FFFFFF 6 (Token Ring
|
| /dragonfly/contrib/cvs-1.12/lib/ |
| HD | getdate.c | 729 #define YYBACKUP(Token, Value) \ argument 733 yychar = (Token); \ 788 # define YYDSYMPRINTF(Title, Token, Value, Location) \ argument 794 Token, Value); \ 862 # define YYDSYMPRINTF(Title, Token, Value, Location) argument
|
| /dragonfly/lib/libevtr/ |
| HD | ktrfmt.tab.c | 730 #define YYBACKUP(Token, Value) \ argument 734 yychar = (Token); \
|
| /dragonfly/contrib/flex/src/ |
| HD | parse.c | 823 #define YYBACKUP(Token, Value) \ argument 827 yychar = (Token); \
|
| /dragonfly/contrib/gcc-4.7/gcc/doc/ |
| HD | cppinternals.texi | 99 * Token Spacing:: Spacing and paste avoidance issues. 541 (@pxref{Token Spacing}) and simplicity of implementation, cpplib 608 (@pxref{Token Spacing}), there can be fake padding tokens in-between, 640 @node Token Spacing 641 @unnumbered Token Spacing 671 avoidance}. Token addition and removal can only occur because of macro
|
| /dragonfly/contrib/gdb-7/gdb/ |
| HD | go-exp.c | 897 #define YYBACKUP(Token, Value) \ argument 901 yychar = (Token); \
|
| HD | ada-exp.c | 1094 #define YYBACKUP(Token, Value) \ argument 1098 yychar = (Token); \
|
| /dragonfly/gnu/usr.bin/binutils227/block2/libgold/ |
| HD | yyscript.c | 1509 #define YYBACKUP(Token, Value) \ argument 1513 yychar = (Token); \
|
| /dragonfly/contrib/binutils-2.27/gas/doc/ |
| HD | c-vax.texi | 46 @itemx @code{-T} (Token Trace)
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr1/ |
| D | regex | 2710 /** @brief Token iterator for C-style NULL-terminated strings. */ 2712 /** @brief Token iterator for standard strings. */ 2715 /** @brief Token iterator for C-style NULL-terminated wide strings. */ 2717 /** @brief Token iterator for standard wide-character strings. */
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr1/ |
| D | regex | 2713 /** @brief Token iterator for C-style NULL-terminated strings. */ 2715 /** @brief Token iterator for standard strings. */ 2718 /** @brief Token iterator for C-style NULL-terminated wide strings. */ 2720 /** @brief Token iterator for standard wide-character strings. */
|
| /dragonfly/contrib/tcpdump/ |
| HD | CHANGES | 905 Support RFC 2684 bridging of Ethernet, 802.5 Token Ring, and FDDI. 971 Token Ring support on DLPI - Onno van der Linden <onno@simplex.nl> 1004 Added dissector support for: ISOCLNS, Token Ring, IGMPv3, bxxp,
|