Searched defs:ImmutableString (Results 1 – 6 of 6) sorted by relevance
46 explicit constexpr ImmutableString(const char *data) : mData(data), mLength(constStrlen(data)) in ImmutableString() function49 constexpr ImmutableString(const char *data, size_t length) : mData(data), mLength(length) {} in ImmutableString() function51 ImmutableString(const std::string &str) in ImmutableString() function
19 class ImmutableString; variable29 class ImmutableString; variable
20 class ImmutableString; variable
18 class ImmutableString; variable
227 constexpr ImmutableString() : len(0), base("") {} in ImmutableString() function228 constexpr ImmutableString(const char *s, size_t slen) in ImmutableString() function230 constexpr explicit ImmutableString(const char *s) in ImmutableString() function232 constexpr explicit ImmutableString(const std::string &s) in ImmutableString() function235 constexpr ImmutableString(InputIt first, InputIt last) in ImmutableString() function237 constexpr ImmutableString(const ImmutableString &other) in ImmutableString() function239 constexpr ImmutableString(ImmutableString &&other) noexcept in ImmutableString() function
15 class ImmutableString; variable