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

/art/compiler/utils/
H A Ddedupe_set.h46 typedef typename Keys::size_type size_type; typedef in class:art::DedupeSet
/art/runtime/gc/accounting/
H A Dgc_allocator.h38 typedef typename std::allocator<T>::size_type size_type; typedef in class:art::gc::accounting::GCAllocatorImpl
61 pointer allocate(size_type n, const_pointer hint = 0) {
66 void deallocate(PT p, size_type n) {
/art/runtime/
H A Dsafe_map.h38 typedef typename ::std::map<K, V, Comparator>::size_type size_type; typedef in class:art::SafeMap
52 size_type size() const { return map_.size(); }
56 size_type erase(const K& k) { return map_.erase(k); }
61 size_type count(const K& k) const { return map_.count(k); }
/art/runtime/base/
H A Dstringpiece.h129 typedef size_t size_type; typedef in class:art::StringPiece
131 static const size_type npos;
144 // STLS says return size_type, but Google says return int
148 int copy(char* buf, size_type n, size_type pos = 0) const;
150 size_type find(const StringPiece& s, size_type pos = 0) const;
151 size_type find(char c, size_type pos = 0) const;
152 size_type rfin
[all...]

Completed in 98 milliseconds