Home | History | Annotate | Download | only in builtins

Lines Matching refs:add_func

226   TNode<JSFunction> add_func = GetInitialAddFunction(variant, native_context);
229 WordEqual(GetAddFunction(variant, native_context, collection), add_func));
249 AddConstructorEntry(variant, context, collection, add_func, element,
276 AddConstructorEntry(variant, context, collection, add_func, entry);
298 TNode<Object> add_func = GetAddFunction(variant, context, collection);
315 AddConstructorEntry(variant, context, collection, add_func, next_value,
383 TNode<Object> add_func = GetProperty(context, collection, add_func_name);
386 GotoIf(TaggedIsSmi(add_func), &if_notcallable);
387 GotoIfNot(IsCallable(CAST(add_func)), &if_notcallable);
391 ThrowTypeError(context, MessageTemplate::kPropertyNotFunction, add_func,
395 return add_func;