Lines Matching defs:operator

36   APSInt &operator=(APInt RHS) {
38 APInt::operator=(std::move(RHS));
42 APSInt &operator=(uint64_t RHS) {
44 APInt::operator=(RHS);
83 const APSInt &operator%=(const APSInt &RHS) {
91 const APSInt &operator/=(const APSInt &RHS) {
99 APSInt operator%(const APSInt &RHS) const {
103 APSInt operator/(const APSInt &RHS) const {
108 APSInt operator>>(unsigned Amt) const {
111 APSInt& operator>>=(unsigned Amt) {
116 inline bool operator<(const APSInt& RHS) const {
120 inline bool operator>(const APSInt& RHS) const {
124 inline bool operator<=(const APSInt& RHS) const {
128 inline bool operator>=(const APSInt& RHS) const {
132 inline bool operator==(const APSInt& RHS) const {
136 inline bool operator==(int64_t RHS) const {
139 inline bool operator!=(const APSInt& RHS) const {
142 inline bool operator!=(int64_t RHS) const {
149 APSInt operator<<(unsigned Bits) const {
152 APSInt& operator<<=(unsigned Amt) {
157 APSInt& operator++() {
161 APSInt& operator--() {
165 APSInt operator++(int) {
168 APSInt operator--(int) {
171 APSInt operator-() const {
174 APSInt& operator+=(const APSInt& RHS) {
179 APSInt& operator-=(const APSInt& RHS) {
184 APSInt& operator*=(const APSInt& RHS) {
189 APSInt& operator&=(const APSInt& RHS) {
194 APSInt& operator|=(const APSInt& RHS) {
199 APSInt& operator^=(const APSInt& RHS) {
205 APSInt operator&(const APSInt& RHS) const {
210 return this->operator&(RHS);
213 APSInt operator|(const APSInt& RHS) const {
218 return this->operator|(RHS);
222 APSInt operator^(const APSInt& RHS) const {
227 return this->operator^(RHS);
230 APSInt operator*(const APSInt& RHS) const {
234 APSInt operator+(const APSInt& RHS) const {
238 APSInt operator-(const APSInt& RHS) const {
242 APSInt operator~() const {
292 inline bool operator==(int64_t V1, const APSInt& V2) {
295 inline bool operator!=(int64_t V1, const APSInt& V2) {
299 inline raw_ostream &operator<<(raw_ostream &OS, const APSInt &I) {