Searched refs:StackAllocator (Results 1 - 11 of 11) sorted by relevance

/external/stlport/test/unit/
H A Dstack_allocator.h23 //The following members are shared among all StackAllocator instance created from
24 //a reference StackAllocator instance:
47 struct StackAllocator struct in inherits:__STD__stlport_class
53 : public __STD __stlport_class<StackAllocator<_Tp> >
65 StackAllocator(){} function in struct:StackAllocator
68 StackAllocator(char *beg, char *end) function in struct:StackAllocator
74 StackAllocator(StackAllocator<_OtherTp> const& other) function in struct:StackAllocator
77 StackAllocator(const State& state) function in struct:StackAllocator
84 typedef StackAllocator<_Othe
[all...]
H A Ddeque_test.cpp1 //Has to be first for StackAllocator swap overload to be taken
205 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
208 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2));
211 typedef deque<int, StackAllocator<int> > DequeInt;
H A Dhash_test.cpp1 //Has to be first for StackAllocator swap overload to be taken
381 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
384 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2));
387 typedef hash_set<int, hash<int>, equal_to<int>, StackAllocator<int> > HashSetInt;
H A Dlist_test.cpp1 //Has to be first for StackAllocator swap overload to be taken
275 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
278 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2));
280 typedef list<int, StackAllocator<int> > ListInt;
H A Dvector_test.cpp1 //Has to be first for StackAllocator swap overload to be taken
376 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
379 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2));
382 typedef vector<int, StackAllocator<int> > VectorInt;
H A Dmap_test.cpp1 //Has to be first for StackAllocator swap overload to be taken
270 StackAllocator<pair<const int, int> > stack1(buf1, buf1 + sizeof(buf1));
273 StackAllocator<pair<const int, int> > stack2(buf2, buf2 + sizeof(buf2));
276 typedef map<int, int, less<int>, StackAllocator<pair<const int, int> > > MapInt;
H A Dset_test.cpp1 //Has to be first for StackAllocator swap overload to be taken
279 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
282 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2));
285 typedef set<int, less<int>, StackAllocator<int> > SetInt;
H A Dslist_test.cpp1 //Has to be first for StackAllocator swap overload to be taken
334 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
337 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2));
339 typedef slist<int, StackAllocator<int> > SlistInt;
H A Dstring_test.cpp6 //Has to be first for StackAllocator swap overload to be taken
1305 StackAllocator<char> stack1(buf1, buf1 + sizeof(buf1));
1308 StackAllocator<char> stack2(buf2, buf2 + sizeof(buf2));
1310 typedef basic_string<char, char_traits<char>, StackAllocator<char> > StackString;
/external/chromium_org/base/containers/
H A Dstack_container.h25 // StackAllocator::Source which contains the data. Copying the allocator
37 class StackAllocator : public std::allocator<T> { class in namespace:base
71 typedef StackAllocator<U, stack_capacity> other;
75 StackAllocator(const StackAllocator<T, stack_capacity>& rhs) argument
89 StackAllocator(const StackAllocator<U, other_capacity>& other) argument
97 StackAllocator() : source_(NULL) { function in class:base::StackAllocator
100 explicit StackAllocator(Source* source) : source_(source) { function in class:base::StackAllocator
134 // WATCH OUT: the ContainerType MUST use the proper StackAllocator fo
[all...]
H A Dstack_container_unittest.cc70 std::vector<int, StackAllocator<int, stack_size> > other(vect.container());

Completed in 120 milliseconds