Home
last modified time | relevance | path

Searched refs:StringView (Results 1 – 3 of 3) sorted by relevance

/openbmc/bmcweb/include/
H A Dboost_formatters.hpp28 template <std::derived_from<boost::urls::grammar::string_view_base> StringView>
29 struct std::formatter<StringView>
35 auto format(const StringView& msg, auto& ctx) const in format()
55 template <std::derived_from<boost::core::string_view> StringView>
56 struct std::formatter<StringView>
62 auto format(const StringView& msg, auto& ctx) const in format()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/protobuf/protobuf-c/
H A Dprotobuf-30.patch158 Subject: [PATCH 02/11] protoc-gen-c/compat.h: Add `compat::StringView` type
162 Introduce our own `compat::StringView` type that we can use instead
187 +typedef google::protobuf::internal::DescriptorStringView StringView;
189 +typedef const std::string& StringView;
313 Subject: [PATCH 04/11] Use `compat::StringView` type across various function
338 +std::string CamelToUpper(compat::StringView name) {
348 +std::string CamelToLower(compat::StringView name) {
358 +std::string ToUpper(compat::StringView name) {
368 +std::string ToLower(compat::StringView name) {
378 +std::string ToCamel(compat::StringView name) {
[all …]
/openbmc/phosphor-host-ipmid/test/message/
H A Dpack.cpp245 TEST(PackBasics, StringView) in TEST() argument