Home
last modified time | relevance | path

Searched refs:kStatementKind (Results 1 – 15 of 15) sorted by relevance

/external/skia/src/sksl/ir/
DSkSLNop.h21 static constexpr Kind kStatementKind = Kind::kNop;
24 : INHERITED(/*offset=*/-1, kStatementKind) {} in Nop()
DSkSLBreakStatement.h21 static constexpr Kind kStatementKind = Kind::kBreak;
24 : INHERITED(offset, kStatementKind) {} in BreakStatement()
DSkSLDiscardStatement.h21 static constexpr Kind kStatementKind = Kind::kDiscard;
24 : INHERITED(offset, kStatementKind) {} in DiscardStatement()
DSkSLContinueStatement.h21 static constexpr Kind kStatementKind = Kind::kContinue;
24 : INHERITED(offset, kStatementKind) {} in ContinueStatement()
DSkSLInlineMarker.h23 static constexpr Kind kStatementKind = Kind::kInlineMarker;
26 : INHERITED(/*offset=*/-1, kStatementKind) in InlineMarker()
DSkSLExpressionStatement.h21 static constexpr Kind kStatementKind = Kind::kExpression;
24 : INHERITED(expression->fOffset, kStatementKind) in ExpressionStatement()
DSkSLReturnStatement.h21 static constexpr Kind kStatementKind = Kind::kReturn;
24 : INHERITED(offset, kStatementKind) in ReturnStatement()
DSkSLBlock.h21 static constexpr Kind kStatementKind = Kind::kBlock;
25 : INHERITED(offset, kStatementKind) in INHERITED() argument
DSkSLDoStatement.h21 static constexpr Kind kStatementKind = Kind::kDo;
24 : INHERITED(offset, kStatementKind) in DoStatement()
DSkSLSwitchCase.h21 static constexpr Kind kStatementKind = Kind::kSwitchCase;
25 : INHERITED(offset, kStatementKind) in SwitchCase()
DSkSLIfStatement.h23 static constexpr Kind kStatementKind = Kind::kIf;
27 : INHERITED(offset, kStatementKind) in IfStatement()
DSkSLSwitchStatement.h27 static constexpr Kind kStatementKind = Kind::kSwitch;
31 : INHERITED(offset, kStatementKind) in SwitchStatement()
DSkSLVarDeclarations.h29 static constexpr Kind kStatementKind = Kind::kVarDeclaration;
35 : INHERITED(var->fOffset, kStatementKind) in VarDeclaration()
DSkSLForStatement.h22 static constexpr Kind kStatementKind = Kind::kFor;
27 : INHERITED(offset, kStatementKind) in ForStatement()
/external/skia/include/private/
DSkSLStatement.h56 return this->fKind == T::kStatementKind; in is()