Searched defs:deque (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/tools/
H A Dgyp-explain.py14 from collections import deque namespace
27 q = deque([(fro, [])])
/external/eigen/Eigen/src/StlSupport/
H A DStdDeque.h18 #define EIGEN_EXPLICIT_STL_DEQUE_INSTANTIATION(...) template class std::deque<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> >;
25 * std::deque such that for data types with alignment issues the correct allocator
33 class deque<__VA_ARGS__, _Ay> \
34 : public deque<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > \
36 typedef deque<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > deque_base; \
42 explicit deque(const allocator_type& a = allocator_type()) : deque_base(a) {} \
44 deque(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : deque_base(first, last, a) {} \
45 deque(const deque& c) : deque_base(c) {} \
46 explicit deque(size_typ
80 class deque<T,EIGEN_ALIGNED_ALLOCATOR<T> > class in namespace:std
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dlink_error_detector.py5 from collections import defaultdict, deque, namedtuple namespace
256 pages_to_check = deque(self._root_pages.union(self._always_detached))
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDequeTest.cpp44 void checkNumberSequence(Deque<int>& deque, int from, int to, bool increment) argument
46 Deque<int>::iterator it = increment ? deque.begin() : deque.end();
57 EXPECT_EQ(increment ? deque.end() : deque.begin(), it);
60 void checkNumberSequenceReverse(Deque<int>& deque, int from, int to, bool increment)
62 Deque<int>::reverse_iterator it = increment ? deque.rbegin() : deque.rend();
73 EXPECT_EQ(increment ? deque.rend() : deque
[all...]
H A DDeque.h157 DequeIterator(Deque<T, inlineCapacity, Allocator>* deque, size_t index) : Base(deque, index) { } argument
188 DequeConstIterator(const Deque<T, inlineCapacity, Allocator>* deque, size_t index) : Base(deque, index) { } argument
440 inline DequeIteratorBase<T, inlineCapacity, Allocator>::DequeIteratorBase(const Deque<T, inlineCapacity, Allocator>* deque, size_t index) argument
441 : m_deque(const_cast<Deque<T, inlineCapacity, Allocator>*>(deque))
/external/stlport/stlport/stl/debug/
H A D_deque.h37 #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_sourc
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A D_stream_hybi.py39 from collections import deque namespace
445 self._ping_queue = deque()
649 inflight_pings = deque()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A D_stream_hybi.py39 from collections import deque namespace
435 self._ping_queue = deque()
693 inflight_pings = deque()
/external/chromium_org/third_party/jinja2/
H A Dsandbox.py46 from collections import deque namespace
89 (deque, frozenset([
154 (list, dict, set or deque) would modify it if called. It also supports
H A Dutils.py13 from collections import deque namespace
304 self._queue = deque()
333 rv._queue = deque(self._queue)
H A Dlexer.py20 from collections import deque namespace
298 self._pushed = deque()
H A Dnodes.py17 from collections import deque namespace
200 todo = deque([self])
210 todo = deque([self])
221 todo = deque([self])
/external/chromium_org/third_party/protobuf/python/google/protobuf/
H A Dtext_format.py38 from collections import deque namespace
321 self._lines = deque(text_message.split('\n'))
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DE_B_L_C_.py9 from collections import deque namespace
455 idQueue = deque(glyphIds)
456 locQueue = deque(self.locations)
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DE_B_L_C_.py9 from collections import deque namespace
455 idQueue = deque(glyphIds)
456 locQueue = deque(self.locations)
/external/protobuf/python/google/protobuf/
H A Dtext_format.py38 from collections import deque namespace
324 self._lines = deque(text_message.split('\n'))
/external/stlport/test/unit/
H A Dptrspec_test.cpp6 #include <deque>
60 TEST_INSTANCIATE_CONTAINER(deque); variable
84 deque<void*> void_deque;
116 deque<int*> pint_deque;
117 deque<int*> pint_deque2;
118 deque<int const*> pcint_deque;
212 deque<int*> pint_deque_from_vect(pint_vect.begin(), pint_vect.end());
/external/stlport/stlport/stl/
H A D_deque.h63 * that an empty deque must have one node, and that a deque
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> >
406 typedef deque<_T
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...]
H A D_deque.c87 # 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<_T
807 # undef deque macro
[all...]
/external/chromium_org/third_party/protobuf/python/
H A Dmox.py62 from collections import deque namespace
353 self._expected_calls_queue = deque()
524 # call_queue: deque of calls, verify this call against the head, or add
529 call_queue: list or deque
535 if not isinstance(call_queue, deque):
536 self._call_queue = deque(self._call_queue)
/external/protobuf/python/
H A Dmox.py62 from collections import deque namespace
353 self._expected_calls_queue = deque()
524 # call_queue: deque of calls, verify this call against the head, or add
529 call_queue: list or deque
535 if not isinstance(call_queue, deque):
536 self._call_queue = deque(self._call_queue)
/external/stlport/stlport/stl/pointers/
H A D_deque.h31 * 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(cons 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/chromium_org/third_party/WebKit/Source/platform/heap/
H A DVisitor.h313 void trace(const Deque<T, N>& deque) argument
315 OffHeapCollectionTraceTrait<Deque<T, N> >::trace(this, deque);
570 static void trace(Visitor* visitor, const Deque& deque) argument
572 if (deque.isEmpty())
574 for (typename Deque::const_iterator it = deque.begin(), end = deque.end(); it != end; ++it)
H A DHeapTest.cpp1989 HeapDeque<Member<IntWrapper>, 0> deque; member in class:WebCore::Container
2001 visitor->trace(deque);
2194 bool dequeContains(HeapDeque<T, inlineCapacity>& deque, U u) argument
2197 for (iterator it = deque.begin(); it != deque.end(); ++it) {
2238 Persistent<MemberDeque> deque = new MemberDeque(); local
2295 deque->append(oneB);
2317 EXPECT_TRUE(dequeContains(*deque, oneB));
2323 EXPECT_TRUE(dequeContains(*deque, oneB));
2338 EXPECT_EQ(1u, deque
3599 HeapDeque<IntDeque>* deque = new HeapDeque<IntDeque>(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 1482 milliseconds

12