Lines Matching refs:result
20 bool result = ComparisonResultToBool(static_cast<Operation>(mode),
22 return *isolate->factory()->ToBoolean(result);
31 bool result = ComparisonResultToBool(static_cast<Operation>(mode),
33 return *isolate->factory()->ToBoolean(result);
45 bool result = ComparisonResultToBool(static_cast<Operation>(mode),
47 return *isolate->factory()->ToBoolean(result);
55 bool result = BigInt::EqualToBigInt(*lhs, *rhs);
56 return *isolate->factory()->ToBoolean(result);
64 bool result = BigInt::EqualToNumber(lhs, rhs);
65 return *isolate->factory()->ToBoolean(result);
113 MaybeHandle<BigInt> result;
116 result = BigInt::Add(isolate, left, right);
119 result = BigInt::Subtract(isolate, left, right);
122 result = BigInt::Multiply(isolate, left, right);
125 result = BigInt::Divide(isolate, left, right);
128 result = BigInt::Remainder(isolate, left, right);
131 result = BigInt::Exponentiate(isolate, left, right);
134 result = BigInt::BitwiseAnd(isolate, left, right);
137 result = BigInt::BitwiseOr(isolate, left, right);
140 result = BigInt::BitwiseXor(isolate, left, right);
143 result = BigInt::LeftShift(isolate, left, right);
146 result = BigInt::SignedRightShift(isolate, left, right);
149 result = BigInt::UnsignedRightShift(isolate, left, right);
154 RETURN_RESULT_OR_FAILURE(isolate, result);
164 MaybeHandle<BigInt> result;
167 result = BigInt::BitwiseNot(isolate, x);
170 result = BigInt::UnaryMinus(isolate, x);
173 result = BigInt::Increment(isolate, x);
176 result = BigInt::Decrement(isolate, x);
181 RETURN_RESULT_OR_FAILURE(isolate, result);