HomeSort by relevance Sort by last modified time
    Searched refs:container_type (Results 26 - 50 of 169) sorted by null

12 3 4 5 6 7

  /external/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
ctor_move_alloc.pass.cpp 39 typedef typename base::container_type container_type; typedef in struct:test
45 test(const value_compare& comp, const container_type& c,
47 test(const value_compare& comp, container_type&& c,
ctor_copy_alloc.pass.cpp 35 typedef typename base::container_type container_type; typedef in struct:test
41 test(const value_compare& comp, const container_type& c,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
ctor_move_alloc.pass.cpp 39 typedef typename base::container_type container_type; typedef in struct:test
45 test(const value_compare& comp, const container_type& c,
47 test(const value_compare& comp, container_type&& c,
ctor_copy_alloc.pass.cpp 35 typedef typename base::container_type container_type; typedef in struct:test
41 test(const value_compare& comp, const container_type& c,
  /external/oprofile/libutil++/
comma_list.h 51 typedef std::vector<value_type> container_type; typedef in class:comma_list
52 typedef typename container_type::const_iterator const_iterator;
54 container_type items;
growable_vector.h 24 typedef std::vector<T> container_type; typedef in class:growable_vector
25 typedef typename container_type::size_type size_type;
102 container_type container;
  /external/libcxx/test/containers/container.adaptors/priority.queue/
types.pass.cpp 17 // typedef Container container_type;
18 // typedef typename container_type::value_type value_type;
19 // typedef typename container_type::reference reference;
20 // typedef typename container_type::const_reference const_reference;
21 // typedef typename container_type::size_type size_type;
24 // container_type c;
51 static_assert((std::is_same<std::priority_queue<int>::container_type, std::vector<int> >::value), "");
52 static_assert((std::is_same<std::priority_queue<double, std::deque<int> >::container_type, std::deque<int> >::value), "");
  /external/libcxx/test/containers/container.adaptors/queue/queue.cons.alloc/
ctor_container_alloc.pass.cpp 13 // queue(const container_type& c, const Alloc& a);
38 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {}
40 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
  /external/libcxx/test/containers/container.adaptors/queue/queue.defn/
types.pass.cpp 16 // typedef Container container_type;
17 // typedef typename container_type::value_type value_type;
18 // typedef typename container_type::reference reference;
19 // typedef typename container_type::const_reference const_reference;
20 // typedef typename container_type::size_type size_type;
23 // container_type c;
49 static_assert((std::is_same<std::queue<int>::container_type, std::deque<int> >::value), "");
50 static_assert((std::is_same<std::queue<double, std::vector<int> >::container_type, std::vector<int> >::value), "");
  /external/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/
ctor_container_alloc.pass.cpp 13 // stack(const container_type& c, const Alloc& a);
38 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {}
40 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
  /external/libcxx/test/containers/container.adaptors/stack/stack.defn/
types.pass.cpp 16 // typedef Container container_type;
17 // typedef typename container_type::value_type value_type;
18 // typedef typename container_type::reference reference;
19 // typedef typename container_type::const_reference const_reference;
20 // typedef typename container_type::size_type size_type;
23 // container_type c;
50 static_assert((std::is_same<std::stack<int>::container_type, std::deque<int> >::value), "");
51 static_assert((std::is_same<std::stack<double, std::vector<int> >::container_type, std::vector<int> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/
types.pass.cpp 17 // typedef Container container_type;
18 // typedef typename container_type::value_type value_type;
19 // typedef typename container_type::reference reference;
20 // typedef typename container_type::const_reference const_reference;
21 // typedef typename container_type::size_type size_type;
24 // container_type c;
51 static_assert((std::is_same<std::priority_queue<int>::container_type, std::vector<int> >::value), "");
52 static_assert((std::is_same<std::priority_queue<double, std::deque<int> >::container_type, std::deque<int> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.cons.alloc/
ctor_container_alloc.pass.cpp 13 // queue(const container_type& c, const Alloc& a);
38 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {}
40 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.defn/
types.pass.cpp 16 // typedef Container container_type;
17 // typedef typename container_type::value_type value_type;
18 // typedef typename container_type::reference reference;
19 // typedef typename container_type::const_reference const_reference;
20 // typedef typename container_type::size_type size_type;
23 // container_type c;
49 static_assert((std::is_same<std::queue<int>::container_type, std::deque<int> >::value), "");
50 static_assert((std::is_same<std::queue<double, std::vector<int> >::container_type, std::vector<int> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/
ctor_container_alloc.pass.cpp 13 // stack(const container_type& c, const Alloc& a);
38 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {}
40 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/
types.pass.cpp 16 // typedef Container container_type;
17 // typedef typename container_type::value_type value_type;
18 // typedef typename container_type::reference reference;
19 // typedef typename container_type::const_reference const_reference;
20 // typedef typename container_type::size_type size_type;
23 // container_type c;
50 static_assert((std::is_same<std::stack<int>::container_type, std::deque<int> >::value), "");
51 static_assert((std::is_same<std::stack<double, std::vector<int> >::container_type, std::vector<int> >::value), "");
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_queue.i 67 typedef _Sequence container_type;
101 typedef _Sequence container_type;
std_stack.i 66 typedef _Sequence container_type;
100 typedef _Sequence container_type;
  /external/libcxx/test/iterators/predef.iterators/insert.iterators/back.insert.iterator/
types.pass.cpp 21 // typedef Cont container_type;
48 static_assert((std::is_same<typename R::container_type, C>::value), "");
  /external/libcxx/test/iterators/predef.iterators/insert.iterators/front.insert.iterator/
types.pass.cpp 21 // typedef Container container_type;
49 static_assert((std::is_same<typename R::container_type, C>::value), "");
  /external/libcxx/test/iterators/predef.iterators/insert.iterators/insert.iterator/
types.pass.cpp 22 // typedef Cont container_type;
53 static_assert((std::is_same<typename R::container_type, C>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/back.insert.iterator/
types.pass.cpp 21 // typedef Cont container_type;
48 static_assert((std::is_same<typename R::container_type, C>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/front.insert.iterator/
types.pass.cpp 21 // typedef Container container_type;
49 static_assert((std::is_same<typename R::container_type, C>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/insert.iterator/
types.pass.cpp 22 // typedef Cont container_type;
53 static_assert((std::is_same<typename R::container_type, C>::value), "");
  /external/chromium_org/chromecast/shell/browser/
cast_content_browser_client.h 57 WindowContainerType container_type,

Completed in 853 milliseconds

12 3 4 5 6 7