Lines Matching refs:rval
47 *out = lval __op__ rval; \
96 bool handleBinaryCommon(const AidlConstantValue& context, T lval, const string& op, T rval, in handleBinaryCommon() argument
114 AIDL_FATAL(context) << "Could not handleBinaryCommon for " << lval << " " << op << " " << rval; in handleBinaryCommon()
119 bool handleShift(const AidlConstantValue& context, T lval, const string& op, int64_t rval, in handleShift() argument
125 AIDL_FATAL(context) << "Could not handleShift for " << lval << " " << op << " " << rval; in handleShift()
129 bool handleLogical(const AidlConstantValue& context, bool lval, const string& op, bool rval, in handleLogical() argument
134 AIDL_FATAL(context) << "Could not handleLogical for " << lval << " " << op << " " << rval; in handleLogical()
870 std::unique_ptr<AidlConstantValue> rval) in AidlUnaryConstExpression() argument
871 : AidlConstantValue(location, Type::UNARY, op + rval->value_), in AidlUnaryConstExpression()
872 unary_(std::move(rval)), in AidlUnaryConstExpression()
880 std::unique_ptr<AidlConstantValue> rval) in AidlBinaryConstExpression() argument
881 : AidlConstantValue(location, Type::BINARY, lval->value_ + op + rval->value_), in AidlBinaryConstExpression()
883 right_val_(std::move(rval)), in AidlBinaryConstExpression()