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

12 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/containers/sequences/vector/vector.modifiers/
emplace_back.pass.cpp 65 assert(c.front().geti() == 2);
66 assert(c.front().getd() == 3.5);
74 assert(c.front().geti() == 2);
75 assert(c.front().getd() == 3.5);
80 assert(c.front().geti() == 2);
81 assert(c.front().getd() == 3.5);
92 assert(c.front().geti() == 2);
93 assert(c.front().getd() == 3.5);
101 assert(c.front().geti() == 2);
102 assert(c.front().getd() == 3.5)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/vector.modifiers/
emplace_back.pass.cpp 65 assert(c.front().geti() == 2);
66 assert(c.front().getd() == 3.5);
74 assert(c.front().geti() == 2);
75 assert(c.front().getd() == 3.5);
80 assert(c.front().geti() == 2);
81 assert(c.front().getd() == 3.5);
92 assert(c.front().geti() == 2);
93 assert(c.front().getd() == 3.5);
101 assert(c.front().geti() == 2);
102 assert(c.front().getd() == 3.5)
    [all...]
  /external/libcxx/test/std/containers/container.adaptors/queue/queue.defn/
pop.pass.cpp 25 assert(q.front() == 1);
29 assert(q.front() == 2);
33 assert(q.front() == 3);
push_rv.pass.cpp 26 assert(q.front() == MoveOnly(1));
30 assert(q.front() == MoveOnly(1));
34 assert(q.front() == MoveOnly(1));
front.pass.cpp 12 // reference front();
24 int& ir = q.front();
  /external/libcxx/test/std/containers/sequences/array/
front_back.pass.cpp 12 // reference front(); // constexpr in C++17
14 // const_reference front(); // constexpr in C++14
30 return arr.front() == val;
47 C::reference r1 = c.front();
61 C::const_reference r1 = c.front();
72 static_assert((std::is_same<decltype(c.front()), T &>::value), "");
73 static_assert((std::is_same<decltype(cc.front()), const T &>::value), "");
77 TEST_IGNORE_NODISCARD c.front();
79 TEST_IGNORE_NODISCARD cc.front();
88 static_assert((std::is_same<decltype(c.front()), const T &>::value), "")
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/container.adaptors/queue/queue.defn/
pop.pass.cpp 25 assert(q.front() == 1);
29 assert(q.front() == 2);
33 assert(q.front() == 3);
push_rv.pass.cpp 26 assert(q.front() == MoveOnly(1));
30 assert(q.front() == MoveOnly(1));
34 assert(q.front() == MoveOnly(1));
front.pass.cpp 12 // reference front();
24 int& ir = q.front();
  /external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/
push_front_const.pass.cpp 26 assert(c.front() == 1);
29 assert(c.front() == 3);
39 assert(c.front() == 1);
42 assert(c.front() == 3);
push_front_rv.pass.cpp 29 assert(c.front() == 1);
32 assert(c.front() == 3);
41 assert(c.front() == 1);
44 assert(c.front() == 3);
  /external/libcxx/test/std/containers/sequences/list/list.modifiers/
insert_iter_rvalue.pass.cpp 28 assert(l1.front() == MoveOnly(1));
31 assert(l1.front() == MoveOnly(2));
38 assert(l1.front() == MoveOnly(1));
41 assert(l1.front() == MoveOnly(2));
push_back_rvalue.pass.cpp 28 assert(l1.front() == MoveOnly(1));
31 assert(l1.front() == MoveOnly(1));
38 assert(l1.front() == MoveOnly(1));
41 assert(l1.front() == MoveOnly(1));
push_front_rvalue.pass.cpp 28 assert(l1.front() == MoveOnly(1));
31 assert(l1.front() == MoveOnly(2));
38 assert(l1.front() == MoveOnly(1));
41 assert(l1.front() == MoveOnly(2));
  /frameworks/compile/mclinker/include/mcld/Script/
StringList.h 45 const_reference front() const { return m_Tokens.front(); } function in class:mcld::StringList
46 reference front() { return m_Tokens.front(); } function in class:mcld::StringList
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/forwardlist.modifiers/
push_front_const.pass.cpp 26 assert(c.front() == 1);
29 assert(c.front() == 3);
39 assert(c.front() == 1);
42 assert(c.front() == 3);
push_front_rv.pass.cpp 29 assert(c.front() == 1);
32 assert(c.front() == 3);
41 assert(c.front() == 1);
44 assert(c.front() == 3);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/list.modifiers/
insert_iter_rvalue.pass.cpp 28 assert(l1.front() == MoveOnly(1));
31 assert(l1.front() == MoveOnly(2));
38 assert(l1.front() == MoveOnly(1));
41 assert(l1.front() == MoveOnly(2));
push_back_rvalue.pass.cpp 28 assert(l1.front() == MoveOnly(1));
31 assert(l1.front() == MoveOnly(1));
38 assert(l1.front() == MoveOnly(1));
41 assert(l1.front() == MoveOnly(1));
push_front_rvalue.pass.cpp 28 assert(l1.front() == MoveOnly(1));
31 assert(l1.front() == MoveOnly(2));
38 assert(l1.front() == MoveOnly(1));
41 assert(l1.front() == MoveOnly(2));
  /external/libcxx/test/libcxx/containers/sequences/vector/
db_cfront.pass.cpp 12 // Call front() on empty const container.
32 assert(c.front() == 0);
40 assert(c.front() == 0);
  /external/libcxx/test/std/strings/basic.string/string.access/
db_cfront.pass.cpp 12 // Call front() on empty const container.
31 assert(s.front() == 0);
38 assert(s.front() == 0);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/containers/sequences/vector/
db_cfront.pass.cpp 12 // Call front() on empty const container.
32 assert(c.front() == 0);
40 assert(c.front() == 0);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.access/
db_cfront.pass.cpp 12 // Call front() on empty const container.
31 assert(s.front() == 0);
38 assert(s.front() == 0);
  /external/libchrome/base/memory/
ref_counted_memory.cc 15 (memcmp(front(), other->front(), size()) == 0);
22 const unsigned char* RefCountedStaticMemory::front() const { function in class:base::RefCountedStaticMemory
48 const unsigned char* RefCountedBytes::front() const { function in class:base::RefCountedBytes
49 // STL will assert if we do front() on an empty vector, but calling code
51 return size() ? &data_.front() : NULL;
72 const unsigned char* RefCountedString::front() const { function in class:base::RefCountedString

Completed in 1006 milliseconds

12 3 4 5 6 7 8 91011>>