Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/include/mcld/Support/
DCXADemangle.tcc4859 struct string_pair struct
4861 StrT first;
4862 StrT second;
4865 string_pair(StrT f) : first(std::move(f)) {} in string_pair() argument
4866 string_pair(StrT f, StrT s) in string_pair() function
4869 string_pair(const char (&s)[N]) : first(s, N-1) {} in string_pair() function
4871 size_t size() const {return first.size() + second.size();} in size()
4872 StrT full() const {return first + second;} in full()
4873 StrT move_full() {return std::move(first) + std::move(second);} in move_full()