Searched refs:operator (Results 176 - 200 of 2465) sorted by relevance

1234567891011>>

/openbsd-current/gnu/lib/libstdc++/libstdc++/include/std/
H A Dstd_ostream.h78 operator<<(basic_ostream<_CharT2, _Traits2>&, _CharT2);
82 operator<<(basic_ostream<char, _Traits2>&, char);
86 operator<<(basic_ostream<_CharT2, _Traits2>&, const _CharT2*);
90 operator<<(basic_ostream<char, _Traits2>&, const char*);
94 operator<<(basic_ostream<_CharT2, _Traits2>&, const char*);
121 // [27.6.2.5.3] basic_ostream::operator<<
131 operator<<(__ostream_type& (*__pf)(__ostream_type&));
134 operator<<(__ios_type& (*__pf)(__ios_type&));
137 operator<<(ios_base& (*__pf) (ios_base&));
144 * All the @c operator<< function
[all...]
H A Dstd_iomanip.h73 operator>>(basic_istream<_CharT,_Traits>& __is, _Resetiosflags __f)
81 operator<<(basic_ostream<_CharT,_Traits>& __os, _Resetiosflags __f)
107 operator>>(basic_istream<_CharT,_Traits>& __is, _Setiosflags __f)
115 operator<<(basic_ostream<_CharT,_Traits>& __os, _Setiosflags __f)
142 operator>>(basic_istream<_CharT,_Traits>& __is, _Setbase __f)
153 operator<<(basic_ostream<_CharT,_Traits>& __os, _Setbase __f)
184 operator>>(basic_istream<_CharT,_Traits>& __is, _Setfill<_CharT> __f)
192 operator<<(basic_ostream<_CharT,_Traits>& __os, _Setfill<_CharT> __f)
218 operator>>(basic_istream<_CharT,_Traits>& __is, _Setprecision __f)
226 operator<<(basic_ostrea
[all...]
/openbsd-current/gnu/llvm/clang/lib/Headers/openmp_wrappers/
H A D__clang_openmp_device_functions.h64 // Ensure we make `_ZdlPv`, aka. `operator delete(void*)` available without the
79 inline void *operator new(__SIZE_TYPE__ size) {
85 inline void *operator new[](__SIZE_TYPE__ size) { return ::operator new(size); }
87 inline void operator delete(void *ptr)OPENMP_NOEXCEPT { ::free(ptr); }
89 inline void operator delete[](void *ptr) OPENMP_NOEXCEPT {
90 ::operator delete(ptr);
95 inline void operator delete(void *ptr, __SIZE_TYPE__ size)OPENMP_NOEXCEPT {
96 ::operator delete(ptr);
98 inline void operator delet
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dinline12.C28 Xy& operator = (const Xy&);
38 Sh& operator = (const Sh&);
57 ShZzy& operator = (const ShZzy&);
78 ShBop& operator = (const ShBop&);
158 ShAp& operator = (const ShAp&);
176 ShBe& operator = (const ShBe&);
213 xUff& operator = (const xUff&);
215 operator udword() const;
216 xUff& operator = (udword);
217 bool operator < (cons
[all...]
H A Dconv7.C18 operator const T&() const ;
19 operator T&() ;
29 Ref operator*() const;
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DFunctionId.h29 inline bool operator==(const FunctionId &A, const FunctionId &B) {
33 inline bool operator!=(const FunctionId &A, const FunctionId &B) {
37 inline bool operator<(const FunctionId &A, const FunctionId &B) {
41 inline bool operator<=(const FunctionId &A, const FunctionId &B) {
45 inline bool operator>(const FunctionId &A, const FunctionId &B) {
49 inline bool operator>=(const FunctionId &A, const FunctionId &B) {
/openbsd-current/gnu/llvm/lldb/include/lldb/Core/
H A DSourceLocationSpec.h56 /// Convert to boolean operator.
70 explicit operator bool() const;
72 /// Logical NOT operator.
86 bool operator!() const;
88 /// Equal to operator
99 bool operator==(const SourceLocationSpec &rhs) const;
101 /// Not equal to operator
112 bool operator!=(const SourceLocationSpec &rhs) const;
114 /// Less than to operator
125 bool operator<(cons
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/init/
H A Dassign1.C10 B& operator= (const B& other)
12 A::operator= (other);
27 c.B::operator= (b);
H A Daggr1.C8 A& operator=(const A&);
H A Dnew2.C9 void * operator new ( __SIZE_TYPE__ , void * storage )
H A Dref11.C6 A& operator= (const A&);
H A Dref5.C4 operator B();
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/template/
H A Dconv1.C14 template <class U> operator Second<U>();
15 template <class U> operator First<U>();
27 First<B> (First<D>::*pf)() = &First<D>::operator First<B>;
H A Dconv5.C11 friend bool operator== (const S&, const S&) {
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dcrash13.C10 void operator = (const gen_op &Op1);
22 void operator= (const spin_op& SOp);
23 operator gen_op();
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dtempinst1.C1 // Bug: g++ fails to instantiate operator<<.
6 ostream& operator<< (const char *) { return *this; };
11 template <class T> ostream& operator<< (ostream& ios, foo<T>&obj) {return ios;}
14 friend ostream& operator<<<>(ostream&, foo<T>&);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.ns/
H A Dnew1.C1 // Test whether N::operator new is different from ::operator new
8 void* operator new(size_t n){
14 void *operator new(size_t n)throw(std::bad_alloc)
20 void *result = N::operator new(n);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dptrmem5.C6 template <typename T> operator T*() { return 0; }
7 template <typename C, typename T> operator T C::*() { return 0; }
10 template <typename C> operator pmf C::* () { return 0; }
/openbsd-current/gnu/llvm/libcxx/include/__filesystem/
H A Dpath_iterator.h62 iterator& operator=(const iterator&) = default;
65 reference operator*() const { return __stashed_elem_; }
68 pointer operator->() const { return &__stashed_elem_; }
71 iterator& operator++() {
80 iterator operator++(int) {
82 this->operator++();
87 iterator& operator--() {
96 iterator operator--(int) {
98 this->operator--();
105 inline _LIBCPP_INLINE_VISIBILITY friend bool operator
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/bits/
H A Dstl_raw_storage_iter.h83 operator*() { return *this; }
86 operator=(const _Tp& __element)
93 operator++()
100 operator++(int)
H A Dstl_relops.h92 operator!=(const _Tp& __x, const _Tp& __y)
105 operator>(const _Tp& __x, const _Tp& __y)
118 operator<=(const _Tp& __x, const _Tp& __y)
131 operator>=(const _Tp& __x, const _Tp& __y)
/openbsd-current/gnu/gcc/libstdc++-v3/include/std/
H A Dstd_iomanip.h72 operator>>(basic_istream<_CharT,_Traits>& __is, _Resetiosflags __f)
80 operator<<(basic_ostream<_CharT,_Traits>& __os, _Resetiosflags __f)
106 operator>>(basic_istream<_CharT,_Traits>& __is, _Setiosflags __f)
114 operator<<(basic_ostream<_CharT,_Traits>& __os, _Setiosflags __f)
141 operator>>(basic_istream<_CharT,_Traits>& __is, _Setbase __f)
152 operator<<(basic_ostream<_CharT,_Traits>& __os, _Setbase __f)
183 operator>>(basic_istream<_CharT,_Traits>& __is, _Setfill<_CharT> __f)
191 operator<<(basic_ostream<_CharT,_Traits>& __os, _Setfill<_CharT> __f)
217 operator>>(basic_istream<_CharT,_Traits>& __is, _Setprecision __f)
225 operator<<(basic_ostrea
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/tr1/
H A Dbind_iterate.h44 operator()(_GLIBCXX_BIND_PARAMS)
55 operator()(_GLIBCXX_BIND_PARAMS) const
66 operator()(_GLIBCXX_BIND_PARAMS) volatile
77 operator()(_GLIBCXX_BIND_PARAMS) const volatile
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dstl_raw_storage_iter.h82 operator*() { return *this; }
85 operator=(const _Tp& __element)
92 operator++()
99 operator++(int)
H A Dstl_relops.h91 inline bool operator!=(const _Tp& __x, const _Tp& __y) {
104 inline bool operator>(const _Tp& __x, const _Tp& __y) {
117 inline bool operator<=(const _Tp& __x, const _Tp& __y) {
130 inline bool operator>=(const _Tp& __x, const _Tp& __y) {

Completed in 179 milliseconds

1234567891011>>