Lines Matching defs:has_maybe
2449 v8::Maybe<bool> has_maybe = obj->Has(context, k);
2451 CHECK_MAYBE_NOTHING(env, has_maybe, JSVM_GENERIC_FAILURE);
2453 *result = has_maybe.FromMaybe(false);
2514 v8::Maybe<bool> has_maybe = obj->HasOwnProperty(context, k.As<v8::Name>());
2515 CHECK_MAYBE_NOTHING(env, has_maybe, JSVM_GENERIC_FAILURE);
2516 *result = has_maybe.FromMaybe(false);
2559 v8::Maybe<bool> has_maybe = obj->Has(context, key);
2561 CHECK_MAYBE_NOTHING(env, has_maybe, JSVM_GENERIC_FAILURE);
2563 *result = has_maybe.FromMaybe(false);
2624 v8::Maybe<bool> has_maybe = obj->Has(context, index);
2626 CHECK_MAYBE_NOTHING(env, has_maybe, JSVM_GENERIC_FAILURE);
2628 *result = has_maybe.FromMaybe(false);