/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_parse.c | 87 next_token( in next_token() function 104 next_token( ctx, &token ); in tgsi_parse_token() 114 next_token( ctx, &decl->Range ); in tgsi_parse_token() 117 next_token(ctx, &decl->Dim); in tgsi_parse_token() 121 next_token( ctx, &decl->Interp ); in tgsi_parse_token() 125 next_token( ctx, &decl->Semantic ); in tgsi_parse_token() 129 next_token(ctx, &decl->Image); in tgsi_parse_token() 133 next_token(ctx, &decl->SamplerView); in tgsi_parse_token() 137 next_token(ctx, &decl->Array); in tgsi_parse_token() 157 next_token(ctx, &imm->u[i].Float); in tgsi_parse_token() [all …]
|
/third_party/jerryscript/tools/vera++/scripts/rules/ |
D | jerry_switch_case.tcl | 48 foreach next_token [getTokens $fileName $lineNumber $next_token_start -1 -1 {}] { 49 set next_token_type [lindex $next_token 3] 50 set next_token_value [lindex $next_token 0] 79 …report $fileName [lindex $next_token 1] "There should be single space character after 'case' keywo… 83 …report $fileName [lindex $next_token 1] "There should be single space character after 'case' keywo… 106 set line_num [lindex $next_token 1] 148 …report $fileName [lindex $next_token 1] "Missing break, continue or FALLTHRU comment before case (… 166 set line_num [lindex $next_token 1] 191 lappend switch_ends [lindex $next_token 1] 253 lappend switch_ends [lindex $next_token 1] [all …]
|
/third_party/googletest/googlemock/scripts/generator/cpp/ |
D | ast.py | 974 next_token = GetNextToken() 977 while (next_token.token_type == tokenize.NAME or 978 (next_token.token_type == tokenize.SYNTAX and 979 next_token.name in ('::', '<'))): 982 if last_token_was_name and next_token.token_type == tokenize.NAME: 984 last_token_was_name = next_token.token_type == tokenize.NAME 985 tokens.append(next_token) 987 if next_token.name == '<': 990 next_token = GetNextToken() 991 return tokens, next_token [all …]
|
/third_party/ltp/metadata/ |
D | metaparse.c | 215 static char *next_token(FILE *f, struct data_node *doc) in next_token() function 294 if (!(token = next_token(f, NULL))) in parse_array() 350 if (!(token = next_token(f, NULL))) in parse_get_array_len() 357 if (!(token = next_token(f, NULL))) in parse_get_array_len() 416 if (!(token = next_token(f, NULL))) in parse_array_size() 422 if (!(token = next_token(f, NULL))) in parse_array_size() 442 if (!(token = next_token(f, NULL))) in parse_array_size() 483 if (!(token = next_token(f, doc))) in parse_test_struct() 651 while ((token = next_token(inc, NULL))) { in parse_include_macros() 686 while ((token = next_token(f, doc))) { in parse_file() [all …]
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
D | _tokenizer.py | 105 self.next_token: Optional[Token] = None 121 self.next_token is None 131 self.next_token = Token(name, match[0], self.position) 145 token = self.next_token 149 self.next_token = None
|
/third_party/toybox/toys/pending/ |
D | tftpd.c | 89 static char *next_token(char *at, char *end) in next_token() function 295 buf = next_token(buf, end); in tftpd_main() 303 for (buf = next_token(buf, end); buf != NULL; buf = next_token(buf, end)) { in tftpd_main() 305 buf = next_token(buf, end); in tftpd_main()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_instr_fetch.cpp | 382 std::string next_token; in from_string_impl() local 383 is >> next_token; in from_string_impl() 385 if (next_token.empty()) in from_string_impl() 388 if (next_token.find(':') != string::npos) { in from_string_impl() 389 fetch->set_param_from_string(next_token); in from_string_impl() 391 fetch->set_flag_from_string(next_token); in from_string_impl()
|
D | sfn_instr_fetch.h | 125 void set_param_from_string(const std::string& next_token); 126 void set_flag_from_string(const std::string& next_token);
|
D | sfn_instr_tex.h | 155 void read_tex_coord_normalitazion(const std::string& next_token); 156 void set_tex_param(const std::string& next_token);
|
D | sfn_instr_tex.cpp | 278 std::string next_token; in from_string() local 279 is >> next_token; in from_string() 281 if (next_token.empty()) in from_string() 284 if (next_token[0] == 'U' || next_token[0] == 'N') { in from_string() 285 tex->read_tex_coord_normalitazion(next_token); in from_string() 287 tex->set_tex_param(next_token); in from_string()
|
/third_party/node/deps/v8/src/date/ |
D | dateparser-inl.h | 141 DateToken next_token = scanner.Next(); in Parse() local 142 length = next_token.length(); in Parse() 143 n = next_token.number(); in Parse()
|
/third_party/gn/src/gn/ |
D | parser.cc | 447 const Token& next_token = Consume(); in ParseExpression() local 448 InfixFunc infix = expressions_[next_token.type()].infix; in ParseExpression() 450 *err_ = Err(next_token, in ParseExpression() 451 "Unexpected token '" + std::string(next_token.value()) + "'"); in ParseExpression() 454 left = (this->*infix)(std::move(left), next_token); in ParseExpression()
|
/third_party/libcoap/src/ |
D | coap_resource.c | 80 const uint8_t *next_token = text->s; in match() local 84 const uint8_t *token = next_token; in match() 85 next_token = (unsigned char *)memchr(token, ' ', remaining_length); in match() 87 if (next_token) { in match() 88 token_length = next_token - token; in match() 90 next_token++; in match()
|
/third_party/node/deps/v8/src/torque/ |
D | earley-parser.cc | 277 std::string next_token = tokens.token_contents[last_item.pos()].ToString(); in RunEarleyAlgorithm() local 278 reason = "unexpected token \"" + next_token + "\""; in RunEarleyAlgorithm()
|
/third_party/cups-filters/filter/foomatic-rip/ |
D | util.c | 396 static const char * next_token(const char *string, const char *separators) in next_token() function 418 for (p = string; *p; p = next_token(p, separators)) in count_separators() 450 string = next_token(string, separators); in argv_split()
|