Searched refs:kStatementKind (Results 1 – 15 of 15) sorted by relevance
/external/skia/src/sksl/ir/ |
D | SkSLNop.h | 21 static constexpr Kind kStatementKind = Kind::kNop; 24 : INHERITED(/*offset=*/-1, kStatementKind) {} in Nop()
|
D | SkSLBreakStatement.h | 21 static constexpr Kind kStatementKind = Kind::kBreak; 24 : INHERITED(offset, kStatementKind) {} in BreakStatement()
|
D | SkSLDiscardStatement.h | 21 static constexpr Kind kStatementKind = Kind::kDiscard; 24 : INHERITED(offset, kStatementKind) {} in DiscardStatement()
|
D | SkSLContinueStatement.h | 21 static constexpr Kind kStatementKind = Kind::kContinue; 24 : INHERITED(offset, kStatementKind) {} in ContinueStatement()
|
D | SkSLInlineMarker.h | 23 static constexpr Kind kStatementKind = Kind::kInlineMarker; 26 : INHERITED(/*offset=*/-1, kStatementKind) in InlineMarker()
|
D | SkSLExpressionStatement.h | 21 static constexpr Kind kStatementKind = Kind::kExpression; 24 : INHERITED(expression->fOffset, kStatementKind) in ExpressionStatement()
|
D | SkSLReturnStatement.h | 21 static constexpr Kind kStatementKind = Kind::kReturn; 24 : INHERITED(offset, kStatementKind) in ReturnStatement()
|
D | SkSLBlock.h | 21 static constexpr Kind kStatementKind = Kind::kBlock; 25 : INHERITED(offset, kStatementKind) in INHERITED() argument
|
D | SkSLDoStatement.h | 21 static constexpr Kind kStatementKind = Kind::kDo; 24 : INHERITED(offset, kStatementKind) in DoStatement()
|
D | SkSLSwitchCase.h | 21 static constexpr Kind kStatementKind = Kind::kSwitchCase; 25 : INHERITED(offset, kStatementKind) in SwitchCase()
|
D | SkSLIfStatement.h | 23 static constexpr Kind kStatementKind = Kind::kIf; 27 : INHERITED(offset, kStatementKind) in IfStatement()
|
D | SkSLSwitchStatement.h | 27 static constexpr Kind kStatementKind = Kind::kSwitch; 31 : INHERITED(offset, kStatementKind) in SwitchStatement()
|
D | SkSLVarDeclarations.h | 29 static constexpr Kind kStatementKind = Kind::kVarDeclaration; 35 : INHERITED(var->fOffset, kStatementKind) in VarDeclaration()
|
D | SkSLForStatement.h | 22 static constexpr Kind kStatementKind = Kind::kFor; 27 : INHERITED(offset, kStatementKind) in ForStatement()
|
/external/skia/include/private/ |
D | SkSLStatement.h | 56 return this->fKind == T::kStatementKind; in is()
|