HomeSort by relevance Sort by last modified time
    Searched refs:front (Results 1 - 25 of 734) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.access/
front.pass.cpp 12 // const charT& front() const;
13 // charT& front();
23 assert(&cs.front() == &cs[0]);
24 assert(&s.front() == &s[0]);
25 s.front() = typename S::value_type('z');
26 assert(s.front() == typename S::value_type('z'));
  /external/icu4c/layoutex/
LXUtilities.cpp 77 le_int32 front, back; local
79 for (front = 0, back = length - 1; front < back; front += 1, back -= 1) {
80 le_int32 swap = array[front];
82 array[front] = array[back];
89 le_int32 front, back; local
91 for (front = 0, back = length - 1; front < back; front += 1, back -= 1)
    [all...]
  /external/webkit/Tools/Scripts/
generate-qt-inspector-resource 29 # Regenerate WebCore/inspector/front-end/WebKit.qrc from the content of WebCore/inspector/front-end/
36 $file =~ s,Source/WebCore/inspector/front-end/,,;
42 open(WEBKIT_QRC, ">Source/WebCore/inspector/front-end/WebKit.qrc") or die;
48 addFiles(<Source/WebCore/inspector/front-end/*.{*html,js,css,svg}>);
49 addFiles(<Source/WebCore/inspector/front-end/Images/*>);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/queue/queue.defn/
push.pass.cpp 22 assert(q.front() == 1);
26 assert(q.front() == 1);
30 assert(q.front() == 1);
pop.pass.cpp 25 assert(q.front() == 1);
29 assert(q.front() == 2);
33 assert(q.front() == 3);
push_rv.pass.cpp 25 assert(q.front() == MoveOnly(1));
29 assert(q.front() == MoveOnly(1));
33 assert(q.front() == MoveOnly(1));
front.pass.cpp 12 // reference front();
24 int& ir = q.front();
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.access/
front.pass.cpp 12 // reference front();
13 // const_reference front() const;
26 assert(c.front() == 0);
27 c.front() = 10;
28 assert(c.front() == 10);
36 assert(c.front() == 0);
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMGOT.cpp 58 m_pLast = llvm::cast<ARMGOTEntry>(&m_SectionData->front());
69 if (NULL == m_GOTPLT.front) {
71 if (NULL == m_GOT.front) {
74 m_GOTPLT.front = entry;
78 m_GOTPLT.front = m_GOT.front;
79 m_GOT.front = llvm::cast<ARMGOTEntry>(m_GOT.front->getNextNode());
84 if (NULL != m_GOT.front)
85 m_GOT.front = llvm::cast<ARMGOTEntry>(m_GOT.front->getNextNode())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/list.modifiers/
push_back_rvalue.pass.cpp 25 assert(l1.front() == MoveOnly(1));
28 assert(l1.front() == MoveOnly(1));
push_front_rvalue.pass.cpp 25 assert(l1.front() == MoveOnly(1));
28 assert(l1.front() == MoveOnly(2));
emplace.pass.cpp 38 assert(c.front().geti() == 2);
39 assert(c.front().getd() == 3.5);
42 assert(c.front().geti() == 2);
43 assert(c.front().getd() == 3.5);
emplace_back.pass.cpp 38 assert(c.front().geti() == 2);
39 assert(c.front().getd() == 3.5);
42 assert(c.front().geti() == 2);
43 assert(c.front().getd() == 3.5);
emplace_front.pass.cpp 38 assert(c.front().geti() == 2);
39 assert(c.front().getd() == 3.5);
42 assert(c.front().geti() == 3);
43 assert(c.front().getd() == 4.5);
insert_iter_rvalue.pass.cpp 25 assert(l1.front() == MoveOnly(1));
28 assert(l1.front() == MoveOnly(2));
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector/vector.modifiers/
emplace_back.pass.cpp 61 assert(c.front().geti() == 2);
62 assert(c.front().getd() == 3.5);
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);
78 assert(c.front().geti() == 2);
79 assert(c.front().getd() == 3.5);
  /external/chromium/base/memory/
ref_counted_memory.cc 13 const unsigned char* RefCountedStaticMemory::front() const { function in class:RefCountedStaticMemory
35 const unsigned char* RefCountedBytes::front() const { function in class:RefCountedBytes
36 // STL will assert if we do front() on an empty vector, but calling code
38 return size() ? &data.front() : NULL;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector/vector.data/
data.pass.cpp 25 assert(v.data() == &v.front());
data_const.pass.cpp 25 assert(v.data() == &v.front());
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.modifiers/
emplace_front.pass.cpp 27 assert(c.front() == Emplaceable());
30 assert(c.front() == Emplaceable(1, 2.5));
push_front_const.pass.cpp 24 assert(c.front() == 1);
27 assert(c.front() == 3);
push_front_rv.pass.cpp 27 assert(c.front() == 1);
30 assert(c.front() == 3);
  /external/stlport/test/unit/
config_test.cpp 72 int* pvect1Front = &vect1.front();
74 int* pvect2Front = &vect2.front();
79 CPPUNIT_ASSERT( pvect1Front == &vect2.front() );
80 CPPUNIT_ASSERT( pvect2Front == &vect1.front() );
82 CPPUNIT_ASSERT( pvect1Front != &vect2.front() );
83 CPPUNIT_ASSERT( pvect2Front != &vect1.front() );
  /ndk/tests/device/test-gnustl-full/unit/
config_test.cpp 72 int* pvect1Front = &vect1.front();
74 int* pvect2Front = &vect2.front();
79 CPPUNIT_ASSERT( pvect1Front == &vect2.front() );
80 CPPUNIT_ASSERT( pvect2Front == &vect1.front() );
82 CPPUNIT_ASSERT( pvect1Front != &vect2.front() );
83 CPPUNIT_ASSERT( pvect2Front != &vect1.front() );
  /ndk/tests/device/test-stlport/unit/
config_test.cpp 72 int* pvect1Front = &vect1.front();
74 int* pvect2Front = &vect2.front();
79 CPPUNIT_ASSERT( pvect1Front == &vect2.front() );
80 CPPUNIT_ASSERT( pvect2Front == &vect1.front() );
82 CPPUNIT_ASSERT( pvect1Front != &vect2.front() );
83 CPPUNIT_ASSERT( pvect2Front != &vect1.front() );

Completed in 452 milliseconds

1 2 3 4 5 6 7 8 91011>>