OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:get_allocator
(Results
51 - 75
of
988
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/ndk/tests/device/test-gnustl-full/unit/
list_test.cpp
291
CPPUNIT_ASSERT( lint1.
get_allocator
().swaped() );
292
CPPUNIT_ASSERT( lint2.
get_allocator
().swaped() );
296
CPPUNIT_ASSERT( lint1.
get_allocator
() == stack2 );
297
CPPUNIT_ASSERT( lint2.
get_allocator
() == stack1 );
313
CPPUNIT_ASSERT( lint1.
get_allocator
().swaped() );
314
CPPUNIT_ASSERT( lint2.
get_allocator
().swaped() );
318
CPPUNIT_ASSERT( lint1.
get_allocator
() == stack2 );
319
CPPUNIT_ASSERT( lint2.
get_allocator
() == stack1 );
335
CPPUNIT_ASSERT( lint1.
get_allocator
().swaped() );
336
CPPUNIT_ASSERT( lint2.
get_allocator
().swaped() )
[
all
...]
/ndk/tests/device/test-stlport/unit/
list_test.cpp
291
CPPUNIT_ASSERT( lint1.
get_allocator
().swaped() );
292
CPPUNIT_ASSERT( lint2.
get_allocator
().swaped() );
296
CPPUNIT_ASSERT( lint1.
get_allocator
() == stack2 );
297
CPPUNIT_ASSERT( lint2.
get_allocator
() == stack1 );
313
CPPUNIT_ASSERT( lint1.
get_allocator
().swaped() );
314
CPPUNIT_ASSERT( lint2.
get_allocator
().swaped() );
318
CPPUNIT_ASSERT( lint1.
get_allocator
() == stack2 );
319
CPPUNIT_ASSERT( lint2.
get_allocator
() == stack1 );
335
CPPUNIT_ASSERT( lint1.
get_allocator
().swaped() );
336
CPPUNIT_ASSERT( lint2.
get_allocator
().swaped() )
[
all
...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/
copy_alloc.pass.cpp
43
assert(m.
get_allocator
() == A(3));
51
assert(mo.
get_allocator
() == A(7));
78
assert(m.
get_allocator
() == A());
86
assert(mo.
get_allocator
() == A());
alloc.pass.cpp
30
assert(m.
get_allocator
() == A(5));
39
assert(m.
get_allocator
() == A());
copy_assign.pass.cpp
44
assert(m.
get_allocator
() == A(7));
52
assert(mo.
get_allocator
() == A(2));
79
assert(m.
get_allocator
() == A(2));
87
assert(mo.
get_allocator
() == A(2));
115
assert(m.
get_allocator
() == A());
123
assert(mo.
get_allocator
() == A());
150
assert(m.
get_allocator
() == A());
158
assert(mo.
get_allocator
() == A());
copy.pass.cpp
43
assert(m.
get_allocator
() == A(7));
51
assert(mo.
get_allocator
() == A(7));
78
assert(m.
get_allocator
() == A(-2));
86
assert(mo.
get_allocator
() == A(7));
114
assert(m.
get_allocator
() == A());
122
assert(mo.
get_allocator
() == A());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.cons/
copy_alloc.pass.cpp
44
assert(m.
get_allocator
() == A(3));
47
assert(mo.
get_allocator
() == A(7));
70
assert(m.
get_allocator
() == A());
73
assert(mo.
get_allocator
() == A());
alloc.pass.cpp
30
assert(m.
get_allocator
() == A(5));
39
assert(m.
get_allocator
() == A());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.cons/
copy.pass.cpp
42
assert(m.
get_allocator
() == A(7));
50
assert(mo.
get_allocator
() == A(7));
77
assert(m.
get_allocator
() == A(-2));
85
assert(mo.
get_allocator
() == A(7));
copy_assign.pass.cpp
43
assert(m.
get_allocator
() == A(7));
51
assert(mo.
get_allocator
() == A(2));
78
assert(m.
get_allocator
() == A(2));
86
assert(mo.
get_allocator
() == A(2));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.cons/
move_alloc.pass.cpp
34
assert(l2.
get_allocator
() == test_allocator<MoveOnly>(6));
47
assert(l2.
get_allocator
() == test_allocator<MoveOnly>(5));
60
assert(l2.
get_allocator
() == other_allocator<MoveOnly>(4));
74
assert(l2.
get_allocator
() == min_allocator<MoveOnly>());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
move_alloc.pass.cpp
34
assert(l2.
get_allocator
() == test_allocator<MoveOnly>(6));
47
assert(l2.
get_allocator
() == test_allocator<MoveOnly>(5));
60
assert(l2.
get_allocator
() == other_allocator<MoveOnly>(4));
74
assert(l2.
get_allocator
() == min_allocator<MoveOnly>());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
move_alloc.pass.cpp
33
assert(l2.
get_allocator
() == test_allocator<bool>(6));
46
assert(l2.
get_allocator
() == test_allocator<bool>(5));
59
assert(l2.
get_allocator
() == other_allocator<bool>(4));
73
assert(l2.
get_allocator
() == min_allocator<bool>());
construct_default.pass.cpp
28
assert(c.
get_allocator
() == typename C::allocator_type());
38
assert(c.
get_allocator
() == a);
initializer_list_alloc.pass.cpp
25
assert(d.
get_allocator
() == test_allocator<bool>(3));
35
assert(d.
get_allocator
() == min_allocator<bool>());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
alloc.pass.cpp
28
assert(c.
get_allocator
() == A(12));
37
assert(c.
get_allocator
() == A());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.all/
get_allocator.pass.cpp
14
// allocator_type
get_allocator
() const;
28
assert(m.
get_allocator
() == a);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.cons/
copy.pass.cpp
28
assert(s2.
get_allocator
() == s1.
get_allocator
());
move.pass.cpp
32
assert(s2.
get_allocator
() == s1.
get_allocator
());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string.accessors/
get_allocator.pass.cpp
12
// allocator_type
get_allocator
() const;
24
assert(s.
get_allocator
() == a);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.cons/
move.pass.cpp
32
assert(m.
get_allocator
() == A(7));
37
assert(mo.
get_allocator
() == A(7));
60
assert(m.
get_allocator
() == A(7));
74
assert(mo.
get_allocator
() == A(7));
99
assert(m.
get_allocator
() == A());
113
assert(mo.
get_allocator
() == A());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.special/
swap.pass.cpp
72
assert(c1.
get_allocator
() == A(1));
74
assert(c2.
get_allocator
() == A(2));
84
assert(c1.
get_allocator
() == A(2));
86
assert(c2.
get_allocator
() == A(1));
105
assert(c1.
get_allocator
() == A());
107
assert(c2.
get_allocator
() == A());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/
swap_member.pass.cpp
44
assert(c1.
get_allocator
() == Alloc(1));
53
assert(c2.
get_allocator
() == Alloc(2));
92
assert(c1.
get_allocator
() == Alloc(1));
101
assert(c2.
get_allocator
() == Alloc(2));
130
assert(c1.
get_allocator
() == Alloc(1));
143
assert(c2.
get_allocator
() == Alloc(2));
191
assert(c1.
get_allocator
() == Alloc(1));
204
assert(c2.
get_allocator
() == Alloc(2));
225
assert(c1.
get_allocator
() == Alloc(2));
234
assert(c2.
get_allocator
() == Alloc(1))
[
all
...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.swap/
swap_non_member.pass.cpp
44
assert(c1.
get_allocator
() == Alloc(1));
53
assert(c2.
get_allocator
() == Alloc(2));
92
assert(c1.
get_allocator
() == Alloc(1));
101
assert(c2.
get_allocator
() == Alloc(2));
130
assert(c1.
get_allocator
() == Alloc(1));
143
assert(c2.
get_allocator
() == Alloc(2));
191
assert(c1.
get_allocator
() == Alloc(1));
204
assert(c2.
get_allocator
() == Alloc(2));
225
assert(c1.
get_allocator
() == Alloc(2));
234
assert(c2.
get_allocator
() == Alloc(1))
[
all
...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
swap_member.pass.cpp
43
assert(c1.
get_allocator
() == Alloc(1));
52
assert(c2.
get_allocator
() == Alloc(2));
91
assert(c1.
get_allocator
() == Alloc(1));
100
assert(c2.
get_allocator
() == Alloc(2));
129
assert(c1.
get_allocator
() == Alloc(1));
142
assert(c2.
get_allocator
() == Alloc(2));
190
assert(c1.
get_allocator
() == Alloc(1));
203
assert(c2.
get_allocator
() == Alloc(2));
224
assert(c1.
get_allocator
() == Alloc(2));
233
assert(c2.
get_allocator
() == Alloc(1))
[
all
...]
Completed in 274 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>