Lines Matching full:using
35 using CVector = std::vector<T, CAddressAllocator<T>>;
38 using CList = std::list<T, CAddressAllocator<T>>;
41 using CSet = std::set<T, Compare, CAddressAllocator<T>>;
44 using CMap = std::map<Key, T, Compare, CAddressAllocator<std::pair<const Key, T>>>;
47 using CMultiMap = std::multimap<Key, T, Compare, CAddressAllocator<std::pair<const Key, T>>>;
50 using CUnorderedMultiMap =
54 using CDeque = std::deque<T, CAddressAllocator<T>>;
57 using CQueue = std::queue<T, Container>;
60 using CStack = std::stack<T, Container>;
63 using CUnorderedMap = std::unordered_map<Key, T, Hash, KeyEqual, CAddressAllocator<std::pair<const …
66 using CUnorderedSet = std::unordered_set<Key, Hash, KeyEqual, CAddressAllocator<Key>>;