/external/webkit/WebKit/mac/ForwardingHeaders/wtf/ |
Deque.h | 1 #import <JavaScriptCore/Deque.h>
|
/external/webkit/WebCore/ForwardingHeaders/wtf/ |
Deque.h | 3 #include <JavaScriptCore/Deque.h>
|
/external/stlport/test/unit/ |
insert_test.cpp | 1 #include <deque> 36 deque<char const*> names(array1, array1 + 3); 37 deque<char const*>::iterator i = names.begin() + 2; 39 insert_iterator<deque <char const*> > itd(names, i); 40 itd = copy(array2, array2 + 3, insert_iterator<deque <char const*> >(names, i)); 60 deque<char const*> names(array1, array1 + 3); 61 deque<char const*>::iterator i = names.begin() + 2;
|
finsert_test.cpp | 3 #include <deque> 34 deque<char const*> names; 35 front_insert_iterator<deque<char const*> > fit(names); 36 fit = copy(array, array + 3, front_insert_iterator<deque <char const*> >(names)); 52 deque<char const*> names;
|
deque_header_test.cpp | 8 #include <deque>
|
deque_test.cpp | 5 #include <deque> 52 deque<int> d; 71 deque<int>::iterator dit = d.begin(); 72 deque<int>::const_iterator cdit(d.begin()); 82 deque<int> d; 88 deque<int>::iterator dit; 158 deque<int> d; 159 deque<int> const& cd = d; 185 deque<int> ref; 190 deque<deque<int> > d_d_int(1, ref) [all...] |
stack_test.cpp | 4 #include <deque> 35 stack<int, deque<int> > s;
|
queue_test.cpp | 4 #include <deque> 35 priority_queue<int, deque<int>, less<int> > q;
|
mvctor_test.cpp | 8 #include <deque> 150 standard_test1(deque<int>(10)); 166 CheckFullMoveSupport(deque<int>()); 178 deque<vector<int> > vect_deque; 208 deque<vector<int> > vect_deque; 237 deque<vector<int> > vect_deque; 239 deque<vector<int> >::iterator vdit(vect_deque.begin()), vditEnd(vect_deque.end()); 246 // This check, repeated after each operation, check the deque consistency: 247 deque<vector<int> >::iterator it = vect_deque.end() - 5; 258 deque<vector<int> >::iterator dit(vect_deque.begin()), ditEnd(vect_deque.end()) [all...] |
mvctor_declaration_test.cpp | 11 #include <deque> 127 struct __move_traits<deque<specially_allocated_struct> > { 222 //deque: 223 CPPUNIT_ASSERT( is_movable(deque<char>()) ); 224 CPPUNIT_ASSERT( is_movable(deque<specially_allocated_struct>()) ); 226 CPPUNIT_ASSERT( is_move_complete(deque<char>()) ); 227 CPPUNIT_ASSERT( !is_move_complete(deque<specially_allocated_struct>()) ); 229 CPPUNIT_ASSERT( !is_move_complete(deque<char>()) );
|
/external/stlport/etc/ |
std_headers.txt | 4 deque
|
/external/webkit/JavaScriptCore/wtf/ |
Deque.h | 33 // FIXME: Could move what Vector and Deque share into a separate file. 34 // Deque doesn't actually use Vector. 47 class Deque : public FastAllocBase { 54 Deque(); 55 Deque(const Deque<T>&); 56 Deque& operator=(const Deque<T>&); 57 ~Deque(); 59 void swap(Deque<T>&) [all...] |
/external/stlport/stlport/stl/pointers/ |
_deque.h | 31 * struct helper to cast deque iterators: 77 #define DEQUE_IMPL _STLP_PTR_IMPL_NAME(deque) 91 # define deque _STLP_NON_DBG_NAME(deque) macro 97 class deque class in inherits:__stlport_class 98 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (deque) 99 : public __stlport_class<deque<_Tp, _Alloc> > 105 typedef deque<_Tp, _Alloc> _Self; 159 explicit deque(const allocator_type& __a = allocator_type()) function in class:deque 162 deque(const _Self& __x) : _M_impl(__x._M_impl) { function in class:deque 165 explicit deque(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type), function in class:deque 173 explicit deque(size_type __n) : _M_impl(__n) {} function in class:deque 178 deque(_InputIterator __first, _InputIterator __last, function in class:deque 193 deque(_InputIterator __first, _InputIterator __last) function in class:deque 202 deque(const_pointer __first, const_pointer __last, function in class:deque 208 deque(const_iterator __first, const_iterator __last, function in class:deque 216 deque(__move_source<_Self> src) function in class:deque 375 # undef deque macro [all...] |
/external/webkit/WebCore/platform/text/ |
SegmentedString.cpp | 62 Deque<SegmentedSubstring>::const_iterator it = m_substrings.begin(); 63 Deque<SegmentedSubstring>::const_iterator e = m_substrings.end(); 73 Deque<SegmentedSubstring>::iterator it = m_substrings.begin(); 74 Deque<SegmentedSubstring>::iterator e = m_substrings.end(); 123 Deque<SegmentedSubstring>::const_iterator it = s.m_substrings.begin(); 124 Deque<SegmentedSubstring>::const_iterator e = s.m_substrings.end(); 136 Deque<SegmentedSubstring>::const_reverse_iterator it = s.m_substrings.rbegin(); 137 Deque<SegmentedSubstring>::const_reverse_iterator e = s.m_substrings.rend(); 167 Deque<SegmentedSubstring>::const_iterator it = m_substrings.begin(); 168 Deque<SegmentedSubstring>::const_iterator e = m_substrings.end() [all...] |
/external/webkit/WebCore/plugins/ |
PluginMainThreadScheduler.h | 29 #include <wtf/Deque.h> 56 void dispatchCallsForPlugin(NPP, const Deque<Call>& calls); 57 typedef HashMap<NPP, Deque<Call> > CallQueueMap;
|
PluginMainThreadScheduler.cpp | 65 m_callQueueMap.set(npp, Deque<Call>()); 76 void PluginMainThreadScheduler::dispatchCallsForPlugin(NPP npp, const Deque<Call>& calls) 78 Deque<Call>::const_iterator end = calls.end(); 79 for (Deque<Call>::const_iterator it = calls.begin(); it != end; ++it) {
|
/external/stlport/stlport/ |
deque | 42 # include_next <deque> 44 # include _STLP_NATIVE_HEADER(deque)
|
/external/webkit/WebCore/storage/wince/ |
LocalStorageThreadWince.h | 28 #include <wtf/Deque.h> 52 Deque<RefPtr<LocalStorageTask> > m_queue;
|
DatabaseThreadWince.h | 27 #include <wtf/Deque.h> 59 Deque<RefPtr<DatabaseTask> > m_queue;
|
/packages/apps/Gallery3D/src/com/cooliris/media/ |
VirtualFeed.java | 26 protected final Deque<E> mElements = new Deque<E>();
|
/external/stlport/stlport/stl/debug/ |
_deque.h | 37 #define _STLP_NON_DBG_DEQUE _STLP_PRIV _STLP_NON_DBG_NAME(deque) <_Tp,_Alloc> 51 class deque : class in inherits:_STLP_PRIV__construct_checker,__stlport_class 57 , public __stlport_class<deque<_Tp, _Alloc> > 60 typedef deque<_Tp,_Alloc> _Self; 129 explicit deque(const allocator_type& __a = allocator_type()) : 131 deque(const _Self& __x) : 136 explicit deque(size_type __n, const value_type& __x = _Tp(), 138 deque(size_type __n, const value_type& __x, 143 explicit deque(size_type __n) : 148 deque(__move_source<_Self> src [all...] |
/external/stlport/stlport/stl/ |
_deque.c | 87 # define deque _STLP_PTR_IMPL_NAME(deque) macro 89 # define deque _STLP_NON_DBG_NAME(deque) macro 102 # define __iterator__ _STLP_TYPENAME_ON_RETURN_TYPE deque<_Tp, _Alloc>::iterator 106 deque<_Tp, _Alloc >& 107 deque<_Tp, _Alloc >::operator= (const deque<_Tp, _Alloc >& __x) { 122 void deque<_Tp, _Alloc >::_M_fill_insert(iterator __pos, 150 void deque<_Tp, _Alloc>::insert(iterator __pos 807 # undef deque macro [all...] |
_deque.h | 63 * that an empty deque must have one node, and that a deque 332 /* Deque base class. It has two purposes. First, its constructor 392 # define deque _STLP_PTR_IMPL_NAME(deque) macro 394 # define deque _STLP_NON_DBG_NAME(deque) macro 400 class deque : protected _STLP_PRIV _Deque_base<_Tp, _Alloc> class in inherits:_STLP_PRIV_Deque_base,__stlport_class 401 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (deque) 402 , public __stlport_class<deque<_Tp, _Alloc> 478 explicit deque(const allocator_type& __a = allocator_type()) function in class:deque 486 deque(const _Self& __x) function in class:deque 497 explicit deque(size_type __n) function in class:deque 500 deque(size_type __n, const value_type& __val, const allocator_type& __a = allocator_type()) function in class:deque 532 deque(_InputIterator __first, _InputIterator __last, function in class:deque 541 deque(_InputIterator __first, _InputIterator __last) function in class:deque 549 deque(const value_type* __first, const value_type* __last, function in class:deque 554 deque(const_iterator __first, const_iterator __last, function in class:deque 561 deque(__move_source<_Self> src) function in class:deque 1074 # undef deque macro [all...] |
/external/stlport/test/eh/ |
test_deque.cpp | 24 # include <deque> 27 # include <deque.h> 39 typedef EH_STD::deque<DQTestClass, eh_allocator(DQTestClass) > TestDeque;
|
/external/webkit/WebCore/storage/ |
SQLTransactionCoordinator.h | 38 #include <wtf/Deque.h> 53 typedef Deque<RefPtr<SQLTransaction> > TransactionsQueue;
|