Lines Matching defs:maybe
2560 MaybeLocal<UnboundScript> maybe =
2563 if (!maybe.ToLocal(&result)) return MaybeLocal<Script>();
2577 MaybeLocal<UnboundScript> maybe =
2580 if (!maybe.ToLocal(&unbound)) return MaybeLocal<Module>();
2920 Maybe<bool> maybe = i::JSReceiver::HasProperty(isolate, obj, name);
2921 has_pending_exception = maybe.IsNothing();
2923 if (!maybe.FromJust()) return v8::Local<Value>();
3271 auto maybe = source->IsOneByteRepresentation()
3275 has_pending_exception = !ToLocal<Value>(maybe, &result);
3289 i::Handle<i::Object> maybe;
3291 !i::JsonStringify(isolate, object, replacer, gap_string).ToHandle(&maybe);
3295 !ToLocal<String>(i::Object::ToString(isolate, maybe), &result);
4766 Maybe<bool> maybe = Nothing<bool>();
4770 maybe = i::JSReceiver::HasElement(isolate, self, index);
4775 maybe = i::JSReceiver::HasProperty(isolate, self, name);
4778 has_pending_exception = maybe.IsNothing();
4780 return maybe;
4801 auto maybe = i::JSReceiver::HasElement(isolate, self, index);
4802 has_pending_exception = maybe.IsNothing();
4804 return maybe;