/external/chromium_org/third_party/icu/source/i18n/ |
tztrans.cpp | 55 TimeZoneTransition::operator=(const TimeZoneTransition& right) { 65 TimeZoneTransition::operator==(const TimeZoneTransition& that) const { 86 TimeZoneTransition::operator!=(const TimeZoneTransition& that) const { 87 return !operator==(that);
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
fieldpos.h | 150 * Assignment operator 154 FieldPosition& operator=(const FieldPosition& copy); 157 * Equality operator. 162 UBool operator==(const FieldPosition& that) const; 165 * Equality operator. 170 UBool operator!=(const FieldPosition& that) const; 264 FieldPosition::operator=(const FieldPosition& copy) 273 FieldPosition::operator==(const FieldPosition& copy) const 281 FieldPosition::operator!=(const FieldPosition& copy) const 283 return !operator==(copy) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
scoped_ref_ptr.h | 69 // object, simply use the assignment operator: 113 operator T*() const { return ptr_; } 114 T* operator->() const { return ptr_; } 127 scoped_refptr<T>& operator=(T* p) { 137 scoped_refptr<T>& operator=(const scoped_refptr<T>& r) { 142 scoped_refptr<T>& operator=(const scoped_refptr<U>& r) {
|
/external/chromium_org/third_party/libjingle/source/talk/xmllite/ |
qname.h | 48 bool operator==(const QName& other) const; 49 bool operator!=(const QName& other) const; 69 bool operator==(const StaticQName& other) const { 72 bool operator==(const QName& other) const { 75 bool operator!=(const StaticQName& other) const { 78 bool operator!=(const QName& other) const { 81 bool operator<(const QName& other) const { 90 inline bool StaticQName::operator==(const QName& other) const { 94 inline bool StaticQName::operator!=(const QName& other) const {
|
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
jid.h | 68 bool operator==(const Jid& other) const; 69 bool operator!=(const Jid& other) const { return !operator==(other); } 71 bool operator<(const Jid& other) const { return Compare(other) < 0; }; 72 bool operator>(const Jid& other) const { return Compare(other) > 0; };
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
unicodestring.cc | 29 UnicodeString& UnicodeString::operator=(const UnicodeString& src) { 37 bool UnicodeString::operator==(const UnicodeString& rhs) const { 103 char32 UnicodeString::operator[](int index) const {
|
/external/chromium_org/third_party/skia/include/utils/win/ |
SkTScopedComPtr.h | 44 T &operator*() const { SkASSERT(fPtr != NULL); return *fPtr; } 45 SkBlockComRef<T> *operator->() const { 54 T **operator&() { SkASSERT(fPtr == NULL); return &fPtr; }
|
/external/chromium_org/third_party/skia/src/gpu/gl/ |
GrGLSL_impl.h | 99 inline GrGLSLExpr1 operator*(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) { 103 inline GrGLSLExpr1 operator+(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) { 107 inline GrGLSLExpr1 operator-(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) { 139 inline GrGLSLExpr4 operator*(const GrGLSLExpr1& in0, const GrGLSLExpr4& in1) { 143 inline GrGLSLExpr4 operator+(const GrGLSLExpr1& in0, const GrGLSLExpr4& in1) { 147 inline GrGLSLExpr4 operator-(const GrGLSLExpr1& in0, const GrGLSLExpr4& in1) { 151 inline GrGLSLExpr4 operator*(const GrGLSLExpr4& in0, const GrGLSLExpr1& in1) { 155 inline GrGLSLExpr4 operator+(const GrGLSLExpr4& in0, const GrGLSLExpr1& in1) { 159 inline GrGLSLExpr4 operator-(const GrGLSLExpr4& in0, const GrGLSLExpr1& in1) { 163 inline GrGLSLExpr4 operator*(const GrGLSLExpr4& in0, const GrGLSLExpr4& in1) [all...] |
/external/chromium_org/third_party/skia/src/utils/ |
SkBitSet.cpp | 26 SkBitSet& SkBitSet::operator=(const SkBitSet& rhs) { 38 bool SkBitSet::operator==(const SkBitSet& rhs) { 49 bool SkBitSet::operator!=(const SkBitSet& rhs) {
|
/external/chromium_org/ui/gfx/range/ |
range.cc | 48 bool Range::operator==(const Range& other) const { 52 bool Range::operator!=(const Range& other) const { 84 std::ostream& operator<<(std::ostream& os, const Range& range) {
|
/external/clang/test/SemaTemplate/ |
instantiate-overload-candidates.cpp | 34 void operator++() {} 35 void operator+(int) {} 36 void operator+(A) {} 37 void operator[](int) {} 38 void operator[](A) {} 41 using A::operator++; 42 using A::operator+; 43 using A::operator[];
|
/external/eigen/Eigen/src/Core/ |
NoAlias.h | 18 * \brief Pseudo expression providing an operator = assuming no aliasing 40 EIGEN_STRONG_INLINE ExpressionType& operator=(const StorageBase<OtherDerived>& other) 43 /** \sa MatrixBase::operator+= */ 45 EIGEN_STRONG_INLINE ExpressionType& operator+=(const StorageBase<OtherDerived>& other) 55 /** \sa MatrixBase::operator-= */ 57 EIGEN_STRONG_INLINE ExpressionType& operator-=(const StorageBase<OtherDerived>& other) 69 EIGEN_STRONG_INLINE ExpressionType& operator+=(const ProductBase<ProductDerived, Lhs,Rhs>& other) 73 EIGEN_STRONG_INLINE ExpressionType& operator-=(const ProductBase<ProductDerived, Lhs,Rhs>& other) 77 EIGEN_STRONG_INLINE ExpressionType& operator+=(const CoeffBasedProduct<Lhs,Rhs,NestingFlags>& other) 81 EIGEN_STRONG_INLINE ExpressionType& operator-=(const CoeffBasedProduct<Lhs,Rhs,NestingFlags>& other [all...] |
/external/eigen/Eigen/src/plugins/ |
CommonCwiseUnaryOps.h | 44 operator-() const { return derived(); } 49 operator*(const Scalar& scalar) const 56 const ScalarMultipleReturnType operator*(const RealScalar& scalar) const; 61 operator/(const Scalar& scalar) const 69 operator*(const std::complex<Scalar>& scalar) const 76 operator*(const Scalar& scalar, const StorageBaseType& matrix) 80 operator*(const std::complex<Scalar>& scalar, const StorageBaseType& matrix) 118 /** \brief Apply a unary operator coefficient-wise 119 * \param[in] func Functor implementing the unary operator 121 * \returns An expression of a custom coefficient-wise unary operator \a func of *thi [all...] |
/external/icu4c/common/unicode/ |
parsepos.h | 88 * Assignment operator 91 ParsePosition& operator=(const ParsePosition& copy); 94 * Equality operator. 98 UBool operator==(const ParsePosition& that) const; 101 * Equality operator. 105 UBool operator!=(const ParsePosition& that) const; 183 ParsePosition::operator=(const ParsePosition& copy) 191 ParsePosition::operator==(const ParsePosition& copy) const 200 ParsePosition::operator!=(const ParsePosition& copy) const 202 return !operator==(copy) [all...] |
/external/icu4c/i18n/ |
dtrule.cpp | 69 DateTimeRule::operator=(const DateTimeRule& right) { 83 DateTimeRule::operator==(const DateTimeRule& that) const { 96 DateTimeRule::operator!=(const DateTimeRule& that) const { 97 return !operator==(that);
|
tztrans.cpp | 55 TimeZoneTransition::operator=(const TimeZoneTransition& right) { 65 TimeZoneTransition::operator==(const TimeZoneTransition& that) const { 86 TimeZoneTransition::operator!=(const TimeZoneTransition& that) const { 87 return !operator==(that);
|
/external/icu4c/i18n/unicode/ |
fieldpos.h | 150 * Assignment operator 154 FieldPosition& operator=(const FieldPosition& copy); 157 * Equality operator. 162 UBool operator==(const FieldPosition& that) const; 165 * Equality operator. 170 UBool operator!=(const FieldPosition& that) const; 264 FieldPosition::operator=(const FieldPosition& copy) 273 FieldPosition::operator==(const FieldPosition& copy) const 281 FieldPosition::operator!=(const FieldPosition& copy) const 283 return !operator==(copy) [all...] |
/external/llvm/include/llvm/Support/ |
ConstantRange.h | 153 /// operator== - Return true if this range is equal to another range. 155 bool operator==(const ConstantRange &CR) const { 158 bool operator!=(const ConstantRange &CR) const { 159 return !operator==(CR); 270 inline raw_ostream &operator<<(raw_ostream &OS, const ConstantRange &CR) {
|
/external/oprofile/libabi/ |
abi.cpp | 47 bool abi::operator==(abi const & other) const 53 ostream & operator<<(ostream & o, abi const & abi) 65 istream & operator>>(istream & i, abi & abi)
|
/external/oprofile/libutil++/ |
growable_vector.h | 32 T operator[](size_type index) const { 44 T & operator[](size_type index) { 52 * vectorized += operator 54 growable_vector<T> & operator+=(growable_vector<T> const & rhs) { 67 * vectorized -= operator, overflow shouldn't occur during substraction 70 growable_vector<T> & operator-=(growable_vector<T> const & rhs) {
|
sparse_array.h | 23 * operator[], this const member function simply returns 0 for 28 T operator[](size_type index) const { 41 T & operator[](size_type index) { 47 * vectorized += operator 49 sparse_array & operator+=(sparse_array const & rhs) { 60 * vectorized -= operator, overflow shouldn't occur during substraction 63 sparse_array & operator-=(sparse_array const & rhs) {
|
/external/skia/include/utils/win/ |
SkTScopedComPtr.h | 44 T &operator*() const { SkASSERT(fPtr != NULL); return *fPtr; } 45 SkBlockComRef<T> *operator->() const { 54 T **operator&() { SkASSERT(fPtr == NULL); return &fPtr; }
|
/external/skia/src/gpu/gl/ |
GrGLSL_impl.h | 99 inline GrGLSLExpr1 operator*(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) { 103 inline GrGLSLExpr1 operator+(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) { 107 inline GrGLSLExpr1 operator-(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) { 139 inline GrGLSLExpr4 operator*(const GrGLSLExpr1& in0, const GrGLSLExpr4& in1) { 143 inline GrGLSLExpr4 operator+(const GrGLSLExpr1& in0, const GrGLSLExpr4& in1) { 147 inline GrGLSLExpr4 operator-(const GrGLSLExpr1& in0, const GrGLSLExpr4& in1) { 151 inline GrGLSLExpr4 operator*(const GrGLSLExpr4& in0, const GrGLSLExpr1& in1) { 155 inline GrGLSLExpr4 operator+(const GrGLSLExpr4& in0, const GrGLSLExpr1& in1) { 159 inline GrGLSLExpr4 operator-(const GrGLSLExpr4& in0, const GrGLSLExpr1& in1) { 163 inline GrGLSLExpr4 operator*(const GrGLSLExpr4& in0, const GrGLSLExpr4& in1) [all...] |
/external/skia/src/utils/ |
SkBitSet.cpp | 26 SkBitSet& SkBitSet::operator=(const SkBitSet& rhs) { 38 bool SkBitSet::operator==(const SkBitSet& rhs) { 49 bool SkBitSet::operator!=(const SkBitSet& rhs) {
|
/external/stlport/stlport/stl/ |
_raw_storage_iter.h | 54 raw_storage_iterator<_ForwardIterator, _Tp>& operator*() { return *this; } 55 raw_storage_iterator<_ForwardIterator, _Tp>& operator=(const _Tp& __element) { 59 raw_storage_iterator<_ForwardIterator, _Tp>& operator++() { 63 raw_storage_iterator<_ForwardIterator, _Tp> operator++(int) {
|