Lines Matching refs:rval
155 *out = guard __op__ rval; \
204 bool handleBinaryCommon(const AidlConstantValue& context, T lval, const string& op, T rval, in handleBinaryCommon() argument
222 AIDL_FATAL(context) << "Could not handleBinaryCommon for " << lval << " " << op << " " << rval; in handleBinaryCommon()
227 bool handleShift(const AidlConstantValue& context, T lval, const string& op, T rval, int64_t* out) { in handleShift() argument
232 AIDL_FATAL(context) << "Could not handleShift for " << lval << " " << op << " " << rval; in handleShift()
236 bool handleLogical(const AidlConstantValue& context, bool lval, const string& op, bool rval, in handleLogical() argument
241 AIDL_FATAL(context) << "Could not handleLogical for " << lval << " " << op << " " << rval; in handleLogical()
1054 std::unique_ptr<AidlConstantValue> rval) in AidlUnaryConstExpression() argument
1055 : AidlConstantValue(location, Type::UNARY, op + rval->value_), in AidlUnaryConstExpression()
1056 unary_(std::move(rval)), in AidlUnaryConstExpression()
1064 std::unique_ptr<AidlConstantValue> rval) in AidlBinaryConstExpression() argument
1065 : AidlConstantValue(location, Type::BINARY, lval->value_ + op + rval->value_), in AidlBinaryConstExpression()
1067 right_val_(std::move(rval)), in AidlBinaryConstExpression()