Home
last modified time | relevance | path

Searched refs:tryRemoveLValueBefore (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/sksl/
DSkSLCFGGenerator.cpp126 bool BasicBlock::tryRemoveLValueBefore(std::vector<BasicBlock::Node>::iterator* iter, in tryRemoveLValueBefore() function in SkSL::BasicBlock
132 return this->tryRemoveLValueBefore(iter, ((Swizzle*) lvalue)->fBase.get()); in tryRemoveLValueBefore()
134 return this->tryRemoveLValueBefore(iter, ((FieldAccess*) lvalue)->fBase.get()); in tryRemoveLValueBefore()
136 if (!this->tryRemoveLValueBefore(iter, ((IndexExpression*) lvalue)->fBase.get())) { in tryRemoveLValueBefore()
151 if (!this->tryRemoveLValueBefore(iter, b->fLeft.get())) { in tryRemoveExpression()
DSkSLCFGGenerator.h103 bool tryRemoveLValueBefore(std::vector<BasicBlock::Node>::iterator* iter, Expression* lvalue);
DSkSLCompiler.cpp451 result = b->tryRemoveLValueBefore(iter, bin.fLeft.get()); in delete_left()