Home
last modified time | relevance | path

Searched refs:template_index (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/v8/src/runtime/
Druntime-internal.cc218 int template_index = args.smi_value_at(0); in RUNTIME_FUNCTION() local
220 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
234 int template_index = args.smi_value_at(0); in RUNTIME_FUNCTION() local
235 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
257 int template_index = args.smi_value_at(0); in RUNTIME_FUNCTION() local
259 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
266 int template_index = args.smi_value_at(0); in RUNTIME_FUNCTION() local
268 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/heap/
Dlocal-factory.h47 Handle<Object> NewRangeError(MessageTemplate template_index) { in NewRangeError() argument
Dfactory.h719 MessageTemplate template_index,
725 Handle<JSObject> New##NAME(MessageTemplate template_index, \
Dfactory.cc2185 MessageTemplate template_index, in NewError() argument
2195 isolate(), constructor, template_index, arg0, arg1, arg2, SKIP_NONE)); in NewError()
2223 MessageTemplate template_index, Handle<Object> arg0, \
2225 return NewError(isolate()->name##_function(), template_index, arg0, arg1, \
/third_party/node/deps/v8/src/objects/
Dvalue-serializer.h159 V8_NOINLINE Maybe<bool> ThrowDataCloneError(MessageTemplate template_index)
161 V8_NOINLINE Maybe<bool> ThrowDataCloneError(MessageTemplate template_index,
Dvalue-serializer.cc1151 MessageTemplate template_index) { in ThrowDataCloneError() argument
1152 return ThrowDataCloneError(template_index, in ThrowDataCloneError()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc6109 TNode<Smi> template_index = SmiConstant(static_cast<int>(message)); in ThrowRangeError() local
6111 CallRuntime(Runtime::kThrowRangeError, context, template_index); in ThrowRangeError()
6113 CallRuntime(Runtime::kThrowRangeError, context, template_index, *arg0); in ThrowRangeError()
6115 CallRuntime(Runtime::kThrowRangeError, context, template_index, *arg0, in ThrowRangeError()
6118 CallRuntime(Runtime::kThrowRangeError, context, template_index, *arg0, in ThrowRangeError()
6139 TNode<Smi> template_index = SmiConstant(static_cast<int>(message)); in ThrowTypeError() local
6141 CallRuntime(Runtime::kThrowTypeError, context, template_index); in ThrowTypeError()
6143 CallRuntime(Runtime::kThrowTypeError, context, template_index, *arg0); in ThrowTypeError()
6145 CallRuntime(Runtime::kThrowTypeError, context, template_index, *arg0, in ThrowTypeError()
6148 CallRuntime(Runtime::kThrowTypeError, context, template_index, *arg0, *arg1, in ThrowTypeError()