Home
last modified time | relevance | path

Searched refs:ASTStatement (Results 1 – 25 of 39) sorted by relevance

12

/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/sksl/ast/
H A DSkSLASTIfStatement.h18 struct ASTIfStatement : public ASTStatement {
20 std::unique_ptr<ASTStatement> ifTrue, std::unique_ptr<ASTStatement> ifFalse) in ASTIfStatement()
39 const std::unique_ptr<ASTStatement> fIfTrue;
40 const std::unique_ptr<ASTStatement> fIfFalse;
42 typedef ASTStatement INHERITED;
H A DSkSLASTForStatement.h18 struct ASTForStatement : public ASTStatement {
19 ASTForStatement(Position position, std::unique_ptr<ASTStatement> initializer, in ASTForStatement()
21 std::unique_ptr<ASTStatement> statement) in ASTForStatement()
46 const std::unique_ptr<ASTStatement> fInitializer;
49 const std::unique_ptr<ASTStatement> fStatement;
51 typedef ASTStatement INHERITED;
H A DSkSLASTDoStatement.h18 struct ASTDoStatement : public ASTStatement {
19 ASTDoStatement(Position position, std::unique_ptr<ASTStatement> statement,
29 const std::unique_ptr<ASTStatement> fStatement;
32 typedef ASTStatement INHERITED;
H A DSkSLASTWhileStatement.h18 struct ASTWhileStatement : public ASTStatement {
20 std::unique_ptr<ASTStatement> statement) in ASTWhileStatement()
30 const std::unique_ptr<ASTStatement> fStatement;
32 typedef ASTStatement INHERITED;
H A DSkSLASTBlock.h18 struct ASTBlock : public ASTStatement {
19 ASTBlock(Position position, std::vector<std::unique_ptr<ASTStatement>> statements) in ASTBlock()
33 const std::vector<std::unique_ptr<ASTStatement>> fStatements;
35 typedef ASTStatement INHERITED;
H A DSkSLASTBreakStatement.h18 struct ASTBreakStatement : public ASTStatement {
26 typedef ASTStatement INHERITED;
H A DSkSLASTDiscardStatement.h18 struct ASTDiscardStatement : public ASTStatement {
26 typedef ASTStatement INHERITED;
H A DSkSLASTContinueStatement.h18 struct ASTContinueStatement : public ASTStatement {
26 typedef ASTStatement INHERITED;
H A DSkSLASTStatement.h20 struct ASTStatement : public ASTPositionNode { struct
35 ASTStatement(Position position, Kind kind) in ASTStatement() function
H A DSkSLASTExpressionStatement.h18 struct ASTExpressionStatement : public ASTStatement {
29 typedef ASTStatement INHERITED;
H A DSkSLASTVarDeclarationStatement.h19 struct ASTVarDeclarationStatement : public ASTStatement {
30 typedef ASTStatement INHERITED;
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/sksl/ast/
H A DSkSLASTIfStatement.h18 struct ASTIfStatement : public ASTStatement {
20 std::unique_ptr<ASTStatement> ifTrue, std::unique_ptr<ASTStatement> ifFalse) in ASTIfStatement()
45 const std::unique_ptr<ASTStatement> fIfTrue;
46 const std::unique_ptr<ASTStatement> fIfFalse;
48 typedef ASTStatement INHERITED;
H A DSkSLASTForStatement.h18 struct ASTForStatement : public ASTStatement {
19 ASTForStatement(int offset, std::unique_ptr<ASTStatement> initializer, in ASTForStatement()
21 std::unique_ptr<ASTStatement> statement) in ASTForStatement()
46 const std::unique_ptr<ASTStatement> fInitializer;
49 const std::unique_ptr<ASTStatement> fStatement;
51 typedef ASTStatement INHERITED;
H A DSkSLASTDoStatement.h18 struct ASTDoStatement : public ASTStatement {
19 ASTDoStatement(int offset, std::unique_ptr<ASTStatement> statement, in ASTDoStatement()
29 const std::unique_ptr<ASTStatement> fStatement;
32 typedef ASTStatement INHERITED;
H A DSkSLASTWhileStatement.h18 struct ASTWhileStatement : public ASTStatement {
20 std::unique_ptr<ASTStatement> statement) in ASTWhileStatement()
30 const std::unique_ptr<ASTStatement> fStatement;
32 typedef ASTStatement INHERITED;
H A DSkSLASTBlock.h18 struct ASTBlock : public ASTStatement {
19 ASTBlock(int offset, std::vector<std::unique_ptr<ASTStatement>> statements) in ASTBlock()
33 const std::vector<std::unique_ptr<ASTStatement>> fStatements;
35 typedef ASTStatement INHERITED;
H A DSkSLASTSwitchCase.h18 struct ASTSwitchCase : public ASTStatement {
21 std::vector<std::unique_ptr<ASTStatement>> statements) in ASTSwitchCase()
41 const std::vector<std::unique_ptr<ASTStatement>> fStatements;
43 typedef ASTStatement INHERITED;
H A DSkSLASTBreakStatement.h18 struct ASTBreakStatement : public ASTStatement {
26 typedef ASTStatement INHERITED;
H A DSkSLASTContinueStatement.h18 struct ASTContinueStatement : public ASTStatement {
26 typedef ASTStatement INHERITED;
H A DSkSLASTDiscardStatement.h18 struct ASTDiscardStatement : public ASTStatement {
26 typedef ASTStatement INHERITED;
H A DSkSLASTVarDeclarationStatement.h19 struct ASTVarDeclarationStatement : public ASTStatement {
30 typedef ASTStatement INHERITED;
H A DSkSLASTExpressionStatement.h18 struct ASTExpressionStatement : public ASTStatement {
29 typedef ASTStatement INHERITED;
H A DSkSLASTStatement.h20 struct ASTStatement : public ASTPositionNode { struct
36 ASTStatement(int offset, Kind kind) in ASTStatement() argument
H A DSkSLASTReturnStatement.h18 struct ASTReturnStatement : public ASTStatement {
34 typedef ASTStatement INHERITED;
/dports/devel/doctorj/doctorj-5.1.2/net/sourceforge/pmd/ast/
H A DASTStatement.java5 public class ASTStatement extends SimpleJavaNode { class
6 public ASTStatement(int id) { in ASTStatement() method in ASTStatement
10 public ASTStatement(JavaParser p, int id) { in ASTStatement() method in ASTStatement

12