Home | History | Annotate | Download | only in utils

Lines Matching full:operator

227 CallStack& CallStack::operator = (const CallStack& rhs)
236 bool CallStack::operator == (const CallStack& rhs) const {
242 bool CallStack::operator != (const CallStack& rhs) const {
243 return !operator == (rhs);
246 bool CallStack::operator < (const CallStack& rhs) const {
252 bool CallStack::operator >= (const CallStack& rhs) const {
253 return !operator < (rhs);
256 bool CallStack::operator > (const CallStack& rhs) const {
262 bool CallStack::operator <= (const CallStack& rhs) const {
263 return !operator > (rhs);
266 const void* CallStack::operator [] (int index) const {