Lines Matching refs:MaybeHandle
47 static MaybeHandle<BigInt> MakeImmutable(MaybeHandle<MutableBigInt> maybe);
55 static MaybeHandle<MutableBigInt> New(
84 static MaybeHandle<MutableBigInt> AbsoluteAddOne(
91 static MaybeHandle<BigInt> LeftShiftByAbsolute(Isolate* isolate,
173 MaybeHandle<T> ThrowBigIntTooBig(Isolate* isolate) {
187 MaybeHandle<MutableBigInt> MutableBigInt::New(IsolateT* isolate, int length,
303 MaybeHandle<BigInt> MutableBigInt::MakeImmutable(
304 MaybeHandle<MutableBigInt> maybe) {
306 if (!maybe.ToHandle(&result)) return MaybeHandle<BigInt>();
363 MaybeHandle<BigInt> BigInt::BitwiseNot(Isolate* isolate, Handle<BigInt> x) {
364 MaybeHandle<MutableBigInt> result;
375 MaybeHandle<BigInt> BigInt::Exponentiate(Isolate* isolate, Handle<BigInt> base,
416 return MaybeHandle<BigInt>();
432 MaybeHandle<BigInt> maybe_result =
447 MaybeHandle<BigInt> BigInt::Multiply(Isolate* isolate, Handle<BigInt> x,
454 return MaybeHandle<BigInt>();
468 MaybeHandle<BigInt> BigInt::Divide(Isolate* isolate, Handle<BigInt> x,
502 MaybeHandle<BigInt> BigInt::Remainder(Isolate* isolate, Handle<BigInt> x,
530 MaybeHandle<BigInt> BigInt::Add(Isolate* isolate, Handle<BigInt> x,
550 MaybeHandle<BigInt> BigInt::Subtract(Isolate* isolate, Handle<BigInt> x,
570 MaybeHandle<BigInt> BigInt::LeftShift(Isolate* isolate, Handle<BigInt> x,
577 MaybeHandle<BigInt> BigInt::SignedRightShift(Isolate* isolate, Handle<BigInt> x,
584 MaybeHandle<BigInt> BigInt::UnsignedRightShift(Isolate* isolate,
632 MaybeHandle<BigInt> BigInt::BitwiseAnd(Isolate* isolate, Handle<BigInt> x,
661 MaybeHandle<BigInt> BigInt::BitwiseXor(Isolate* isolate, Handle<BigInt> x,
691 MaybeHandle<BigInt> BigInt::BitwiseOr(Isolate* isolate, Handle<BigInt> x,
712 MaybeHandle<BigInt> BigInt::Increment(Isolate* isolate, Handle<BigInt> x) {
723 MaybeHandle<BigInt> BigInt::Decrement(Isolate* isolate, Handle<BigInt> x) {
724 MaybeHandle<MutableBigInt> result;
740 MaybeHandle<BigInt> maybe_ny = StringToBigInt(isolate, y);
757 MaybeHandle<BigInt> maybe_n = StringToBigInt(isolate, y);
924 MaybeHandle<String> BigInt::ToString(Isolate* isolate, Handle<BigInt> bigint,
1018 MaybeHandle<BigInt> BigInt::FromNumber(Isolate* isolate,
1033 MaybeHandle<BigInt> BigInt::FromObject(Isolate* isolate, Handle<Object> obj) {
1052 return MaybeHandle<BigInt>();
1195 MaybeHandle<MutableBigInt> MutableBigInt::AbsoluteAddOne(
1212 return MaybeHandle<MutableBigInt>();
1242 MaybeHandle<BigInt> MutableBigInt::LeftShiftByAbsolute(Isolate* isolate,
1257 return MaybeHandle<BigInt>();
1310 MaybeHandle<BigInt> BigInt::Allocate(IsolateT* isolate,
1326 template MaybeHandle<BigInt> BigInt::Allocate(Isolate*,
1329 template MaybeHandle<BigInt> BigInt::Allocate(LocalIsolate*,
1369 MaybeHandle<BigInt> BigInt::FromSerializedDigits(
1425 MaybeHandle<BigInt> BigInt::AsUintN(Isolate* isolate, uint64_t n,
1482 MaybeHandle<BigInt> BigInt::FromWords64(Isolate* isolate, int sign_bit,
1496 return MaybeHandle<BigInt>();