Searched refs:ConstexprStringView (Results 1 – 2 of 2) sorted by relevance
68 struct ConstexprStringView { struct72 constexpr ConstexprStringView(const char (& lit)[N]) // NOLINT: explicit. in ConstexprStringView() function79 constexpr ConstexprStringView(const char* ptr, size_t size) in ConstexprStringView() argument86 constexpr ConstexprStringView() : _array(""), _size(0u) {} in ConstexprStringView() function102 constexpr ConstexprStringView substr(size_t start, size_t len) const { in substr() argument106 return ConstexprStringView(&_array[start], len); in substr()110 constexpr ConstexprStringView substr(size_t start) const { in substr() argument131 operator==(const ConstexprStringView& lhs, const ConstexprStringView& rhs) { argument144 operator!=(const ConstexprStringView& lhs, const ConstexprStringView& rhs) {148 inline std::ostream& operator<<(std::ostream& os, const ConstexprStringView& str) {[all …]
38 constexpr ConstexprStringView v_str = "V"; in TEST()596 nativehelper::detail::ConstexprStringView str) { in MakeNode()676 constexpr auto str_type_name = ConstexprStringView(#type_name); \