Searched refs:ConstexprStringView (Results 1 – 2 of 2) sorted by relevance
67 struct ConstexprStringView { struct71 constexpr ConstexprStringView(const char (& lit)[N]) // NOLINT: explicit. in ConstexprStringView() argument78 constexpr ConstexprStringView(const char* ptr, size_t size) in ConstexprStringView() argument85 constexpr ConstexprStringView() : _array(""), _size(0u) {} in ConstexprStringView() function101 constexpr ConstexprStringView substr(size_t start, size_t len) const { in substr() argument105 return ConstexprStringView(&_array[start], len); in substr()109 constexpr ConstexprStringView substr(size_t start) const { in substr() argument130 operator==(const ConstexprStringView& lhs, const ConstexprStringView& rhs) { argument143 operator!=(const ConstexprStringView& lhs, const ConstexprStringView& rhs) {147 inline std::ostream& operator<<(std::ostream& os, const ConstexprStringView& str) {[all …]
50 constexpr ConstexprStringView v_str = "V"; in TEST()608 nativehelper::detail::ConstexprStringView str) { in MakeNode()688 constexpr auto str_type_name = ConstexprStringView(#type_name); \