HomeSort by relevance Sort by last modified time
    Searched refs:value_type (Results 226 - 250 of 2796) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/containers/associative/map/map.access/
empty.pass.cpp 27 m.insert(M::value_type(1, 1.5));
37 m.insert(M::value_type(1, 1.5));
  /external/libcxx/test/std/containers/associative/multimap/
empty.pass.cpp 27 m.insert(M::value_type(1, 1.5));
37 m.insert(M::value_type(1, 1.5));
  /external/libcxx/test/std/containers/associative/multiset/
empty.pass.cpp 27 m.insert(M::value_type(1));
37 m.insert(M::value_type(1));
  /external/libcxx/test/std/containers/associative/set/
empty.pass.cpp 27 m.insert(M::value_type(1));
37 m.insert(M::value_type(1));
insert_cv.pass.cpp 14 // pair<iterator, bool> insert(const value_type& v);
27 R r = m.insert(M::value_type(2));
33 r = m.insert(M::value_type(1));
39 r = m.insert(M::value_type(3));
45 r = m.insert(M::value_type(3));
56 R r = m.insert(M::value_type(2));
62 r = m.insert(M::value_type(1));
68 r = m.insert(M::value_type(3));
74 r = m.insert(M::value_type(3));
insert_rv.pass.cpp 16 // pair<iterator, bool> insert(value_type&& v);
30 R r = m.insert(M::value_type(2));
36 r = m.insert(M::value_type(1));
42 r = m.insert(M::value_type(3));
48 r = m.insert(M::value_type(3));
58 R r = m.insert(M::value_type(2));
64 r = m.insert(M::value_type(1));
70 r = m.insert(M::value_type(3));
76 r = m.insert(M::value_type(3));
  /external/libcxx/test/std/containers/sequences/deque/deque.capacity/
empty.pass.cpp 29 c.push_back(C::value_type(1));
40 c.push_back(C::value_type(1));
  /external/libcxx/test/std/containers/sequences/forwardlist/
empty.pass.cpp 29 c.push_front(C::value_type(1));
40 c.push_front(C::value_type(1));
  /external/libcxx/test/std/containers/sequences/list/list.capacity/
empty.pass.cpp 29 c.push_back(C::value_type(1));
40 c.push_back(C::value_type(1));
  /external/libcxx/test/std/containers/sequences/vector/vector.capacity/
empty.pass.cpp 29 c.push_back(C::value_type(1));
40 c.push_back(C::value_type(1));
  /external/libcxx/test/std/containers/unord/unord.multiset/
empty.pass.cpp 29 m.insert(M::value_type(1));
40 m.insert(M::value_type(1));
  /external/libcxx/test/std/containers/unord/unord.set/
empty.pass.cpp 29 m.insert(M::value_type(1));
40 m.insert(M::value_type(1));
  /external/libcxx/test/std/iterators/iterator.primitives/iterator.traits/
iterator.pass.cpp 16 // typedef typename Iter::value_type value_type;
30 typedef A value_type; typedef in struct:test_iterator
40 static_assert((std::is_same<It::value_type, A>::value), "");
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op=/
lv_value.pass.cpp 14 // requires CopyConstructible<Cont::value_type>
16 // operator=(const Cont::value_type& value);
26 const typename C::value_type v = typename C::value_type();
  /external/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/
lv_value.pass.cpp 15 // operator=(const Cont::value_type& value);
26 const typename C::value_type v = typename C::value_type();
  /external/libcxx/test/std/utilities/meta/meta.help/
bool_constant.pass.cpp 24 static_assert((std::is_same<_t::value_type, bool>::value), "");
30 static_assert((std::is_same<_f::value_type, bool>::value), "");
  /frameworks/compile/mclinker/include/mcld/ADT/
StringEntry.h 30 typedef DataType value_type; typedef in class:mcld::StringEntry
37 value_type& value() { return m_Value; }
39 const value_type& value() const { return m_Value; }
69 typedef llvm::StringRef value_type; typedef in class:mcld::StringEntry
76 value_type& value() { return m_Value; }
78 const value_type& value() const { return m_Value; }
113 typedef typename StringEntry<DataType>::value_type value_type; typedef in class:mcld::StringEntryFactory
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/map/map.access/
empty.pass.cpp 27 m.insert(M::value_type(1, 1.5));
37 m.insert(M::value_type(1, 1.5));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multimap/
empty.pass.cpp 27 m.insert(M::value_type(1, 1.5));
37 m.insert(M::value_type(1, 1.5));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multiset/
empty.pass.cpp 27 m.insert(M::value_type(1));
37 m.insert(M::value_type(1));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/set/
empty.pass.cpp 27 m.insert(M::value_type(1));
37 m.insert(M::value_type(1));
insert_cv.pass.cpp 14 // pair<iterator, bool> insert(const value_type& v);
27 R r = m.insert(M::value_type(2));
33 r = m.insert(M::value_type(1));
39 r = m.insert(M::value_type(3));
45 r = m.insert(M::value_type(3));
56 R r = m.insert(M::value_type(2));
62 r = m.insert(M::value_type(1));
68 r = m.insert(M::value_type(3));
74 r = m.insert(M::value_type(3));
insert_rv.pass.cpp 16 // pair<iterator, bool> insert(value_type&& v);
30 R r = m.insert(M::value_type(2));
36 r = m.insert(M::value_type(1));
42 r = m.insert(M::value_type(3));
48 r = m.insert(M::value_type(3));
58 R r = m.insert(M::value_type(2));
64 r = m.insert(M::value_type(1));
70 r = m.insert(M::value_type(3));
76 r = m.insert(M::value_type(3));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/iterator.primitives/iterator.traits/
iterator.pass.cpp 16 // typedef typename Iter::value_type value_type;
30 typedef A value_type; typedef in struct:test_iterator
40 static_assert((std::is_same<It::value_type, A>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op=/
lv_value.pass.cpp 14 // requires CopyConstructible<Cont::value_type>
16 // operator=(const Cont::value_type& value);
26 const typename C::value_type v = typename C::value_type();

Completed in 1867 milliseconds

1 2 3 4 5 6 7 8 91011>>