Home
last modified time | relevance | path

Searched defs:string_pair (Results 1 – 1 of 1) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_demangle.cpp4852 struct string_pair struct
4854 StrT first;
4855 StrT second;
4858 string_pair(StrT f) : first(std::move(f)) {} in string_pair() argument
4859 string_pair(StrT f, StrT s) in string_pair() function
4862 string_pair(const char (&s)[N]) : first(s, N-1) {} in string_pair() argument
4864 size_t size() const {return first.size() + second.size();} in size()
4865 StrT full() const {return first + second;} in full()
4866 StrT move_full() {return std::move(first) + std::move(second);} in move_full()