Home
last modified time | relevance | path

Searched refs:operator (Results 1 – 25 of 1718) sorted by relevance

12345678910>>...69

/freebsd/contrib/byacc/test/btyacc/
H A Dquote_calc4.output41 "SUB-operator" shift 3
62 "SUB-operator" shift 3
83 "ADD-operator" reduce 15
84 "SUB-operator" reduce 15
85 "MUL-operator" reduce 15
86 "DIV-operator" reduce 15
96 "SUB-operator" shift 3
123 "ADD-operator" shift 16
124 "SUB-operator" shift 17
125 "MUL-operator" shift 18
[all …]
H A Dquote_calc4-s.output41 "SUB-operator" shift 3
62 "SUB-operator" shift 3
83 "ADD-operator" reduce 15
84 "SUB-operator" reduce 15
85 "MUL-operator" reduce 15
86 "DIV-operator" reduce 15
96 "SUB-operator" shift 3
123 "ADD-operator" shift 16
124 "SUB-operator" shift 17
125 "MUL-operator" shift 18
[all …]
/freebsd/contrib/byacc/test/yacc/
H A Dquote_calc4.output41 "SUB-operator" shift 3
62 "SUB-operator" shift 3
83 "ADD-operator" reduce 15
84 "SUB-operator" reduce 15
85 "MUL-operator" reduce 15
86 "DIV-operator" reduce 15
96 "SUB-operator" shift 3
123 "ADD-operator" shift 16
124 "SUB-operator" shift 17
125 "MUL-operator" shift 18
[all …]
H A Dquote_calc4-s.output41 "SUB-operator" shift 3
62 "SUB-operator" shift 3
83 "ADD-operator" reduce 15
84 "SUB-operator" reduce 15
85 "MUL-operator" reduce 15
86 "DIV-operator" reduce 15
96 "SUB-operator" shift 3
123 "ADD-operator" shift 16
124 "SUB-operator" shift 17
125 "MUL-operator" shift 18
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDiagnosticPrinter.h36 virtual DiagnosticPrinter &operator<<(char C) = 0;
43 virtual DiagnosticPrinter &operator<<(long N) = 0;
45 virtual DiagnosticPrinter &operator<<(long long N) = 0;
48 virtual DiagnosticPrinter &operator<<(int N) = 0;
49 virtual DiagnosticPrinter &operator<<(double N) = 0;
69 DiagnosticPrinter &operator<<(char C) override;
71 DiagnosticPrinter &operator<<(signed char C) override;
76 DiagnosticPrinter &operator<<(long N) override;
78 DiagnosticPrinter &operator<<(long long N) override;
81 DiagnosticPrinter &operator<<(int N) override;
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DDebugUtils.h33 raw_ostream &operator<<(raw_ostream &OS, const SymbolStringPtr &Sym);
36 raw_ostream &operator<<(raw_ostream &OS, const SymbolNameSet &Symbols);
45 raw_ostream &operator<<(raw_ostream &OS, const JITSymbolFlags &Flags);
57 raw_ostream &operator<<(raw_ostream &OS, const SymbolMap &Symbols);
60 raw_ostream &operator<<(raw_ostream &OS,
70 raw_ostream &operator<<(raw_ostream &OS,
83 raw_ostream &operator<<(raw_ostream &OS,
90 raw_ostream &operator<<(raw_ostream &OS, const SymbolState &S);
93 raw_ostream &operator<<(raw_ostream &OS, const LookupKind &K);
96 raw_ostream &operator<<(raw_ostream &OS, const SymbolStringPool &SSP);
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DAlignment.h46 friend bool operator==(Align Lhs, Align Rhs);
47 friend bool operator!=(Align Lhs, Align Rhs);
48 friend bool operator<=(Align Lhs, Align Rhs);
49 friend bool operator>=(Align Lhs, Align Rhs);
50 friend bool operator<(Align Lhs, Align Rhs);
51 friend bool operator>(Align Lhs, Align Rhs);
74 Align &operator=(Align &&Other) = default; member
259 inline bool operator==(Align Lhs, Align Rhs) {
262 inline bool operator!=(Align Lhs, Align Rhs) {
271 inline bool operator<(Align Lhs, Align Rhs) {
[all …]
H A DInstructionCost.h111 InstructionCost &operator+=(const CostType RHS) {
128 InstructionCost &operator-=(const CostType RHS) {
168 InstructionCost &operator++() {
173 InstructionCost operator++(int) {
179 InstructionCost &operator--() {
184 InstructionCost operator--(int) {
209 bool operator==(const CostType RHS) const {
222 bool operator<(const CostType RHS) const {
227 bool operator>(const CostType RHS) const {
232 bool operator<=(const CostType RHS) const {
[all …]
H A DBlockFrequency.h41 BlockFrequency &operator*=(BranchProbability Prob);
46 BlockFrequency &operator/=(BranchProbability Prob);
50 BlockFrequency &operator+=(BlockFrequency Freq) {
67 BlockFrequency &operator-=(BlockFrequency Freq) {
85 BlockFrequency &operator>>=(const unsigned count) {
97 bool operator<(BlockFrequency RHS) const {
101 bool operator<=(BlockFrequency RHS) const {
105 bool operator>(BlockFrequency RHS) const {
109 bool operator>=(BlockFrequency RHS) const {
113 bool operator==(BlockFrequency RHS) const {
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPSInt.h64 APSInt &operator=(APInt RHS) {
66 APInt::operator=(std::move(RHS));
70 APSInt &operator=(uint64_t RHS) {
72 APInt::operator=(RHS);
154 APSInt &operator>>=(unsigned Amt) {
222 APSInt &operator++() {
226 APSInt &operator--() {
230 APSInt operator++(int) {
233 APSInt operator--(int) {
236 APSInt operator-() const {
[all …]
H A Diterator.h154 DerivedT &operator++() {
159 DerivedT operator++(int) {
164 DerivedT &operator--() {
170 DerivedT operator--(int) {
205 PointerProxy operator->() const {
255 DerivedT &operator+=(difference_type n) {
269 using BaseT::operator-;
279 using BaseT::operator++;
280 DerivedT &operator++() {
284 using BaseT::operator--;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBlockRanges.h39 bool operator<(RegisterRef R) const {
61 operator unsigned() const;
62 bool operator== (unsigned x) const;
63 bool operator== (IndexType Idx) const;
64 bool operator!= (unsigned x) const;
65 bool operator!= (IndexType Idx) const;
66 IndexType operator++ ();
67 bool operator< (unsigned Idx) const;
68 bool operator< (IndexType Idx) const;
210 return operator< (IndexType(Idx));
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCustomizableOptional.h54 CustomizableOptional &operator=(T &&y) {
65 CustomizableOptional &operator=(const T &y) {
85 T *operator->() { return &Storage.value(); }
87 T &operator*() & { return Storage.value(); }
95 T &&operator*() && { return std::move(Storage.value()); }
102 explicit operator std::optional<T> &() const & {
105 explicit operator std::optional<T> &&() const && {
119 constexpr bool operator==(const CustomizableOptional<T> &X,
127 constexpr bool operator!=(const CustomizableOptional<T> &X,
133 constexpr bool operator<(const CustomizableOptional<T> &X,
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DScalar.h125 Scalar &operator+=(Scalar rhs);
128 Scalar &operator&=(const Scalar &rhs);
236 const Scalar operator-(Scalar lhs, Scalar rhs);
237 const Scalar operator/(Scalar lhs, Scalar rhs);
238 const Scalar operator*(Scalar lhs, Scalar rhs);
239 const Scalar operator&(Scalar lhs, Scalar rhs);
240 const Scalar operator|(Scalar lhs, Scalar rhs);
241 const Scalar operator%(Scalar lhs, Scalar rhs);
242 const Scalar operator^(Scalar lhs, Scalar rhs);
245 bool operator==(Scalar lhs, Scalar rhs);
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__compare/
H A Dordering.h101 operator<=>(partial_ordering __v, _CmpUnspecifiedParam) noexcept {
106 operator<=>(_CmpUnspecifiedParam, partial_ordering __v) noexcept {
129 _LIBCPP_HIDE_FROM_ABI constexpr operator partial_ordering() const noexcept { in partial_ordering()
135 …_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator==(weak_ordering, weak_ordering) noexcept = de…
141 …_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator<(weak_ordering __v, _CmpUnspecifiedParam) noe…
149 …_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator>(weak_ordering __v, _CmpUnspecifiedParam) noe…
157 …_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator<(_CmpUnspecifiedParam, weak_ordering __v) noe…
201 _LIBCPP_HIDE_FROM_ABI constexpr operator partial_ordering() const noexcept { in partial_ordering()
206 _LIBCPP_HIDE_FROM_ABI constexpr operator weak_ordering() const noexcept { in weak_ordering()
250 operator<=>(strong_ordering __v, _CmpUnspecifiedParam) noexcept {
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dchrono219 operator<<(basic_ostream<charT, traits>& os,
571 operator/(const year& y, int m) noexcept;
575 operator/(const month& m, int d) noexcept;
577 operator/(int m, const day& d) noexcept;
581 operator/(const day& d, int m) noexcept;
583 operator/(const month& m, last_spec) noexcept;
585 operator/(int m, last_spec) noexcept;
587 operator/(last_spec, const month& m) noexcept;
589 operator/(last_spec, int m) noexcept;
613 operator/(int y, const month_day& md) noexcept;
[all …]
H A Dcompare96 constexpr operator partial_ordering() const noexcept;
99 friend constexpr bool operator==(weak_ordering v, unspecified) noexcept;
101 friend constexpr bool operator< (weak_ordering v, unspecified) noexcept;
102 friend constexpr bool operator> (weak_ordering v, unspecified) noexcept;
103 friend constexpr bool operator<=(weak_ordering v, unspecified) noexcept;
104 friend constexpr bool operator>=(weak_ordering v, unspecified) noexcept;
105 friend constexpr bool operator< (unspecified, weak_ordering v) noexcept;
106 friend constexpr bool operator> (unspecified, weak_ordering v) noexcept;
107 friend constexpr bool operator<=(unspecified, weak_ordering v) noexcept;
123 constexpr operator partial_ordering() const noexcept;
[all …]
H A Dnew25 bad_alloc& operator=(const bad_alloc&) noexcept;
55 void* operator new(std::size_t size, std::align_val_t alignment,
60 void operator delete(void* ptr, std::size_t size,
63 void operator delete(void* ptr, std:align_val_t alignment,
67 void* operator new[](std::size_t size,
74 void operator delete[](void* ptr,
76 void operator delete[](void* ptr, std::size_t size,
84 void operator delete (void* ptr, void*) noexcept;
85 void operator delete[](void* ptr, void*) noexcept;
273 return ::operator new(__args...);
[all …]
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dvalarray.inc21 using std::operator*;
22 using std::operator/;
23 using std::operator%;
24 using std::operator+;
25 using std::operator-;
27 using std::operator^;
28 using std::operator&;
29 using std::operator|;
31 using std::operator<<;
40 using std::operator<;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dyear_month_weekday.h103 operator/(const year& __lhs, const month_weekday& __rhs) noexcept {
112 operator/(const month_weekday& __lhs, const year& __rhs) noexcept {
136 operator+(const year_month_weekday& __lhs, const years& __rhs) noexcept {
206 operator/(const year_month& __lhs, const weekday_last& __rhs) noexcept {
211 operator/(const year& __lhs, const month_weekday_last& __rhs) noexcept {
216 operator/(int __lhs, const month_weekday_last& __rhs) noexcept {
226 operator/(const month_weekday_last& __lhs, int __rhs) noexcept {
261 year_month_weekday_last::operator+=(const months& __dm) noexcept {
266 year_month_weekday_last::operator-=(const months& __dm) noexcept {
271 year_month_weekday_last::operator+=(const years& __dy) noexcept {
[all …]
H A Dyear_month_day.h145 operator+(const year_month_day& __lhs, const months& __rhs) noexcept {
150 operator+(const months& __lhs, const year_month_day& __rhs) noexcept {
160 operator+(const year_month_day& __lhs, const years& __rhs) noexcept {
165 operator+(const years& __lhs, const year_month_day& __rhs) noexcept {
170 operator-(const year_month_day& __lhs, const years& __rhs) noexcept {
276 operator/(const year& __lhs, const month_day_last& __rhs) noexcept {
285 operator/(const month_day_last& __lhs, const year& __rhs) noexcept {
324 year_month_day_last::operator+=(const months& __dm) noexcept {
329 year_month_day_last::operator-=(const months& __dm) noexcept {
334 year_month_day_last::operator+=(const years& __dy) noexcept {
[all …]
H A Dyear_month.h39 _LIBCPP_HIDE_FROM_ABI inline constexpr year_month& operator+=(const months& __dm) noexcept;
40 _LIBCPP_HIDE_FROM_ABI inline constexpr year_month& operator-=(const months& __dm) noexcept;
41 _LIBCPP_HIDE_FROM_ABI inline constexpr year_month& operator+=(const years& __dy) noexcept;
42 _LIBCPP_HIDE_FROM_ABI inline constexpr year_month& operator-=(const years& __dy) noexcept;
46 _LIBCPP_HIDE_FROM_ABI inline constexpr year_month operator/(const year& __y, const month& __m) noex…
50 _LIBCPP_HIDE_FROM_ABI inline constexpr year_month operator/(const year& __y, int __m) noexcept {
59 operator<=>(const year_month& __lhs, const year_month& __rhs) noexcept {
97 _LIBCPP_HIDE_FROM_ABI inline constexpr year_month& year_month::operator+=(const months& __dm) noexc…
102 _LIBCPP_HIDE_FROM_ABI inline constexpr year_month& year_month::operator-=(const months& __dm) noexc…
107 _LIBCPP_HIDE_FROM_ABI inline constexpr year_month& year_month::operator+=(const years& __dy) noexce…
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBExtras.h25 raw_ostream &operator<<(raw_ostream &OS, const PDB_VariantType &Value);
26 raw_ostream &operator<<(raw_ostream &OS, const PDB_CallingConv &Conv);
27 raw_ostream &operator<<(raw_ostream &OS, const PDB_BuiltinType &Type);
28 raw_ostream &operator<<(raw_ostream &OS, const PDB_DataKind &Data);
29 raw_ostream &operator<<(raw_ostream &OS,
31 raw_ostream &operator<<(raw_ostream &OS, const PDB_LocType &Loc);
34 raw_ostream &operator<<(raw_ostream &OS, const PDB_Lang &Lang);
35 raw_ostream &operator<<(raw_ostream &OS, const PDB_SymType &Tag);
37 raw_ostream &operator<<(raw_ostream &OS, const PDB_UdtType &Type);
40 raw_ostream &operator<<(raw_ostream &OS, const Variant &Value);
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCharUnits.h74 CharUnits& operator+= (const CharUnits &Other) {
78 CharUnits& operator++ () {
82 CharUnits operator++ (int) {
89 CharUnits& operator-- () {
93 CharUnits operator-- (int) {
148 CharUnits operator* (QuantityType N) const {
151 CharUnits &operator*= (QuantityType N) {
155 CharUnits operator/ (QuantityType N) const {
158 CharUnits &operator/= (QuantityType N) {
165 CharUnits operator% (QuantityType N) const {
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocketAddress.h51 const SocketAddress &operator=(const struct addrinfo *addr_info); variable
53 const SocketAddress &operator=(const struct sockaddr &s); variable
55 const SocketAddress &operator=(const struct sockaddr_in &s); variable
57 const SocketAddress &operator=(const struct sockaddr_in6 &s); variable
59 const SocketAddress &operator=(const struct sockaddr_storage &s); variable
61 bool operator==(const SocketAddress &rhs) const;
62 bool operator!=(const SocketAddress &rhs) const;
154 operator struct sockaddr *() { return &m_socket_addr.sa; }
158 operator struct sockaddr_in *() { return &m_socket_addr.sa_ipv4; }
164 operator const struct sockaddr_in6 *() const {
[all …]

12345678910>>...69