Searched refs:queue (Results 1 - 25 of 75) sorted by relevance

123

/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/queue/requirements/explicit_instantiation/
H A D1.cc23 #include <queue>
25 template class std::queue<int>; member in class:std
H A D1_c++0x.cc23 #include <queue>
25 template class std::queue<int>; member in class:std
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/priority_queue/requirements/explicit_instantiation/
H A D1.cc23 #include <queue>
H A D1_c++0x.cc23 #include <queue>
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/queue/requirements/
H A Dtypedefs.cc22 #include <queue>
25 __gnu_test::types<std::queue<int> > t;
H A Duses_allocator.cc21 #include <queue>
24 using uses_allocator = std::uses_allocator<std::queue<int>, A>;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/headers/queue/
H A Dsynopsis.cc20 #include <queue>
23 template <class T, class Container> class queue;
25 bool operator==(const queue<T, Container>& x,
26 const queue<T, Container>& y);
29 bool operator< (const queue<T, Container>& x,
30 const queue<T, Container>& y);
33 bool operator!=(const queue<T, Container>& x,
34 const queue<T, Container>& y);
37 bool operator> (const queue<T, Container>& x,
38 const queue<
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A DWstrict-overflow-23.c10 unsigned int queue = 0; local
15 ++queue;
20 if (queue > 0)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/priority_queue/requirements/
H A Dtypedefs.cc22 #include <queue>
H A Duses_allocator.cc21 #include <queue>
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/queue/members/
H A D7157.cc22 #include <queue>
29 std::queue<int> q;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/queue/
H A Dmoveable.cc25 #include <queue>
33 std::queue<int> a,b;
38 std::queue<int> c(std::move(b));
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr44831.c9 PNCB *NBCmdQueueFindNBC(struct NBCmdQueue *queue, PNCB ncb) argument
11 PNCB *ret = &queue->head;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/vect/
H A Dpr33833.c14 struct list_head queue[100]; member in struct:prio_array
31 (array->queue + k)->prev = array->queue;
/haiku-buildtools/legacy/gcc/libstdc++/stl/
H A Dstl_queue.h41 class queue { class
42 friend bool operator== __STL_NULL_TMPL_ARGS (const queue&, const queue&);
43 friend bool operator< __STL_NULL_TMPL_ARGS (const queue&, const queue&);
54 queue() : c() {} function in class:queue
55 explicit queue(const _Sequence& __c) : c(__c) {} function in class:queue
69 operator==(const queue<_Tp, _Sequence>& __x, const queue<_Tp, _Sequence>& __y) argument
76 operator<(const queue<_T argument
85 operator !=(const queue<_Tp, _Sequence>& __x, const queue<_Tp, _Sequence>& __y) argument
92 operator >(const queue<_Tp, _Sequence>& __x, const queue<_Tp, _Sequence>& __y) argument
99 operator <=(const queue<_Tp, _Sequence>& __x, const queue<_Tp, _Sequence>& __y) argument
106 operator >=(const queue<_Tp, _Sequence>& __x, const queue<_Tp, _Sequence>& __y) argument
[all...]
H A Dstack.h38 using __STD::queue;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/priority_queue/members/
H A D7161.cc22 #include <queue>
/haiku-buildtools/gcc/libstdc++-v3/testsuite/performance/23_containers/producer_consumer/
H A Dassociative.cc81 Container queue; member in class:Queue
89 const bool signal = queue.empty();
90 queue.insert(queue.end(), value);
99 while (queue.empty()) pthread_cond_wait(&condition, &lock);
100 queue.swap(container);
166 : queue(_queue)
173 Queue<Container>& queue; member in class:Consumer
184 queue.swap(container);
H A Dsequence.cc81 Container queue; member in class:Queue
89 const bool signal = queue.empty();
90 queue.insert(queue.end(), value);
99 while (queue.empty()) pthread_cond_wait(&condition, &lock);
100 queue.swap(container);
166 : queue(_queue)
173 Queue<Container>& queue; member in class:Consumer
184 queue.swap(container);
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dstl_queue.h53 * Do not attempt to use it directly. @headername{queue}
84 * wrapper is what enforces strict first-in-first-out %queue behavior.
93 * @c pop, which are standard %queue/FIFO operations.
96 class queue class
107 operator==(const queue<_Tp1, _Seq1>&, const queue<_Tp1, _Seq1>&);
111 operator<(const queue<_Tp1, _Seq1>&, const queue<_Tp1, _Seq1>&);
137 queue(const _Sequence& __c = _Sequence()) function in class:queue
141 queue(cons function in class:queue
145 queue(_Sequence&& __c = _Sequence()) function in class:queue
271 operator ==(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
289 operator <(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
295 operator !=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
301 operator >(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
307 operator <=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
313 operator >=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) argument
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/priority_queue/
H A Dmoveable.cc25 #include <queue>
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dheaders1.C40 #include <queue>
/haiku-buildtools/gcc/libstdc++-v3/testsuite/17_intro/
H A Dusing_namespace_std_tr1_neg.cc46 #include <queue>
/haiku-buildtools/binutils/gold/
H A Dworkqueue-internal.h1 // workqueue-internal.h -- internal work queue header for gold -*- C++ -*-
26 #include <queue>
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr49770.C63 struct queue struct
75 queue a, b;

Completed in 105 milliseconds

123