Home
last modified time | relevance | path

Searched refs:for_stmt (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/tint/src/reader/wgsl/
Dparser_impl_for_stmt_test.cc29 auto fl = p->for_stmt(); in TEST_F()
42 auto fl = p->for_stmt(); in TEST_F()
56 auto fl = p->for_stmt(); in TEST_F()
73 auto fl = p->for_stmt(); in TEST_F()
89 auto fl = p->for_stmt(); in TEST_F()
105 auto fl = p->for_stmt(); in TEST_F()
118 auto fl = p->for_stmt(); in TEST_F()
131 auto fl = p->for_stmt(); in TEST_F()
144 auto fl = p->for_stmt(); in TEST_F()
157 auto fl = p->for_stmt(); in TEST_F()
[all …]
Dparser_impl.h554 Maybe<const ast::ForLoopStatement*> for_stmt();
Dparser_impl.cc1629 auto stmt_for = for_stmt(); in statement()
2080 Maybe<const ast::ForLoopStatement*> ParserImpl::for_stmt() { in for_stmt() function in tint::reader::wgsl::ParserImpl
/third_party/python/Lib/lib2to3/
DGrammar.txt108 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
109 async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
112 for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite]
Dfixer_util.py368 if child.type == syms.for_stmt:
/third_party/python/Grammar/
Dpython.gram86 | &('for' | ASYNC) for_stmt
184 for_stmt[stmt_ty]:
/third_party/python/Doc/reference/
Dcompound_stmts.rst51 : | `for_stmt`
157 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite`
1417 async_for_stmt: "async" `for_stmt`