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

  /external/skia/src/sksl/ast/
SkSLASTPrefixExpression.h 24 , fOperand(std::move(operand)) {}
27 return Compiler::OperatorName(fOperator) + fOperand->description();
31 const std::unique_ptr<ASTExpression> fOperand;
  /external/skia/src/sksl/ir/
SkSLPostfixExpression.h 22 , fOperand(std::move(operand))
30 return fOperand->description() + Compiler::OperatorName(fOperator);
33 std::unique_ptr<Expression> fOperand;
SkSLPrefixExpression.h 24 , fOperand(std::move(operand))
28 return fOperator == Token::MINUS && fOperand->isConstant();
33 fOperand->hasSideEffects();
38 if (fOperand->fKind == Expression::kFloatLiteral_Kind) {
42 -((FloatLiteral&) *fOperand).fValue));
49 return Compiler::OperatorName(fOperator) + fOperand->description();
52 std::unique_ptr<Expression> fOperand;
  /external/skqp/src/sksl/ast/
SkSLASTPrefixExpression.h 24 , fOperand(std::move(operand)) {}
27 return Compiler::OperatorName(fOperator) + fOperand->description();
31 const std::unique_ptr<ASTExpression> fOperand;
  /external/skqp/src/sksl/ir/
SkSLPostfixExpression.h 22 , fOperand(std::move(operand))
30 return fOperand->description() + Compiler::OperatorName(fOperator);
33 std::unique_ptr<Expression> fOperand;
SkSLPrefixExpression.h 24 , fOperand(std::move(operand))
28 return fOperator == Token::MINUS && fOperand->isConstant();
33 fOperand->hasSideEffects();
38 if (fOperand->fKind == Expression::kFloatLiteral_Kind) {
42 -((FloatLiteral&) *fOperand).fValue));
49 return Compiler::OperatorName(fOperator) + fOperand->description();
52 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
  /external/skqp/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

Completed in 440 milliseconds