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

/external/swiftshader/third_party/llvm-subzero/lib/Demangle/
H A DItaniumDemangle.cpp4189 template <class StrT> struct string_pair { struct in namespace:__anon23394
4193 string_pair() = default;
4194 string_pair(StrT f) : first(std::move(f)) {} function in struct:__anon23394::string_pair
4195 string_pair(StrT f, StrT s) : first(std::move(f)), second(std::move(s)) {} function in struct:__anon23394::string_pair
4196 template <size_t N> string_pair(const char (&s)[N]) : first(s, N - 1) {} function in struct:__anon23394::string_pair
4204 typedef std::vector<string_pair<std::string>> sub_type;

Completed in 179 milliseconds