| /NextBSD/contrib/byacc/test/btyacc/ |
| HD | quote_calc4.output | 11 7 | expr "ADD-operator" expr 12 8 | expr "SUB-operator" expr 13 9 | expr "MUL-operator" expr 14 10 | expr "DIV-operator" expr 15 11 | expr "MOD-operator" expr 16 12 | expr "AND-operator" expr 18 14 | "SUB-operator" expr 41 "SUB-operator" shift 3 60 expr : "SUB-operator" . expr (14) 62 "SUB-operator" shift 3 [all …]
|
| HD | quote_calc4-s.output | 11 7 | expr "ADD-operator" expr 12 8 | expr "SUB-operator" expr 13 9 | expr "MUL-operator" expr 14 10 | expr "DIV-operator" expr 15 11 | expr "MOD-operator" expr 16 12 | expr "AND-operator" expr 18 14 | "SUB-operator" expr 41 "SUB-operator" shift 3 60 expr : "SUB-operator" . expr (14) 62 "SUB-operator" shift 3 [all …]
|
| /NextBSD/contrib/byacc/test/yacc/ |
| HD | quote_calc4.output | 11 7 | expr "ADD-operator" expr 12 8 | expr "SUB-operator" expr 13 9 | expr "MUL-operator" expr 14 10 | expr "DIV-operator" expr 15 11 | expr "MOD-operator" expr 16 12 | expr "AND-operator" expr 18 14 | "SUB-operator" expr 41 "SUB-operator" shift 3 60 expr : "SUB-operator" . expr (14) 62 "SUB-operator" shift 3 [all …]
|
| HD | quote_calc4-s.output | 11 7 | expr "ADD-operator" expr 12 8 | expr "SUB-operator" expr 13 9 | expr "MUL-operator" expr 14 10 | expr "DIV-operator" expr 15 11 | expr "MOD-operator" expr 16 12 | expr "AND-operator" expr 18 14 | "SUB-operator" expr 41 "SUB-operator" shift 3 60 expr : "SUB-operator" . expr (14) 62 "SUB-operator" shift 3 [all …]
|
| /NextBSD/contrib/llvm/include/llvm/IR/ |
| HD | DiagnosticPrinter.h | 36 virtual DiagnosticPrinter &operator<<(char C) = 0; 37 virtual DiagnosticPrinter &operator<<(unsigned char C) = 0; 38 virtual DiagnosticPrinter &operator<<(signed char C) = 0; 39 virtual DiagnosticPrinter &operator<<(StringRef Str) = 0; 40 virtual DiagnosticPrinter &operator<<(const char *Str) = 0; 41 virtual DiagnosticPrinter &operator<<(const std::string &Str) = 0; 42 virtual DiagnosticPrinter &operator<<(unsigned long N) = 0; 43 virtual DiagnosticPrinter &operator<<(long N) = 0; 44 virtual DiagnosticPrinter &operator<<(unsigned long long N) = 0; 45 virtual DiagnosticPrinter &operator<<(long long N) = 0; [all …]
|
| /NextBSD/contrib/groff/src/roff/troff/ |
| HD | hvunits.h | 29 vunits& operator+=(const vunits&); 30 vunits& operator-=(const vunits&); 33 friend inline vunits operator +(const vunits&, const vunits&); 34 friend inline vunits operator -(const vunits&, const vunits&); 35 friend inline vunits operator -(const vunits&); 36 friend inline int operator /(const vunits&, const vunits&); 37 friend inline vunits operator /(const vunits&, int); 38 friend inline vunits operator *(const vunits&, int); 39 friend inline vunits operator *(int, const vunits&); 40 friend inline int operator <(const vunits&, const vunits&); [all …]
|
| /NextBSD/contrib/groff/src/include/ |
| HD | stringclass.h | 30 inline string operator+(const string &, const string &); 31 inline string operator+(const string &, const char *); 32 inline string operator+(const char *, const string &); 33 inline string operator+(const string &, char); 34 inline string operator+(char, const string &); 35 inline int operator==(const string &, const string &); 36 inline int operator!=(const string &, const string &); 48 string &operator=(const string &); variable 49 string &operator=(const char *); variable 50 string &operator=(char); variable [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/ |
| HD | Scalar.h | 127 Scalar& operator= (const int i); variable 128 Scalar& operator= (unsigned int v); variable 129 Scalar& operator= (long v); variable 130 Scalar& operator= (unsigned long v); variable 131 Scalar& operator= (long long v); variable 132 Scalar& operator= (unsigned long long v); variable 133 Scalar& operator= (float v); variable 134 Scalar& operator= (double v); variable 135 Scalar& operator= (long double v); variable 136 Scalar& operator= (const Scalar& rhs); // Assignment operator variable [all …]
|
| /NextBSD/contrib/llvm/include/llvm/ADT/ |
| HD | APSInt.h | 45 APSInt &operator=(APInt RHS) { 47 APInt::operator=(std::move(RHS)); 51 APSInt &operator=(uint64_t RHS) { 53 APInt::operator=(RHS); 98 const APSInt &operator%=(const APSInt &RHS) { 106 const APSInt &operator/=(const APSInt &RHS) { 114 APSInt operator%(const APSInt &RHS) const { 118 APSInt operator/(const APSInt &RHS) const { 123 APSInt operator>>(unsigned Amt) const { 126 APSInt& operator>>=(unsigned Amt) { [all …]
|
| HD | iterator.h | 50 DerivedT operator+(DifferenceTypeT n) const { 58 friend DerivedT operator+(DifferenceTypeT n, const DerivedT &i) { 64 DerivedT operator-(DifferenceTypeT n) const { 73 DerivedT &operator++() { 74 return static_cast<DerivedT *>(this)->operator+=(1); 76 DerivedT operator++(int) { 81 DerivedT &operator--() { 85 return static_cast<DerivedT *>(this)->operator-=(1); 87 DerivedT operator--(int) { 96 bool operator!=(const DerivedT &RHS) const { [all …]
|
| HD | Statistic.h | 53 operator unsigned() const { return Value; } 56 const Statistic &operator=(unsigned Val) { 61 const Statistic &operator++() { 70 unsigned operator++(int) { 77 const Statistic &operator--() { 82 unsigned operator--(int) { 89 const Statistic &operator+=(const unsigned &V) { 95 const Statistic &operator-=(const unsigned &V) { 101 const Statistic &operator*=(const unsigned &V) { 106 const Statistic &operator/=(const unsigned &V) { [all …]
|
| /NextBSD/contrib/libstdc++/include/bits/ |
| D | stl_iterator.h | 153 operator*() const in _GLIBCXX_BEGIN_NAMESPACE() 165 operator->() const in _GLIBCXX_BEGIN_NAMESPACE() 166 { return &(operator*()); } in _GLIBCXX_BEGIN_NAMESPACE() 174 operator++() in _GLIBCXX_BEGIN_NAMESPACE() 186 operator++(int) in _GLIBCXX_BEGIN_NAMESPACE() 199 operator--() in _GLIBCXX_BEGIN_NAMESPACE() 211 operator--(int) in _GLIBCXX_BEGIN_NAMESPACE() 224 operator+(difference_type __n) const in _GLIBCXX_BEGIN_NAMESPACE() 233 operator+=(difference_type __n) in _GLIBCXX_BEGIN_NAMESPACE() 245 operator-(difference_type __n) const in _GLIBCXX_BEGIN_NAMESPACE() [all …]
|
| D | mask_array.h | 74 mask_array& operator=(const mask_array&); in _GLIBCXX_BEGIN_NAMESPACE() local 76 void operator=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() local 78 void operator*=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 80 void operator/=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 82 void operator%=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 84 void operator+=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 86 void operator-=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 88 void operator^=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 90 void operator&=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 92 void operator|=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() [all …]
|
| D | indirect_array.h | 74 indirect_array& operator=(const indirect_array&); in _GLIBCXX_BEGIN_NAMESPACE() local 77 void operator=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() local 79 void operator*=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 81 void operator/=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 83 void operator%=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 85 void operator+=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 87 void operator-=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 89 void operator^=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 91 void operator&=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 93 void operator|=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() [all …]
|
| D | gslice_array.h | 72 gslice_array& operator=(const gslice_array&); in _GLIBCXX_BEGIN_NAMESPACE() local 75 void operator=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() local 77 void operator*=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 79 void operator/=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 81 void operator%=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 83 void operator+=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 85 void operator-=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 87 void operator^=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 89 void operator&=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() 91 void operator|=(const valarray<_Tp>&) const; in _GLIBCXX_BEGIN_NAMESPACE() [all …]
|
| D | slice_array.h | 134 slice_array& operator=(const slice_array&); variable 137 void operator=(const valarray<_Tp>&) const; variable 139 void operator*=(const valarray<_Tp>&) const; 141 void operator/=(const valarray<_Tp>&) const; 143 void operator%=(const valarray<_Tp>&) const; 145 void operator+=(const valarray<_Tp>&) const; 147 void operator-=(const valarray<_Tp>&) const; 149 void operator^=(const valarray<_Tp>&) const; 151 void operator&=(const valarray<_Tp>&) const; 153 void operator|=(const valarray<_Tp>&) const; [all …]
|
| /NextBSD/contrib/libstdc++/include/std/ |
| D | std_iomanip.h | 72 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_ostream<_CharT,_Traits>& __os, _Setprecision __f) [all …]
|
| D | std_ostream.h | 112 operator<<(__ostream_type& (*__pf)(__ostream_type&)) in _GLIBCXX_BEGIN_NAMESPACE() 121 operator<<(__ios_type& (*__pf)(__ios_type&)) in _GLIBCXX_BEGIN_NAMESPACE() 131 operator<<(ios_base& (*__pf) (ios_base&)) in _GLIBCXX_BEGIN_NAMESPACE() 169 operator<<(long __n) in _GLIBCXX_BEGIN_NAMESPACE() 173 operator<<(unsigned long __n) in _GLIBCXX_BEGIN_NAMESPACE() 177 operator<<(bool __n) in _GLIBCXX_BEGIN_NAMESPACE() 181 operator<<(short __n); in _GLIBCXX_BEGIN_NAMESPACE() 184 operator<<(unsigned short __n) in _GLIBCXX_BEGIN_NAMESPACE() 192 operator<<(int __n); in _GLIBCXX_BEGIN_NAMESPACE() 195 operator<<(unsigned int __n) in _GLIBCXX_BEGIN_NAMESPACE() [all …]
|
| D | std_valarray.h | 162 valarray<_Tp>& operator=(const valarray<_Tp>&); in _GLIBCXX_BEGIN_NAMESPACE() local 171 valarray<_Tp>& operator=(const _Tp&); in _GLIBCXX_BEGIN_NAMESPACE() local 181 valarray<_Tp>& operator=(const slice_array<_Tp>&); in _GLIBCXX_BEGIN_NAMESPACE() local 191 valarray<_Tp>& operator=(const gslice_array<_Tp>&); in _GLIBCXX_BEGIN_NAMESPACE() local 201 valarray<_Tp>& operator=(const mask_array<_Tp>&); in _GLIBCXX_BEGIN_NAMESPACE() local 211 valarray<_Tp>& operator=(const indirect_array<_Tp>&); in _GLIBCXX_BEGIN_NAMESPACE() local 214 operator= (const _Expr<_Dom, _Tp>&); in _GLIBCXX_BEGIN_NAMESPACE() local 223 _Tp& operator[](size_t); in _GLIBCXX_BEGIN_NAMESPACE() 227 const _Tp& operator[](size_t) const; in _GLIBCXX_BEGIN_NAMESPACE() 240 _Expr<_SClos<_ValArray, _Tp>, _Tp> operator[](slice) const; in _GLIBCXX_BEGIN_NAMESPACE() [all …]
|
| /NextBSD/contrib/llvm/include/llvm/DebugInfo/PDB/ |
| HD | PDBExtras.h | 20 raw_ostream &operator<<(raw_ostream &OS, const PDB_VariantType &Value); 21 raw_ostream &operator<<(raw_ostream &OS, const PDB_CallingConv &Conv); 22 raw_ostream &operator<<(raw_ostream &OS, const PDB_DataKind &Data); 23 raw_ostream &operator<<(raw_ostream &OS, const PDB_RegisterId &Reg); 24 raw_ostream &operator<<(raw_ostream &OS, const PDB_LocType &Loc); 25 raw_ostream &operator<<(raw_ostream &OS, const PDB_ThunkOrdinal &Thunk); 26 raw_ostream &operator<<(raw_ostream &OS, const PDB_Checksum &Checksum); 27 raw_ostream &operator<<(raw_ostream &OS, const PDB_Lang &Lang); 28 raw_ostream &operator<<(raw_ostream &OS, const PDB_SymType &Tag); 29 raw_ostream &operator<<(raw_ostream &OS, const PDB_MemberAccess &Access); [all …]
|
| /NextBSD/contrib/gcclibs/libiberty/testsuite/ |
| HD | demangle-expected | 310 foo::operator&&(foo &) 311 foo::operator&& 315 foo::operator&=(foo &) 316 foo::operator&= 320 foo::operator&(foo &) 321 foo::operator& 325 foo::operator/=(foo &) 326 foo::operator/= 330 foo::operator^=(foo &) 331 foo::operator^= [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | CharUnits.h | 68 CharUnits& operator+= (const CharUnits &Other) { 72 CharUnits& operator++ () { 76 CharUnits operator++ (int) { 79 CharUnits& operator-= (const CharUnits &Other) { 83 CharUnits& operator-- () { 87 CharUnits operator-- (int) { 92 bool operator== (const CharUnits &Other) const { 95 bool operator!= (const CharUnits &Other) const { 100 bool operator< (const CharUnits &Other) const { 103 bool operator<= (const CharUnits &Other) const { [all …]
|
| /NextBSD/contrib/libc++/include/ |
| D | new | 26 bad_alloc& operator=(const bad_alloc&) noexcept; 50 void* operator new(std::size_t size); // replaceable 51 void* operator new(std::size_t size, const std::nothrow_t&) noexcept; // replaceable 52 void operator delete(void* ptr) noexcept; // replaceable 53 void operator delete(void* ptr, std::size_t size) noexcept; // replaceable, C++14 54 void operator delete(void* ptr, const std::nothrow_t&) noexcept; // replaceable 56 void* operator new[](std::size_t size); // replaceable 57 void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable 58 void operator delete[](void* ptr) noexcept; // replaceable 59 void operator delete[](void* ptr, std::size_t size) noexcept; // replaceable, C++14 [all …]
|
| /NextBSD/contrib/groff/src/preproc/pic/ |
| HD | position.h | 28 position &operator+=(const position &); 29 position &operator-=(const position &); 30 position &operator*=(double); 31 position &operator/=(double); 34 position operator-(const position &); 35 position operator+(const position &, const position &); 36 position operator-(const position &, const position &); 37 position operator/(const position &, double); 38 position operator*(const position &, double); 40 double operator*(const position &, const position &); [all …]
|
| /NextBSD/contrib/libc++/include/experimental/ |
| D | optional | 37 constexpr bool operator==(const optional<T>&, const optional<T>&); 39 constexpr bool operator!=(const optional<T>&, const optional<T>&); 41 constexpr bool operator<(const optional<T>&, const optional<T>&); 43 constexpr bool operator>(const optional<T>&, const optional<T>&); 45 constexpr bool operator<=(const optional<T>&, const optional<T>&); 47 constexpr bool operator>=(const optional<T>&, const optional<T>&); 50 template <class T> constexpr bool operator==(const optional<T>&, nullopt_t) noexcept; 51 template <class T> constexpr bool operator==(nullopt_t, const optional<T>&) noexcept; 52 template <class T> constexpr bool operator!=(const optional<T>&, nullopt_t) noexcept; 53 template <class T> constexpr bool operator!=(nullopt_t, const optional<T>&) noexcept; [all …]
|