HomeSort by relevance Sort by last modified time
    Searched refs:fOperand (Results 1 - 12 of 12) sorted by null

  /external/skia/src/sksl/ast/
SkSLASTPrefixExpression.h 23 , fOperand(std::move(operand)) {}
26 return Token::OperatorName(fOperator) + fOperand->description();
30 const std::unique_ptr<ASTExpression> fOperand;
  /external/skia/src/sksl/ir/
SkSLPostfixExpression.h 22 , fOperand(std::move(operand))
26 return fOperand->description() + Token::OperatorName(fOperator);
29 std::unique_ptr<Expression> fOperand;
SkSLPrefixExpression.h 22 , fOperand(std::move(operand))
26 return Token::OperatorName(fOperator) + fOperand->description();
29 std::unique_ptr<Expression> fOperand;
  /external/skia/src/pathops/
SkOpEdgeBuilder.h 53 SkPathOpsMask xorMask() const { return fXorMask[fOperand]; }
70 bool fOperand;
SkOpContour.h 192 fOperand = operand;
266 return fOperand;
327 fOperand = isOp;
383 bool fOperand; // true for the second argument to a binary operator
SkOpEdgeBuilder.cpp 12 fOperand = false;
49 fOperand = false;
184 fOperand = true;
199 contour->init(fGlobalState, fOperand,
200 fXorMask[fOperand] == kEvenOdd_PathOpsMask);
  /external/skia/src/sksl/
SkSLCFGGenerator.cpp 158 this->addExpression(cfg, &p->fOperand, constantPropagate &&
166 this->addExpression(cfg, &((PostfixExpression*) e->get())->fOperand, false);
SkSLCompiler.cpp 231 p->fOperand.get(),
241 p->fOperand.get(),
SkSLGLSLCodeGenerator.cpp 175 this->writeExpression(*p.fOperand, kMultiplicative_Precedence);
449 this->writeExpression(*p.fOperand, kPrefix_Precedence);
460 this->writeExpression(*p.fOperand, kPostfix_Precedence);
SkSLSPIRVCodeGenerator.cpp     [all...]
SkSLIRGenerator.cpp     [all...]
  /external/skia/tests/
PathOpsDebug.cpp     [all...]

Completed in 183 milliseconds