Lines Matching refs:MaybeHandle

43   static MaybeHandle<BigInt> MakeImmutable(MaybeHandle<MutableBigInt> maybe);
47 static MaybeHandle<MutableBigInt> New(Isolate* isolate, int length,
65 static MaybeHandle<MutableBigInt> BitwiseAnd(Isolate* isolate,
68 static MaybeHandle<MutableBigInt> BitwiseXor(Isolate* isolate,
71 static MaybeHandle<MutableBigInt> BitwiseOr(Isolate* isolate,
81 static MaybeHandle<BigInt> AbsoluteAdd(Isolate* isolate, Handle<BigInt> x,
85 static MaybeHandle<MutableBigInt> AbsoluteAddOne(
90 static MaybeHandle<MutableBigInt> AbsoluteSubOne(Isolate* isolate,
141 static MaybeHandle<MutableBigInt> SpecialLeftShift(Isolate* isolate,
147 static MaybeHandle<BigInt> LeftShiftByAbsolute(Isolate* isolate,
156 static MaybeHandle<String> ToStringBasePowerOfTwo(Isolate* isolate,
159 static MaybeHandle<String> ToStringGeneric(Isolate* isolate,
208 MaybeHandle<MutableBigInt> MutableBigInt::New(Isolate* isolate, int length, in New()
325 MaybeHandle<BigInt> MutableBigInt::MakeImmutable( in MakeImmutable()
326 MaybeHandle<MutableBigInt> maybe) { in MakeImmutable()
328 if (!maybe.ToHandle(&result)) return MaybeHandle<BigInt>(); in MakeImmutable()
370 MaybeHandle<BigInt> BigInt::BitwiseNot(Isolate* isolate, Handle<BigInt> x) { in BitwiseNot()
371 MaybeHandle<MutableBigInt> result; in BitwiseNot()
382 MaybeHandle<BigInt> BigInt::Exponentiate(Isolate* isolate, Handle<BigInt> base, in Exponentiate()
425 return MaybeHandle<BigInt>(); in Exponentiate()
441 MaybeHandle<BigInt> maybe_result = in Exponentiate()
456 MaybeHandle<BigInt> BigInt::Multiply(Isolate* isolate, Handle<BigInt> x, in Multiply()
463 return MaybeHandle<BigInt>(); in Multiply()
473 MaybeHandle<BigInt> BigInt::Divide(Isolate* isolate, Handle<BigInt> x, in Divide()
497 return MaybeHandle<BigInt>(); in Divide()
504 MaybeHandle<BigInt> BigInt::Remainder(Isolate* isolate, Handle<BigInt> x, in Remainder()
528 return MaybeHandle<BigInt>(); in Remainder()
535 MaybeHandle<BigInt> BigInt::Add(Isolate* isolate, Handle<BigInt> x, in Add()
551 MaybeHandle<BigInt> BigInt::Subtract(Isolate* isolate, Handle<BigInt> x, in Subtract()
567 MaybeHandle<BigInt> BigInt::LeftShift(Isolate* isolate, Handle<BigInt> x, in LeftShift()
574 MaybeHandle<BigInt> BigInt::SignedRightShift(Isolate* isolate, Handle<BigInt> x, in SignedRightShift()
581 MaybeHandle<BigInt> BigInt::UnsignedRightShift(Isolate* isolate, in UnsignedRightShift()
629 MaybeHandle<BigInt> BigInt::BitwiseAnd(Isolate* isolate, Handle<BigInt> x, in BitwiseAnd()
634 MaybeHandle<MutableBigInt> MutableBigInt::BitwiseAnd(Isolate* isolate, in BitwiseAnd()
645 return MaybeHandle<MutableBigInt>(); in BitwiseAnd()
659 MaybeHandle<BigInt> BigInt::BitwiseXor(Isolate* isolate, Handle<BigInt> x, in BitwiseXor()
664 MaybeHandle<MutableBigInt> MutableBigInt::BitwiseXor(Isolate* isolate, in BitwiseXor()
684 return MaybeHandle<MutableBigInt>(); in BitwiseXor()
691 MaybeHandle<BigInt> BigInt::BitwiseOr(Isolate* isolate, Handle<BigInt> x, in BitwiseOr()
696 MaybeHandle<MutableBigInt> MutableBigInt::BitwiseOr(Isolate* isolate, in BitwiseOr()
722 MaybeHandle<BigInt> BigInt::Increment(Isolate* isolate, Handle<BigInt> x) { in Increment()
733 MaybeHandle<BigInt> BigInt::Decrement(Isolate* isolate, Handle<BigInt> x) { in Decrement()
734 MaybeHandle<MutableBigInt> result; in Decrement()
749 MaybeHandle<BigInt> maybe_ny = StringToBigInt(isolate, y); in CompareToString()
763 MaybeHandle<BigInt> maybe_n = StringToBigInt(isolate, y); in EqualToString()
926 MaybeHandle<String> BigInt::ToString(Isolate* isolate, Handle<BigInt> bigint, in ToString()
937 MaybeHandle<BigInt> BigInt::FromNumber(Isolate* isolate, in FromNumber()
952 MaybeHandle<BigInt> BigInt::FromObject(Isolate* isolate, Handle<Object> obj) { in FromObject()
1094 MaybeHandle<BigInt> MutableBigInt::AbsoluteAdd(Isolate* isolate, in AbsoluteAdd()
1108 return MaybeHandle<BigInt>(); in AbsoluteAdd()
1167 MaybeHandle<MutableBigInt> MutableBigInt::AbsoluteAddOne( in AbsoluteAddOne()
1184 return MaybeHandle<MutableBigInt>(); in AbsoluteAddOne()
1215 MaybeHandle<MutableBigInt> MutableBigInt::AbsoluteSubOne(Isolate* isolate, in AbsoluteSubOne()
1222 return MaybeHandle<MutableBigInt>(); in AbsoluteSubOne()
1625 MaybeHandle<MutableBigInt> MutableBigInt::SpecialLeftShift( in SpecialLeftShift()
1635 return MaybeHandle<MutableBigInt>(); in SpecialLeftShift()
1658 MaybeHandle<BigInt> MutableBigInt::LeftShiftByAbsolute(Isolate* isolate, in LeftShiftByAbsolute()
1679 return MaybeHandle<BigInt>(); in LeftShiftByAbsolute()
1809 MaybeHandle<FreshlyAllocatedBigInt> BigInt::AllocateFor( in AllocateFor()
1837 return MaybeHandle<FreshlyAllocatedBigInt>(); in AllocateFor()
1883 MaybeHandle<BigInt> BigInt::FromSerializedDigits( in FromSerializedDigits()
1927 MaybeHandle<String> MutableBigInt::ToStringBasePowerOfTwo(Isolate* isolate, in ToStringBasePowerOfTwo()
1989 MaybeHandle<String> MutableBigInt::ToStringGeneric(Isolate* isolate, in ToStringGeneric()
2152 MaybeHandle<BigInt> BigInt::AsUintN(Isolate* isolate, uint64_t n, in AsUintN()
2301 MaybeHandle<BigInt> BigInt::FromWords64(Isolate* isolate, int sign_bit, in FromWords64()
2316 return MaybeHandle<BigInt>(); in FromWords64()