1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:47:34 +00:00

Everywhere: Add sv suffix to strings relying on StringView(char const*)

Each of these strings would previously rely on StringView's char const*
constructor overload, which would call __builtin_strlen on the string.
Since we now have operator ""sv, we can replace these with much simpler
versions. This opens the door to being able to remove
StringView(char const*).

No functional changes.
This commit is contained in:
sin-ack 2022-07-11 17:32:29 +00:00 committed by Andreas Kling
parent e5f09ea170
commit 3f3f45580a
762 changed files with 8315 additions and 8316 deletions

View file

@ -27,7 +27,7 @@ const StringView Database::get_vendor(u16 vendor_id) const
{
auto const& vendor = m_vendors.get(vendor_id);
if (!vendor.has_value())
return "";
return ""sv;
return vendor.value()->name;
}
@ -35,10 +35,10 @@ const StringView Database::get_device(u16 vendor_id, u16 device_id) const
{
auto const& vendor = m_vendors.get(vendor_id);
if (!vendor.has_value())
return "";
return ""sv;
auto const& device = vendor.value()->devices.get(device_id);
if (!device.has_value())
return "";
return ""sv;
return device.value()->name;
}
@ -46,13 +46,13 @@ const StringView Database::get_subsystem(u16 vendor_id, u16 device_id, u16 subve
{
auto const& vendor = m_vendors.get(vendor_id);
if (!vendor.has_value())
return "";
return ""sv;
auto const& device = vendor.value()->devices.get(device_id);
if (!device.has_value())
return "";
return ""sv;
auto const& subsystem = device.value()->subsystems.get((subvendor_id << 16) + subdevice_id);
if (!subsystem.has_value())
return "";
return ""sv;
return subsystem.value()->name;
}
@ -60,7 +60,7 @@ const StringView Database::get_class(u8 class_id) const
{
auto const& xclass = m_classes.get(class_id);
if (!xclass.has_value())
return "";
return ""sv;
return xclass.value()->name;
}
@ -68,10 +68,10 @@ const StringView Database::get_subclass(u8 class_id, u8 subclass_id) const
{
auto const& xclass = m_classes.get(class_id);
if (!xclass.has_value())
return "";
return ""sv;
auto const& subclass = xclass.value()->subclasses.get(subclass_id);
if (!subclass.has_value())
return "";
return ""sv;
return subclass.value()->name;
}
@ -79,13 +79,13 @@ const StringView Database::get_programming_interface(u8 class_id, u8 subclass_id
{
auto const& xclass = m_classes.get(class_id);
if (!xclass.has_value())
return "";
return ""sv;
auto const& subclass = xclass.value()->subclasses.get(subclass_id);
if (!subclass.has_value())
return "";
return ""sv;
auto const& programming_interface = subclass.value()->programming_interfaces.get(programming_interface_id);
if (!programming_interface.has_value())
return "";
return ""sv;
return programming_interface.value()->name;
}