Home
last modified time | relevance | path

Searched refs:DetectVarDeclarationWithoutScope (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/src/sksl/ir/
DSkSLIfStatement.cpp47 if (Analysis::DetectVarDeclarationWithoutScope(*ifTrue, context.fErrors)) { in Convert()
50 if (ifFalse && Analysis::DetectVarDeclarationWithoutScope(*ifFalse, context.fErrors)) { in Convert()
68 SkASSERT(!Analysis::DetectVarDeclarationWithoutScope(*ifTrue)); in Make()
69 SkASSERT(!ifFalse || !Analysis::DetectVarDeclarationWithoutScope(*ifFalse)); in Make()
DSkSLDoStatement.cpp28 if (Analysis::DetectVarDeclarationWithoutScope(*stmt, context.fErrors)) { in Convert()
39 SkASSERT(!Analysis::DetectVarDeclarationWithoutScope(*stmt)); in Make()
DSkSLForStatement.cpp123 if (Analysis::DetectVarDeclarationWithoutScope(*statement, context.fErrors)) { in Convert()
169 SkASSERT(!Analysis::DetectVarDeclarationWithoutScope(*statement)); in Make()
/third_party/skia/src/sksl/
DSkSLAnalysis.h71 bool DetectVarDeclarationWithoutScope(const Statement& stmt, ErrorReporter* errors = nullptr);
DSkSLAnalysis.cpp339 bool Analysis::DetectVarDeclarationWithoutScope(const Statement& stmt, ErrorReporter* errors) { in DetectVarDeclarationWithoutScope() function in SkSL::Analysis