Searched refs:kExpression_Kind (Results 1 – 11 of 11) sorted by relevance
/third_party/flutter/skia/src/sksl/ |
D | SkSLCFGGenerator.cpp | 72 printf("Node %d (%p): %s\n", (int) j, &n, n.fKind == BasicBlock::Node::kExpression_Kind in dump() 92 if ((*iter)->fKind == BasicBlock::Node::kExpression_Kind) { in tryRemoveExpressionBefore() 100 } while ((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in tryRemoveExpressionBefore() 103 while ((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in tryRemoveExpressionBefore() 115 } while ((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in tryRemoveExpressionBefore() 267 BasicBlock::Node node = { BasicBlock::Node::kExpression_Kind, true, expr, nullptr }; in tryInsertExpression() 275 BasicBlock::Node node = { BasicBlock::Node::kExpression_Kind, true, expr, nullptr }; in tryInsertExpression() 287 BasicBlock::Node node = { BasicBlock::Node::kExpression_Kind, true, expr, nullptr }; in tryInsertExpression() 314 BasicBlock::Node::kExpression_Kind, in addExpression() 325 BasicBlock::Node::kExpression_Kind, in addExpression() [all …]
|
D | SkSLCFGGenerator.h | 26 kExpression_Kind enumerator 37 SkASSERT(fKind == kExpression_Kind); in expression() 42 SkASSERT(fKind == kExpression_Kind); in setExpression() 60 SkASSERT(fKind == kExpression_Kind); in description()
|
D | SkSLCompiler.cpp | 321 case BasicBlock::Node::kExpression_Kind: { in addDefinitions() 590 if ((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in delete_left() 623 if (((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in delete_right() 730 SkASSERT((*iter)->fKind == BasicBlock::Node::kExpression_Kind); in simplifyExpression() 1124 case Statement::kExpression_Kind: { in simplifyStatement() 1156 case BasicBlock::Node::kExpression_Kind: in scanCFG() 1183 if (iter->fKind == BasicBlock::Node::kExpression_Kind) { in scanCFG()
|
D | SkSLMetalCodeGenerator.cpp | 1148 case Statement::kExpression_Kind: in writeStatement() 1605 case Statement::kExpression_Kind: in requirements()
|
D | SkSLJIT.cpp | 1226 case Statement::kExpression_Kind: in compileStatement() 1645 case Statement::kExpression_Kind: in compileVectorStatement()
|
D | SkSLGLSLCodeGenerator.cpp | 1294 case Statement::kExpression_Kind: in writeFunctionCall()
|
D | SkSLByteCodeGenerator.cpp | 1502 case Statement::kExpression_Kind: in writeStatement()
|
D | SkSLIRGenerator.cpp | 212 SkASSERT(result->fKind == Statement::kExpression_Kind); in convertStatement()
|
D | SkSLSPIRVCodeGenerator.cpp | 2825 case Statement::kExpression_Kind: in writeStatement()
|
/third_party/flutter/skia/src/sksl/ir/ |
D | SkSLExpressionStatement.h | 21 : INHERITED(expression->fOffset, kExpression_Kind) in ExpressionStatement()
|
D | SkSLStatement.h | 26 kExpression_Kind, enumerator
|