Home | History | Annotate | Download | only in src

Lines Matching refs:exc

439 Handle<Object> Execution::ToNumber(Handle<Object> obj, bool* exc) {
440 RETURN_NATIVE_CALL(to_number, 1, { obj.location() }, exc);
444 Handle<Object> Execution::ToString(Handle<Object> obj, bool* exc) {
445 RETURN_NATIVE_CALL(to_string, 1, { obj.location() }, exc);
449 Handle<Object> Execution::ToDetailString(Handle<Object> obj, bool* exc) {
450 RETURN_NATIVE_CALL(to_detail_string, 1, { obj.location() }, exc);
454 Handle<Object> Execution::ToObject(Handle<Object> obj, bool* exc) {
456 RETURN_NATIVE_CALL(to_object, 1, { obj.location() }, exc);
460 Handle<Object> Execution::ToInteger(Handle<Object> obj, bool* exc) {
461 RETURN_NATIVE_CALL(to_integer, 1, { obj.location() }, exc);
465 Handle<Object> Execution::ToUint32(Handle<Object> obj, bool* exc) {
466 RETURN_NATIVE_CALL(to_uint32, 1, { obj.location() }, exc);
470 Handle<Object> Execution::ToInt32(Handle<Object> obj, bool* exc) {
471 RETURN_NATIVE_CALL(to_int32, 1, { obj.location() }, exc);
475 Handle<Object> Execution::NewDate(double time, bool* exc) {
477 RETURN_NATIVE_CALL(create_date, 1, { time_obj.location() }, exc);
512 Handle<FunctionTemplateInfo> data, bool* exc) {
521 Call(Top::instantiate_fun(), Top::builtins(), 1, args, exc);
522 if (*exc) return Handle<JSFunction>::null();
528 bool* exc) {
538 Handle<JSFunction> cons = InstantiateFunction(cons_template, exc);
539 if (*exc) return Handle<JSObject>::null();
540 Handle<Object> value = New(cons, 0, NULL, exc);
541 if (*exc) return Handle<JSObject>::null();
544 ASSERT(!*exc);
549 Call(Top::instantiate_fun(), Top::builtins(), 1, args, exc);
550 if (*exc) return Handle<JSObject>::null();
558 bool* exc) {
560 Execution::Call(Top::configure_instance_fun(), Top::builtins(), 2, args, exc);