Searched refs:front (Results 51 - 75 of 1441) sorted by relevance

1234567891011>>

/external/libcxx/test/containers/container.adaptors/queue/queue.defn/
H A Demplace.pass.cpp27 assert(q.front() == Emplaceable(1, 2.5));
H A Dfront_const.pass.cpp12 // const_reference front() const;
25 const int& cir = cqr.front();
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
H A Demplace_front.pass.cpp28 assert(c.front() == Emplaceable());
31 assert(c.front() == Emplaceable(1, 2.5));
41 assert(c.front() == Emplaceable());
44 assert(c.front() == Emplaceable(1, 2.5));
H A Dinsert_after_const.pass.cpp28 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()
[all...]
H A Dinsert_after_rv.pass.cpp30 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()
[all...]
H A Demplace_after.pass.cpp31 assert(c.front() == Emplaceable());
36 assert(c.front() == Emplaceable());
42 assert(c.front() == Emplaceable());
49 assert(c.front() == Emplaceable());
63 assert(c.front() == Emplaceable());
68 assert(c.front() == Emplaceable());
74 assert(c.front() == Emplaceable());
81 assert(c.front() == Emplaceable());
/external/libcxx/test/containers/sequences/list/list.modifiers/
H A Dinsert_iter_rvalue.pass.cpp31 assert(l1.front() == MoveOnly(1));
34 assert(l1.front() == MoveOnly(2));
52 assert(l1.front() == MoveOnly(1));
55 assert(l1.front() == MoveOnly(2));
/external/libcxx/test/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/
H A Drv_value.pass.cpp31 assert(c.front() == typename C::value_type());
/external/libcxx/test/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.inserter/
H A Dtest.pass.cpp28 assert(c.front() == 0);
/external/stlport/
H A Dlibstlport.mk3 # We put the STL libraries in front of any user libraries, but we need to
4 # keep the RTTI stuff in abi/cpp/include in front of our STL headers.
/external/stlport/test/unit/
H A Diter_test.cpp153 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...]
/external/chromium_org/media/filters/
H A Dvideo_frame_scheduler_impl.cc72 expired_frames.front().done_cb.Run(expired_frames.front().frame, DROPPED);
78 display_cb_.Run(expired_frames.front().frame);
79 expired_frames.front().done_cb.Run(expired_frames.front().frame, DISPLAYED);
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_list_test.cc37 CHECK_EQ(l->front(), i1);
41 CHECK_EQ(l->front(), i2);
45 CHECK_EQ(l->front(), i3);
49 CHECK_EQ(l->front(), i4);
53 CHECK_EQ(l->front(), i5);
57 CHECK_EQ(l->front(), i6);
81 CHECK_EQ(l.front(), x);
89 CHECK_EQ(l.front(), x);
98 CHECK_EQ(l.front(), z);
104 CHECK_EQ(l.front(),
[all...]
/external/chromium_org/base/memory/
H A Dref_counted_memory.h25 virtual const unsigned char* front() const = 0;
33 // Handy method to simplify calling front() with a reinterpret_cast.
35 return reinterpret_cast<const T*>(front());
55 virtual const unsigned char* front() const OVERRIDE;
84 virtual const unsigned char* front() const OVERRIDE;
110 virtual const unsigned char* front() const OVERRIDE;
132 virtual const unsigned char* front() const OVERRIDE;
/external/llvm/include/llvm/MC/MCAnalysis/
H A DMCFunction.h117 const MCBasicBlock *getEntryBlock() const { return front(); }
118 MCBasicBlock *getEntryBlock() { return front(); }
129 const MCBasicBlock* front() const { return Blocks.front().get(); } function in class:llvm::MCFunction
130 MCBasicBlock* front() { return Blocks.front().get(); } function in class:llvm::MCFunction
/external/chromium_org/sync/internal_api/attachments/
H A Dtask_queue_unittest.cc56 EXPECT_EQ(1, dispatched_.front());
61 EXPECT_EQ(1, dispatched_.front());
67 EXPECT_EQ(2, dispatched_.front());
85 EXPECT_EQ(1, dispatched_.front());
91 EXPECT_EQ(2, dispatched_.front());
116 EXPECT_EQ(1, dispatched_.front());
130 EXPECT_EQ(1, dispatched_.front());
143 EXPECT_EQ(1, dispatched_.front());
161 EXPECT_EQ(2, dispatched_.front());
178 EXPECT_EQ(3, dispatched_.front());
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_download_manager_unittest.cc254 responses_.front().type_of_response);
255 EXPECT_EQ(0, responses_.front().error);
256 EXPECT_EQ(std::string(), responses_.front().signature);
258 EXPECT_EQ(std::string(), responses_.front().response);
262 responses_.front().type_of_response);
263 EXPECT_EQ(404, responses_.front().error);
265 responses_.front().signature);
267 EXPECT_EQ(std::string(), responses_.front().response);
270 EXPECT_EQ(responses_.front().type_of_response,
272 EXPECT_EQ(0, responses_.front()
[all...]
/external/chromium_org/net/websockets/
H A Dwebsocket_frame_perftest.cc39 masking_key, x % size, &scratch.front(), scratch.size());
53 Benchmark("Frame_mask_long_payload", &payload.front(), payload.size());
/external/chromium_org/remoting/protocol/
H A Dbuffered_socket_writer.cc167 base::Closure result = queue_.front()->done_task;
168 delete queue_.front();
183 current_buf_ = new net::DrainableIOBuffer(queue_.front()->data.get(),
184 queue_.front()->data->size());
218 *buffer = queue_.front()->data.get();
219 *size = queue_.front()->data->size();
223 DCHECK_EQ(written, queue_.front()->data->size());
224 buffer_size_ -= queue_.front()->data->size();
/external/libcxx/test/containers/sequences/dynarray/dynarray.overview/
H A Dfront_back.pass.cpp12 // reference front();
13 // const_reference front() const;
34 assert ( *data == dyn.front ());
41 assert ( *data == dyn.front ());
/external/chromium_org/base/prefs/
H A Dpref_store_observer_mock.cc18 EXPECT_EQ(expected, changed_keys.front());
/external/chromium_org/cc/layers/
H A Dvideo_layer_impl_unittest.cc122 gfx::Point3F p1(0, impl.quad_list().front()->rect.height(), 0);
123 gfx::Point3F p2(impl.quad_list().front()->rect.width(), 0, 0);
124 impl.quad_list().front()->quadTransform().TransformPoint(&p1);
125 impl.quad_list().front()->quadTransform().TransformPoint(&p2);
158 gfx::Point3F p1(0, impl.quad_list().front()->rect.height(), 0);
159 gfx::Point3F p2(impl.quad_list().front()->rect.width(), 0, 0);
160 impl.quad_list().front()->quadTransform().TransformPoint(&p1);
161 impl.quad_list().front()->quadTransform().TransformPoint(&p2);
194 gfx::Point3F p1(0, impl.quad_list().front()->rect.height(), 0);
195 gfx::Point3F p2(impl.quad_list().front()
[all...]
/external/chromium_org/media/base/
H A Dbyte_queue.h30 // Get a pointer to the front of the queue and the queue size.
35 // Remove |count| bytes from the front of the queue.
39 // Returns a pointer to the front of the queue.
40 uint8* front() const;
47 // Offset from the start of |buffer_| that marks the front of the queue.
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/
H A Dpredictive_packet_manipulator.cc42 double result = random_results_.front();
/external/chromium_org/ui/gl/
H A Dgl_image_ref_counted_memory.cc28 GLImageMemory::Initialize(ref_counted_memory_->front());

Completed in 2869 milliseconds

1234567891011>>