| /src/external/apache2/llvm/dist/llvm/include/llvm/WindowsResource/ |
| ResourceScriptToken.h | 23 // A definition of a single resource script token. Each token has its kind 25 // representation of the token. 27 // the token value should be stored in a safe place and cannot be freed 32 #define TOKEN(Name) Name, 35 #undef TOKEN 41 // Get an integer value of the integer token. 48 // Check if a token describes a binary operator.
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/ |
| ResourceScriptToken.h | 37 // A definition of a single resource script token. Each token has its kind 39 // representation of the token. 41 // the token value should be stored in a safe place and cannot be freed 46 #define TOKEN(Name) Name, 53 // Get an integer value of the integer token. 60 // Check if a token describes a binary operator.
|
| ResourceScriptToken.cpp | 50 // We assume that the token already is a correct integer (checked by 98 // Consumes a token. If any problem occurred, a non-empty Error is returned. 137 // Classify the token that is about to be read from the current position. 140 // Process the Kind::Identifier token - check if it is 142 void processIdentifier(RCToken &token) const; 170 return getStringError("Invalid token found at position " + Twine(Pos)); 180 RCToken Token(TokenKind, Data.take_front(Pos).drop_front(TokenStart)); 182 processIdentifier(Token); 185 if (!rcGetAsInteger(Token.value(), TokenInt)) { 189 Token.value().str()) [all...] |
| ResourceScriptParser.cpp | 51 // and the first token to be read is the type. 268 #define TOKEN(TokenName) \ 304 // Try to read a comma unless we read the first token. 350 const RCToken &Token = look(); 351 if (Token.kind() != Kind::Identifier) 353 const StringRef Ident = Token.value(); 509 // Consume comma before each consecutive token except the first one.
|
| llvm-rc.cpp | 612 #define TOKEN(Name) #Name, 617 for (const RCToken &Token : Tokens) { 618 outs() << TokenNames[static_cast<int>(Token.kind())] << ": " 619 << Token.value(); 620 if (Token.kind() == RCToken::Kind::Int) 621 outs() << "; int value = " << Token.intValue();
|
| /src/external/gpl3/gcc/dist/libgfortran/caf/ |
| mpi.c | 38 #define TOKEN(X) ((mpi_token_t) (X)) 104 free (TOKEN (caf_static_list->token)[caf_this_image-1]); 105 free (TOKEN (caf_static_list->token)); 133 _gfortran_caf_register (size_t size, caf_register_t type, caf_token_t *token, 147 /* Token contains only a list of pointers. */ 149 *token = malloc (sizeof (mpi_token_t) * caf_num_images); 151 if (unlikely (local == NULL || *token == NULL)) 154 /* token[img-1] is the address of the token in image "img". * [all...] |
| single.c | 42 /* The descriptor when this token is associated to an allocatable array. */ 50 #define TOKEN(X) ((caf_single_token_t) (X)) 113 free (caf_static_list->token); 136 _gfortran_caf_register (size_t size, caf_register_t type, caf_token_t *token, 157 *token = malloc (sizeof (struct caf_single_token)); 159 if (unlikely (*token == NULL 167 free (*token); 172 single_token = TOKEN (*token); 187 tmp->token = *token [all...] |
| /src/external/gpl3/gcc.old/dist/libgfortran/caf/ |
| mpi.c | 38 #define TOKEN(X) ((mpi_token_t) (X)) 104 free (TOKEN (caf_static_list->token)[caf_this_image-1]); 105 free (TOKEN (caf_static_list->token)); 133 _gfortran_caf_register (size_t size, caf_register_t type, caf_token_t *token, 147 /* Token contains only a list of pointers. */ 149 *token = malloc (sizeof (mpi_token_t) * caf_num_images); 151 if (unlikely (local == NULL || *token == NULL)) 154 /* token[img-1] is the address of the token in image "img". * [all...] |
| single.c | 42 /* The descriptor when this token is associated to an allocatable array. */ 50 #define TOKEN(X) ((caf_single_token_t) (X)) 113 free (caf_static_list->token); 136 _gfortran_caf_register (size_t size, caf_register_t type, caf_token_t *token, 157 *token = malloc (sizeof (struct caf_single_token)); 159 if (unlikely (*token == NULL 168 if (*token) 169 free (*token); 174 single_token = TOKEN (*token); [all...] |
| /src/usr.bin/fgen/ |
| fgen.h | 32 /* Token from the scanner. */ 38 #define TOKEN struct tok 39 #define YY_DECL TOKEN* yylex(void)
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/AsmParser/ |
| LanaiAsmParser.cpp | 107 TOKEN, 117 struct Token { 138 struct Token Tok; 150 // getStartLoc - Gets location of the first token of this operand 153 // getEndLoc - Gets location of the last token of this operand 208 bool isToken() const override { return Kind == TOKEN; } 565 case TOKEN: 566 OS << "Token: " << getToken() << "\n"; 586 auto Op = std::make_unique<LanaiOperand>(TOKEN); 711 Parser.Lex(); // Eat identifier token [all...] |
| /src/external/bsd/byacc/dist/ |
| defs.h | 116 TOKEN = 0
|
| /src/external/public-domain/sqlite/dist/ |
| sqlite3.c | 3286 ** complete if it ends with a semicolon token and is not a prefix of a 3289 ** independent tokens (they are part of the token in which they are 4544 ** ^If the most recent error references a specific token in the input 4546 ** of the start of that token. ^The byte offset returned by 4548 ** ^If the most recent error does not reference a specific token in the input 14027 ** to the column in which it occurs and *piOff the token offset of the 14028 ** first token of the phrase. SQLITE_OK is returned if successful, or an 14179 ** This is used to access token iToken of phrase iPhrase of the current 14181 ** to a buffer containing the requested token, and *pnToken to the 14191 ** token. It is the output of the tokenizer module. For tokendata= 17609 void *token; \/* id that may be used to recursive triggers *\/ member in struct:SubProgram 24472 void *token; \/* Copy of SubProgram.token *\/ member in struct:VdbeFrame 186821 u8 token; \/* Value of the next token *\/ local 246480 Fts5Token token; local 257639 Fts5Buffer token = {0, 0, 0}; local [all...] |