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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/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...]
  /device/htc/flounder/
nvcamera.conf 7 camera1=/dev/ov9760,front,270,mono // front camera
  /ndk/tests/device/test-gnustl-full/unit/
mvctor_test.cpp 35 int *pint = &(v_v_ints.front().front());
45 CPPUNIT_ASSERT((pint == &v_v_ints.front().front()));
56 pint = &v_v_ints[2].front();
60 CPPUNIT_ASSERT((pint == &v_v_ints[1].front()));
68 char const* pstr = vec_strs.front().c_str();
77 CPPUNIT_ASSERT((pstr == vec_strs.front().c_str()));
98 int *p1 = &elem1.front();
99 int *p2 = &elem2.front();
    [all...]
iter_test.cpp 153 CPPUNIT_CHECK( vvints.front() == lvref );
154 CPPUNIT_CHECK( lvints.front() == vvref );
161 int *pvvint = &vvints.front().front();
162 int *plvint = &lvints.front().front();
166 CPPUNIT_CHECK( pvvint == &lvints.front().front() );
167 CPPUNIT_CHECK( plvint == &vvints.front().front() );
    [all...]
  /ndk/tests/device/test-stlport/unit/
mvctor_test.cpp 35 int *pint = &(v_v_ints.front().front());
45 CPPUNIT_ASSERT((pint == &v_v_ints.front().front()));
56 pint = &v_v_ints[2].front();
60 CPPUNIT_ASSERT((pint == &v_v_ints[1].front()));
68 char const* pstr = vec_strs.front().c_str();
77 CPPUNIT_ASSERT((pstr == vec_strs.front().c_str()));
98 int *p1 = &elem1.front();
99 int *p2 = &elem2.front();
    [all...]
  /hardware/ril/libril/
rilSocketQueue.h 54 * Front of the queue.
56 T *front; member in class:Ril_queue
68 * Add a request to the front of the queue.
98 front = NULL;
109 temp = this->front;
110 if(NULL != this->front->p_next) {
111 this->front = this->front->p_next;
113 this->front = NULL;
125 if(NULL == this->front) {
    [all...]
  /external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.access/
front.pass.cpp 12 // reference front();
13 // const_reference front() const;
28 assert(c.front() == 0);
29 c.front() = 10;
30 assert(c.front() == 10);
38 assert(c.front() == 0);
47 assert(c.front() == 0);
48 c.front() = 10;
49 assert(c.front() == 10);
57 assert(c.front() == 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.access/
front.pass.cpp 12 // reference front();
13 // const_reference front() const;
28 assert(c.front() == 0);
29 c.front() = 10;
30 assert(c.front() == 10);
38 assert(c.front() == 0);
47 assert(c.front() == 0);
48 c.front() = 10;
49 assert(c.front() == 10);
57 assert(c.front() == 0)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.access/
front.pass.cpp 12 // const charT& front() const;
13 // charT& front();
29 assert(&cs.front() == &cs[0]);
30 assert(&s.front() == &s[0]);
31 s.front() = typename S::value_type('z');
32 assert(s.front() == typename S::value_type('z'));
52 char c = s.front();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.access/
front.pass.cpp 12 // const charT& front() const;
13 // charT& front();
29 assert(&cs.front() == &cs[0]);
30 assert(&s.front() == &s[0]);
31 s.front() = typename S::value_type('z');
32 assert(s.front() == typename S::value_type('z'));
52 char c = s.front();
  /external/libcxx/test/std/containers/sequences/vector/vector.modifiers/
emplace_back.pass.cpp 63 assert(c.front().geti() == 2);
64 assert(c.front().getd() == 3.5);
68 assert(c.front().geti() == 2);
69 assert(c.front().getd() == 3.5);
78 assert(c.front().geti() == 2);
79 assert(c.front().getd() == 3.5);
83 assert(c.front().geti() == 2);
84 assert(c.front().getd() == 3.5);
94 assert(c.front().geti() == 2);
95 assert(c.front().getd() == 3.5)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/
emplace_back.pass.cpp 63 assert(c.front().geti() == 2);
64 assert(c.front().getd() == 3.5);
68 assert(c.front().geti() == 2);
69 assert(c.front().getd() == 3.5);
78 assert(c.front().geti() == 2);
79 assert(c.front().getd() == 3.5);
83 assert(c.front().geti() == 2);
84 assert(c.front().getd() == 3.5);
94 assert(c.front().geti() == 2);
95 assert(c.front().getd() == 3.5)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Cube.java 22 public Cube(GLWorld world, float left, float bottom, float back, float right, float top, float front) {
28 GLVertex leftBottomFront = addVertex(left, bottom, front);
29 GLVertex rightBottomFront = addVertex(right, bottom, front);
30 GLVertex leftTopFront = addVertex(left, top, front);
31 GLVertex rightTopFront = addVertex(right, top, front);
36 // front
  /external/libcxx/test/std/containers/sequences/list/list.modifiers/
emplace_back.pass.cpp 41 assert(c.front().geti() == 2);
42 assert(c.front().getd() == 3.5);
45 assert(c.front().geti() == 2);
46 assert(c.front().getd() == 3.5);
55 assert(c.front().geti() == 2);
56 assert(c.front().getd() == 3.5);
59 assert(c.front().geti() == 2);
60 assert(c.front().getd() == 3.5);
emplace_front.pass.cpp 41 assert(c.front().geti() == 2);
42 assert(c.front().getd() == 3.5);
45 assert(c.front().geti() == 3);
46 assert(c.front().getd() == 4.5);
55 assert(c.front().geti() == 2);
56 assert(c.front().getd() == 3.5);
59 assert(c.front().geti() == 3);
60 assert(c.front().getd() == 4.5);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.modifiers/
emplace_back.pass.cpp 41 assert(c.front().geti() == 2);
42 assert(c.front().getd() == 3.5);
45 assert(c.front().geti() == 2);
46 assert(c.front().getd() == 3.5);
55 assert(c.front().geti() == 2);
56 assert(c.front().getd() == 3.5);
59 assert(c.front().geti() == 2);
60 assert(c.front().getd() == 3.5);
emplace_front.pass.cpp 41 assert(c.front().geti() == 2);
42 assert(c.front().getd() == 3.5);
45 assert(c.front().geti() == 3);
46 assert(c.front().getd() == 4.5);
55 assert(c.front().geti() == 2);
56 assert(c.front().getd() == 3.5);
59 assert(c.front().geti() == 3);
60 assert(c.front().getd() == 4.5);
  /system/media/audio_utils/
fifo.c 64 // Return the difference between two indices: rear - front, where 0 <= difference <= mFrameCount.
66 int32_t front)
68 int32_t diff = rear - front;
71 int32_t genDiff = (rear & mask) - (front & mask);
84 int32_t front = android_atomic_acquire_load(&fifo->mFront); local
86 size_t availToWrite = fifo->mFrameCount - audio_utils_fifo_diff(fifo, rear, front);
112 int32_t front = fifo->mFront; local
113 size_t availToRead = audio_utils_fifo_diff(fifo, rear, front);
117 front &= fifo->mFrameCountP2 - 1;
118 size_t part1 = fifo->mFrameCount - front;
    [all...]
  /external/clang/test/CodeGen/
2004-01-01-UnknownInitSize.c 4 * This regression test ensures that the C front end can compile initializers
  /external/llvm/bindings/
README.txt 3 infrastructure--for instance, a self-hosted compiler front-end.
  /external/llvm/test/Assembler/
2003-05-21-EmptyStructTest.ll 4 ; The old C front-end never generated empty structures, now the new one
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
ActionMultiMap.java 32 * Puts the (mimeType,Action) tuple into the multimap at the front if
33 * the 'front' flag is set to true
35 public void put(String mimeType, Action info, boolean front) {
44 if (front) {
  /external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/
insert_after_const.pass.cpp 28 assert(c.front() == 0);
29 assert(c.front() == 0);
34 assert(c.front() == 0);
40 assert(c.front() == 0);
47 assert(c.front() == 0);
61 assert(c.front() == 0);
62 assert(c.front() == 0);
67 assert(c.front() == 0);
73 assert(c.front() == 0);
80 assert(c.front() == 0)
    [all...]
insert_after_rv.pass.cpp 30 assert(c.front() == 0);
31 assert(c.front() == 0);
36 assert(c.front() == 0);
42 assert(c.front() == 0);
49 assert(c.front() == 0);
63 assert(c.front() == 0);
64 assert(c.front() == 0);
69 assert(c.front() == 0);
75 assert(c.front() == 0);
82 assert(c.front() == 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
insert_after_const.pass.cpp 28 assert(c.front() == 0);
29 assert(c.front() == 0);
34 assert(c.front() == 0);
40 assert(c.front() == 0);
47 assert(c.front() == 0);
61 assert(c.front() == 0);
62 assert(c.front() == 0);
67 assert(c.front() == 0);
73 assert(c.front() == 0);
80 assert(c.front() == 0)
    [all...]

Completed in 433 milliseconds

1 2 3 4 5 6 7 8 91011>>