/third_party/ltp/tools/sparse/sparse-src/ |
D | expression.c | 63 static struct token *comma_expression(struct token *, struct expression **); 65 struct token *parens_expression(struct token *token, struct expression **expr, const char *where) in parens_expression() argument 67 struct token *p; in parens_expression() 69 token = expect(token, '(', where); in parens_expression() 70 p = token; in parens_expression() 71 if (match_op(token, '{')) { in parens_expression() 72 struct expression *e = alloc_expression(token->pos, EXPR_STATEMENT); in parens_expression() 73 struct statement *stmt = alloc_statement(token->pos, STMT_COMPOUND); in parens_expression() 77 token = compound_statement(token->next, stmt); in parens_expression() 79 token = expect(token, '}', "at end of statement expression"); in parens_expression() [all …]
|
D | parse.c | 51 static struct token *statement(struct token *token, struct statement **tree); 52 static struct token *handle_attributes(struct token *token, struct decl_state *ctx); 54 typedef struct token *declarator_t(struct token *, struct symbol *, struct decl_state *); 62 static struct token *parse_if_statement(struct token *token, struct statement *stmt); 63 static struct token *parse_return_statement(struct token *token, struct statement *stmt); 64 static struct token *parse_loop_iterator(struct token *token, struct statement *stmt); 65 static struct token *parse_default_statement(struct token *token, struct statement *stmt); 66 static struct token *parse_case_statement(struct token *token, struct statement *stmt); 67 static struct token *parse_switch_statement(struct token *token, struct statement *stmt); 68 static struct token *parse_for_statement(struct token *token, struct statement *stmt); [all …]
|
D | pre-process.c | 94 static struct token *alloc_token(struct position *pos) in alloc_token() 96 struct token *token = __alloc_token(0); in alloc_token() local 98 token->pos.stream = pos->stream; in alloc_token() 99 token->pos.line = pos->line; in alloc_token() 100 token->pos.pos = pos->pos; in alloc_token() 101 token->pos.whitespace = 1; in alloc_token() 102 return token; in alloc_token() 106 static int expand(struct token **, struct symbol *); 108 static void replace_with_string(struct token *token, const char *str) in replace_with_string() argument 115 token_type(token) = TOKEN_STRING; in replace_with_string() [all …]
|
D | tokenize.c | 53 struct token **tokenlist; 54 struct token *token; member 190 const char *show_token(const struct token *token) in show_token() argument 194 if (!token) in show_token() 196 switch (token_type(token)) { in show_token() 204 return show_ident(token->ident); in show_token() 207 return token->number; in show_token() 210 return show_special(token->special); in show_token() 213 return show_char(token->string->data, in show_token() 214 token->string->length - 1, 0, '\''); in show_token() [all …]
|
D | token.h | 62 struct token *ifndef; 63 struct token *top_if; 186 struct token { struct 188 struct token *next; argument 202 static inline struct token *containing_token(struct token **p) in containing_token() argument 204 void *addr = (char *)p - ((char *)&((struct token *)0)->next - (char *)0); in containing_token() 215 extern struct token eof_token_entry; 223 extern struct token *built_in_token(int, struct ident *); 227 extern const char *show_token(const struct token *); 228 extern const char *quote_token(const struct token *); [all …]
|
/third_party/vk-gl-cts/external/amber/src/src/amberscript/ |
D | parser.cc | 207 for (auto token = tokenizer->NextToken();; token = tokenizer->NextToken()) { in ParseBufferData() local 208 if (token->IsEOL()) in ParseBufferData() 210 if (token->IsEOS()) { in ParseBufferData() 217 if (token->IsIdentifier() && token->AsString() == "END") in ParseBufferData() 219 if (!token->IsInteger() && !token->IsDouble() && !token->IsHex()) in ParseBufferData() 220 return Result("invalid BUFFER data value: " + token->ToOriginalString()); in ParseBufferData() 230 token->ConvertToDouble(); in ParseBufferData() 232 double val = token->IsHex() ? static_cast<double>(token->AsHex()) in ParseBufferData() 233 : token->AsDouble(); in ParseBufferData() 237 if (token->IsDouble()) { in ParseBufferData() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/ |
D | DirectiveParser.cpp | 49 static DirectiveType getDirective(const pp::Token *token) in getDirective() argument 65 if (token->type != pp::Token::IDENTIFIER) in getDirective() 68 if (token->text == kDirectiveDefine) in getDirective() 70 else if (token->text == kDirectiveUndef) in getDirective() 72 else if (token->text == kDirectiveIf) in getDirective() 74 else if (token->text == kDirectiveIfdef) in getDirective() 76 else if (token->text == kDirectiveIfndef) in getDirective() 78 else if (token->text == kDirectiveElse) in getDirective() 80 else if (token->text == kDirectiveElif) in getDirective() 82 else if (token->text == kDirectiveEndif) in getDirective() [all …]
|
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/ |
D | DirectiveParser.cpp | 45 DirectiveType getDirective(const pp::Token *token) in getDirective() argument 61 if (token->type != pp::Token::IDENTIFIER) in getDirective() 64 if (token->text == kDirectiveDefine) in getDirective() 66 if (token->text == kDirectiveUndef) in getDirective() 68 if (token->text == kDirectiveIf) in getDirective() 70 if (token->text == kDirectiveIfdef) in getDirective() 72 if (token->text == kDirectiveIfndef) in getDirective() 74 if (token->text == kDirectiveElse) in getDirective() 76 if (token->text == kDirectiveElif) in getDirective() 78 if (token->text == kDirectiveEndif) in getDirective() [all …]
|
/third_party/typescript/src/services/ |
D | preProcess.ts | 64 let token = scanner.getToken(); 65 if (token === SyntaxKind.DeclareKeyword) { 67 token = nextToken(); 68 if (token === SyntaxKind.ModuleKeyword) { 69 token = nextToken(); 70 if (token === SyntaxKind.StringLiteral) { 87 let token = scanner.getToken(); 88 if (token === SyntaxKind.ImportKeyword) { 89 token = nextToken(); 90 if (token === SyntaxKind.OpenParenToken) { [all …]
|
/third_party/vk-gl-cts/external/amber/src/src/vkscript/ |
D | command_parser.cc | 87 for (auto token = tokenizer_->NextToken(); !token->IsEOS(); in Parse() local 88 token = tokenizer_->NextToken()) { in Parse() 89 if (token->IsEOL()) in Parse() 92 if (!token->IsIdentifier()) { in Parse() 95 token->ToOriginalString())); in Parse() 98 std::string cmd_name = token->AsString(); in Parse() 101 token = tokenizer_->NextToken(); in Parse() 102 if (!token->IsIdentifier()) in Parse() 104 token->ToOriginalString())); in Parse() 106 cmd_name = token->AsString(); in Parse() [all …]
|
D | parser.cc | 155 for (auto token = tokenizer.NextToken(); !token->IsEOS(); in ProcessRequireBlock() local 156 token = tokenizer.NextToken()) { in ProcessRequireBlock() 157 if (token->IsEOL()) in ProcessRequireBlock() 159 if (!token->IsIdentifier()) { in ProcessRequireBlock() 162 "Invalid token in requirements block: " + token->ToOriginalString())); in ProcessRequireBlock() 165 std::string str = token->AsString(); in ProcessRequireBlock() 169 token = tokenizer.NextToken(); in ProcessRequireBlock() 170 if (!token->IsIdentifier()) in ProcessRequireBlock() 174 auto type = type_parser.Parse(token->AsString()); in ProcessRequireBlock() 178 token->ToOriginalString())); in ProcessRequireBlock() [all …]
|
/third_party/glslang/glslang/MachineIndependent/preprocessor/ |
D | Pp.cpp | 101 int token = scanToken(ppToken); in CPPdefine() local 102 if (token != PpAtomIdentifier) { in CPPdefine() 104 return token; in CPPdefine() 116 token = scanToken(ppToken); in CPPdefine() 117 if (token == '(' && !ppToken->space) { in CPPdefine() 120 token = scanToken(ppToken); in CPPdefine() 121 if (mac.args.size() == 0 && token == ')') in CPPdefine() 123 if (token != PpAtomIdentifier) { in CPPdefine() 126 return token; in CPPdefine() 141 token = scanToken(ppToken); in CPPdefine() [all …]
|
/third_party/skia/third_party/externals/angle2/src/tests/preprocessor_tests/ |
D | token_test.cpp | 16 pp::Token token; in TEST() local 17 EXPECT_EQ(0, token.type); in TEST() 18 EXPECT_EQ(0u, token.flags); in TEST() 19 EXPECT_EQ(0, token.location.line); in TEST() 20 EXPECT_EQ(0, token.location.file); in TEST() 21 EXPECT_EQ("", token.text); in TEST() 26 pp::Token token; in TEST() local 27 token.type = 1; in TEST() 28 token.flags = 1; in TEST() 29 token.location.line = 1; in TEST() [all …]
|
/third_party/parse5/packages/parse5/lib/parser/ |
D | index.ts | 239 _err(token: Token, code: ERR, beforeToken?: boolean): void { 242 const loc = token.location ?? BASE_LOC; 361 _setDocumentType(token: DoctypeToken): void { 362 const name = token.name || ''; 363 const publicId = token.publicId || ''; 364 const systemId = token.systemId || ''; 368 if (token.location) { 373 this.treeAdapter.setNodeSourceCodeLocation(docTypeNode, token.location); 397 _appendElement(token: TagToken, namespaceURI: NS): void { 398 const element = this.treeAdapter.createElement(token.tagName, namespaceURI, token.attrs); [all …]
|
/third_party/PyYAML/lib/yaml/ |
D | parser.py | 130 token = self.get_token() 131 event = StreamStartEvent(token.start_mark, token.end_mark, 132 encoding=token.encoding) 145 token = self.peek_token() 146 start_mark = end_mark = token.start_mark 167 token = self.peek_token() 168 start_mark = token.start_mark 175 token = self.get_token() 176 end_mark = token.end_mark 183 token = self.get_token() [all …]
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_parser.y | 318 %token <num> T_INT 319 %token <unum> T_HEX 320 %token <flt> T_FLOAT 321 %token <str> T_IDENTIFIER 322 %token <num> T_REGISTER 323 %token <num> T_CONSTANT 326 %token <tok> T_A_LOCALSIZE 327 %token <tok> T_A_CONST 328 %token <tok> T_A_BUF 329 %token <tok> T_A_INVOCATIONID [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | complexNarrowingWithAny.ts | 449 injectorGetInternal(token:any,requestNodeIndex:number,notFoundResult:any):any { 450 …if (((token === import46.DefaultValueAccessor) && (3 === requestNodeIndex))) { return this._Defaul… 451 …if (((token === import49.NG_VALUE_ACCESSOR) && (3 === requestNodeIndex))) { return this._NG_VALUE_… 452 …if (((token === import47.FormControlName) && (3 === requestNodeIndex))) { return this._FormControl… 453 … if (((token === import50.NgControl) && (3 === requestNodeIndex))) { return this._NgControl_3_6; } 454 …if (((token === import45.NgControlStatus) && (3 === requestNodeIndex))) { return this._NgControlSt… 455 …if (((token === import46.DefaultValueAccessor) && (6 === requestNodeIndex))) { return this._Defaul… 456 …if (((token === import49.NG_VALUE_ACCESSOR) && (6 === requestNodeIndex))) { return this._NG_VALUE_… 457 …if (((token === import47.FormControlName) && (6 === requestNodeIndex))) { return this._FormControl… 458 … if (((token === import50.NgControl) && (6 === requestNodeIndex))) { return this._NgControl_6_6; } [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | complexNarrowingWithAny.types | 133 //real code uses an opaque token, using new String() to simulate. 1189 injectorGetInternal(token:any,requestNodeIndex:number,notFoundResult:any):any { 1190 >injectorGetInternal : (token: any, requestNodeIndex: number, notFoundResult: any) => any 1191 >token : any 1195 …if (((token === import46.DefaultValueAccessor) && (3 === requestNodeIndex))) { return this._Defaul… 1196 >((token === import46.DefaultValueAccessor) && (3 === requestNodeIndex)) : boolean 1197 >(token === import46.DefaultValueAccessor) && (3 === requestNodeIndex) : boolean 1198 >(token === import46.DefaultValueAccessor) : boolean 1199 >token === import46.DefaultValueAccessor : boolean 1200 >token : any [all …]
|
/third_party/rust/crates/syn/src/ |
D | token.rs | 242 ($($token:tt pub struct $name:ident #[$doc:meta])*) => { 312 printing::keyword($token, self.span, tokens); 321 span: parsing::keyword(input, $token)?, 329 parsing::peek_keyword(cursor, $token) 333 concat!("`", $token, "`") 364 ($($token:tt pub struct $name:ident/$len:tt #[$doc:meta])*) => { 437 ($($token:tt pub struct $name:ident/$len:tt #[$doc:meta])*) => { 440 $token pub struct $name/$len #[$doc] 447 printing::punct($token, &self.spans, tokens); 456 spans: parsing::punct(input, $token)?, [all …]
|
/third_party/css-what/src/ |
D | stringify.ts | 37 .map((token) => token.map(stringifyToken).join("")) 42 token: Selector, 46 switch (token.type) { 62 return token.namespace === "*" && 66 : `${getNamespace(token.namespace)}*`; 69 return getNamespacedName(token); 72 return `::${escapeName(token.name, charsToEscapeInName)}${ 73 token.data === null 75 : `(${escapeName(token.data, charsToEscapeInPseudoValue)})` 79 return `:${escapeName(token.name, charsToEscapeInName)}${ [all …]
|
/third_party/parse5/scripts/generate-parser-feedback-test/ |
D | index.ts | 41 const token = getToken(); constant 43 if (token[0] === 'Character') { 44 if (token[1] == null || token[1].length === 0) { 51 lastToken[1] += token[1]; 56 tokens.push(token); 60 override onComment(token: Token.CommentToken): void { 62 () => super.onComment(token), 63 () => ['Comment', token.data] 66 override onDoctype(token: Token.DoctypeToken): void { 68 () => super.onDoctype(token), [all …]
|
/third_party/typescript/src/services/codefixes/ |
D | fixUnusedIdentifier.ts | 24 const token = getTokenAtPosition(sourceFile, context.span.start); constant 26 if (isJSDocTemplateTag(token)) { 27 …leteFix(textChanges.ChangeTracker.with(context, t => t.delete(sourceFile, token)), Diagnostics.Rem… 29 if (token.kind === SyntaxKind.LessThanToken) { 30 …changes = textChanges.ChangeTracker.with(context, t => deleteTypeParameters(t, sourceFile, token)); 33 const importDecl = tryGetFullImport(token); 38 else if (isImport(token)) { 39 …Changes.ChangeTracker.with(context, t => tryDeleteDeclaration(sourceFile, token, t, checker, sourc… 41 …on(fixName, deletion, [Diagnostics.Remove_unused_declaration_for_Colon_0, token.getText(sourceFile… 45 if (isObjectBindingPattern(token.parent) || isArrayBindingPattern(token.parent)) { [all …]
|
/third_party/mesa3d/src/freedreno/afuc/ |
D | parser.y | 121 %token <num> T_INT 122 %token <num> T_HEX 123 %token <num> T_CONTROL_REG 124 %token <str> T_LABEL_DECL 125 %token <str> T_LABEL_REF 126 %token <num> T_LITERAL 127 %token <num> T_BIT 128 %token <num> T_REGISTER 130 %token <tok> T_OP_NOP 131 %token <tok> T_OP_ADD [all …]
|
/third_party/googletest/googlemock/scripts/generator/cpp/ |
D | ast.py | 285 for token in self.alias: 286 if token is not None and name == token.name: 340 for token in token_list: 341 if token.name == node.name: 465 token = tokens[end] 467 if token.name == '<': 469 elif token.name == '>': 506 token = tokens[i] 507 if token.name == '<': 514 elif token.name == ',': [all …]
|
/third_party/node/deps/npm/test/lib/commands/ |
D | token.js | 30 const { token } = await mockToken(t) 33 t.resolveMatch(token.completion({ conf: { argv: { remain: argv } } }), expect, argv.join(' ')) 41 t.rejects(token.completion({ conf: { argv: { remain: ['npm', 'token', 'foobar'] } } }), { 47 const { token } = await mockToken(t) 49 await t.rejects(token.exec(['foobar']), /foobar is not a recognized subcommand/) 57 token: 'efgh5678efgh5678', property 65 token: 'hgfe8765', property 73 const { token, joinedOutput } = await mockToken(t, { 77 return { token: 'thisisnotarealtoken' } 81 t.same(conf.auth, { token: 'thisisnotarealtoken', otp: '123456' }) property [all …]
|