Lines Matching defs:name
466 std::string ToString(const char* name) { return std::string(name); }
468 std::string ToString(const i::Handle<i::String> name) {
469 return std::string("Property '") + name->ToCString().get() + "'";
773 // WebAssembly.Module.customSections(module, name) -> Array<Section>
792 i::Handle<i::Object> name;
793 if (!maybe_name.ToHandle(&name)) return;
796 i::Handle<i::String>::cast(name), &thrower);
2086 table_object->type().name().c_str());
2390 const v8::FunctionCallbackInfo<v8::Value>& args, const char* name) {
2394 ScheduledErrorThrower thrower(i_isolate, name);
2629 i::wasm::kWasmAnyRef.name().c_str());
2665 Isolate* isolate, Handle<String> name, FunctionCallback func,
2671 ApiNatives::InstantiateFunction(temp, name).ToHandleChecked();
2681 Handle<String> name = v8_str(isolate, str);
2683 CreateFunc(isolate, name, func, has_prototype, side_effect_type);
2685 JSObject::AddProperty(isolate, object, name, function, attributes);
2697 Handle<String> GetterName(Isolate* isolate, Handle<String> name) {
2698 return Name::ToFunctionName(isolate, name, isolate->factory()->get_string())
2704 Handle<String> name = v8_str(isolate, str);
2706 CreateFunc(isolate, GetterName(isolate, name), func, false,
2709 Utils::ToLocal(object)->SetAccessorProperty(Utils::ToLocal(name),
2714 Handle<String> SetterName(Isolate* isolate, Handle<String> name) {
2715 return Name::ToFunctionName(isolate, name, isolate->factory()->set_string())
2722 Handle<String> name = v8_str(isolate, str);
2724 CreateFunc(isolate, GetterName(isolate, name), getter, false,
2727 CreateFunc(isolate, SetterName(isolate, name), setter, false);
2731 Utils::ToLocal(name), Utils::ToLocal(getter_func),
2749 const char* name = nullptr) {
2758 if (name) {
2761 v8_str(isolate, name), ro_attributes);
2780 Handle<String> name = v8_str(isolate, "WebAssembly");
2783 factory->NewSharedFunctionInfoForBuiltin(name, Builtin::kIllegal);
2795 name, ro_attributes);
2813 JSObject::AddProperty(isolate, global, name, webassembly, DONT_ENUM);