/external/skqp/src/sksl/ir/ |
D | SkSLWhileStatement.h | 19 struct WhileStatement : public Statement { struct 20 WhileStatement(int offset, std::unique_ptr<Expression> test, in WhileStatement() argument 27 return std::unique_ptr<Statement>(new WhileStatement(fOffset, fTest->clone(), in clone() argument
|
/external/llvm-project/clang/include/clang/Tooling/Syntax/ |
D | Nodes.h | 292 class WhileStatement final : public Statement { 294 WhileStatement() : Statement(NodeKind::WhileStatement) {} in WhileStatement() function
|
D | Nodes.td | 230 def WhileStatement : External<Statement> {}
|
/external/llvm-project/clang/lib/Tooling/Syntax/ |
D | Synthesis.cpp | 124 case syntax::NodeKind::WhileStatement: in allocateTree() 125 return new (A.getAllocator()) syntax::WhileStatement; in allocateTree()
|
D | Nodes.cpp | 285 syntax::Leaf *syntax::WhileStatement::getWhileKeyword() { in getWhileKeyword() 290 syntax::Statement *syntax::WhileStatement::getBody() { in getBody()
|
D | BuildTree.cpp | 1450 new (allocator()) syntax::WhileStatement, S); in WalkUpFromWhileStmt()
|
/external/skqp/src/sksl/ |
D | SkSLGLSLCodeGenerator.h | 190 void writeWhileStatement(const WhileStatement& w);
|
D | SkSLMetalCodeGenerator.h | 229 void writeWhileStatement(const WhileStatement& w);
|
D | SkSLJIT.h | 198 void compileWhile(LLVMBuilderRef builder, const WhileStatement& w);
|
D | SkSLMetalCodeGenerator.cpp | 1015 this->writeWhileStatement((WhileStatement&) s); in writeStatement() 1086 void MetalCodeGenerator::writeWhileStatement(const WhileStatement& w) { in writeWhileStatement() 1480 const WhileStatement& w = (const WhileStatement&) s; in requirements()
|
D | SkSLCFGGenerator.cpp | 531 WhileStatement& w = (WhileStatement&) **s; in addStatement()
|
D | SkSLSPIRVCodeGenerator.h | 257 void writeWhileStatement(const WhileStatement& w, OutputStream& out);
|
D | SkSLGLSLCodeGenerator.cpp | 1280 this->writeWhileStatement((WhileStatement&) s); in writeFunctionCall() 1360 void GLSLCodeGenerator::writeWhileStatement(const WhileStatement& w) { in writeFunctionCall()
|
D | SkSLJIT.cpp | 1171 void JIT::compileWhile(LLVMBuilderRef builder, const WhileStatement& w) { in compileWhile() 1248 this->compileWhile(builder, (WhileStatement&) stmt); in compileStatement()
|
D | SkSLSPIRVCodeGenerator.cpp | 2806 this->writeWhileStatement((WhileStatement&) s, out); in writeStatement() 2900 void SPIRVCodeGenerator::writeWhileStatement(const WhileStatement& w, OutputStream& out) { in writeWhileStatement()
|
D | SkSLIRGenerator.cpp | 443 return std::unique_ptr<Statement>(new WhileStatement(w.fOffset, std::move(test), in convertWhile()
|
/external/javaparser/javaparser-core/src/main/javacc/ |
D | java.jj | 2056 ret = WhileStatement() 2311 WhileStmt WhileStatement():
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/ |
D | ASTParser.java | 3510 ret = WhileStatement(); in Statement() 3968 final public WhileStmt WhileStatement() {Expression condition; in WhileStatement() method in ASTParser
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/ |
D | ASTParser.java | 3609 ret = WhileStatement(); in Statement() 4078 final public WhileStmt WhileStatement() { in WhileStatement() method in ASTParser
|
/external/javaparser/javaparser-core/generated-sources/javacc/com/github/javaparser/ |
D | GeneratedJavaParser.java | 3737 ret = WhileStatement(); in Statement() 4335 final public WhileStmt WhileStatement() throws ParseException {Expression condition; in WhileStatement() method in GeneratedJavaParser
|