Searched refs:fIsStatic (Results 1 – 7 of 7) sorted by relevance
/third_party/flutter/skia/src/sksl/ir/ |
D | SkSLIfStatement.h | 23 , fIsStatic(isStatic) in IfStatement() 29 return std::unique_ptr<Statement>(new IfStatement(fOffset, fIsStatic, fTest->clone(), in clone() 35 if (fIsStatic) { in description() 45 bool fIsStatic; member
|
D | SkSLSwitchStatement.h | 26 , fIsStatic(isStatic) in SwitchStatement() 36 return std::unique_ptr<Statement>(new SwitchStatement(fOffset, fIsStatic, fValue->clone(), in clone() 42 if (fIsStatic) { in description() 53 bool fIsStatic; member
|
/third_party/skia/src/sksl/ir/ |
D | SkSLSwitchStatement.h | 32 , fIsStatic(isStatic) in SwitchStatement() 83 return fIsStatic; in isStatic() 95 bool fIsStatic;
|
D | SkSLIfStatement.h | 31 , fIsStatic(isStatic) {} in IfStatement() 47 return fIsStatic; in isStatic() 82 bool fIsStatic; variable
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLPipelineStageCodeGenerator.cpp | 171 if (s.fIsStatic) { in writeIfStatement() 178 if (s.fIsStatic) { in writeSwitchStatement()
|
D | SkSLCompiler.cpp | 1092 if (s.fIsStatic && !(fFlags & kPermitInvalidStaticTests_Flag)) { in simplifyStatement() 1095 s.fIsStatic = false; in simplifyStatement() 1108 if (s.fIsStatic && !(fFlags & kPermitInvalidStaticTests_Flag)) { in simplifyStatement() 1111 s.fIsStatic = false; in simplifyStatement() 1208 if (((const IfStatement&) s).fIsStatic && in scanCFG() 1215 if (((const SwitchStatement&) s).fIsStatic && in scanCFG()
|
D | SkSLCPPCodeGenerator.cpp | 339 if (s.fIsStatic) { in writeIfStatement() 353 if (s.fIsStatic) { in writeSwitchStatement()
|