/external/chromium_org/third_party/WebKit/Source/platform/ |
D | LayoutUnit.h | 108 operator int() const { return toInt(); } 109 operator unsigned() const { return toUnsigned(); } 110 operator float() const { return toFloat(); } 111 operator double() const { return toDouble(); } 112 operator bool() const { return m_value; } 114 LayoutUnit operator++(int) 247 inline bool operator<=(const LayoutUnit& a, const LayoutUnit& b) 252 inline bool operator<=(const LayoutUnit& a, float b) 257 inline bool operator<=(const LayoutUnit& a, int b) 262 inline bool operator<=(const float a, const LayoutUnit& b) [all …]
|
D | Decimal.h | 66 bool operator==(const EncodedData&) const; 67 bool operator!=(const EncodedData& another) const { return !operator==(another); } 101 Decimal& operator=(const Decimal&); variable 102 Decimal& operator+=(const Decimal&); 103 Decimal& operator-=(const Decimal&); 104 Decimal& operator*=(const Decimal&); 105 Decimal& operator/=(const Decimal&); 107 Decimal operator-() const; 109 bool operator==(const Decimal&) const; 110 bool operator!=(const Decimal&) const; [all …]
|
/external/chromium_org/v8/src/platform/ |
D | time.h | 95 TimeDelta& operator=(const TimeDelta& other) { 101 TimeDelta operator+(const TimeDelta& other) const { 104 TimeDelta operator-(const TimeDelta& other) const { 108 TimeDelta& operator+=(const TimeDelta& other) { 112 TimeDelta& operator-=(const TimeDelta& other) { 116 TimeDelta operator-() const { 129 TimeDelta operator*(int64_t a) const { 132 TimeDelta operator/(int64_t a) const { 135 TimeDelta& operator*=(int64_t a) { 139 TimeDelta& operator/=(int64_t a) { [all …]
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
D | TextStream.h | 51 TextStream& operator<<(bool); 52 TextStream& operator<<(int); 53 TextStream& operator<<(unsigned); 54 TextStream& operator<<(long); 55 TextStream& operator<<(unsigned long); 56 TextStream& operator<<(long long); 57 TextStream& operator<<(unsigned long long); 58 TextStream& operator<<(float); 59 TextStream& operator<<(double); 60 TextStream& operator<<(const char*); [all …]
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/ |
D | model.js | 27 var operator = this.operand && this.operator; 28 var result = this.calculate_(operator, this.operand); 29 return this.reset_({accumulator: result, operator: input}); property 36 var operator = this.operator || this.defaults.operator; 37 var operand = this.operator ? this.operand : this.defaults.operand; 38 var result = this.calculate_(operator, operand); 39 var defaults = {operator: operator, operand: this.operand}; property 45 this.operator ? this.set_({operator: null}) : property 51 this.set_({operator: null}); property 73 this.accumulator = this.operand = this.operator = null; [all …]
|
/external/chromium/base/ |
D | time.h | 91 TimeDelta& operator=(TimeDelta other) { 97 TimeDelta operator+(TimeDelta other) const { 100 TimeDelta operator-(TimeDelta other) const { 104 TimeDelta& operator+=(TimeDelta other) { 108 TimeDelta& operator-=(TimeDelta other) { 112 TimeDelta operator-() const { 118 TimeDelta operator*(int64 a) const { 121 TimeDelta operator/(int64 a) const { 124 TimeDelta& operator*=(int64 a) { 128 TimeDelta& operator/=(int64 a) { [all …]
|
/external/llvm/include/llvm/ADT/ |
D | APSInt.h | 36 APSInt &operator=(const APSInt &RHS) { 37 APInt::operator=(RHS); 42 APSInt &operator=(const APInt &RHS) { 44 APInt::operator=(RHS); 48 APSInt &operator=(uint64_t RHS) { 50 APInt::operator=(RHS); 89 const APSInt &operator%=(const APSInt &RHS) { 97 const APSInt &operator/=(const APSInt &RHS) { 105 APSInt operator%(const APSInt &RHS) const { 109 APSInt operator/(const APSInt &RHS) const { [all …]
|
D | 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 …]
|
/external/chromium_org/base/time/ |
D | time.h | 109 TimeDelta& operator=(TimeDelta other) { 115 TimeDelta operator+(TimeDelta other) const { 118 TimeDelta operator-(TimeDelta other) const { 122 TimeDelta& operator+=(TimeDelta other) { 126 TimeDelta& operator-=(TimeDelta other) { 130 TimeDelta operator-() const { 136 TimeDelta operator*(int64 a) const { 139 TimeDelta operator/(int64 a) const { 142 TimeDelta& operator*=(int64 a) { 146 TimeDelta& operator/=(int64 a) { [all …]
|
/external/stlport/stlport/stl/ |
D | _iterator.h | 66 _Self& operator = (const _Self& __x) { current = __x.base(); return *this; } 71 _Self& operator = (const reverse_iterator<_Iter>& __x) { current = __x.base(); return *this; } 75 reference operator*() const { 80 _Self& operator++() { 84 _Self operator++(int) { 89 _Self& operator--() { 93 _Self operator--(int) { 99 _Self operator+(difference_type __n) const { return _Self(current - __n); } 100 _Self& operator+=(difference_type __n) { 104 _Self operator-(difference_type __n) const { return _Self(current + __n); } [all …]
|
D | _ostream.h | 59 _Self& operator = (_Self const&); variable 78 _Self& operator<< (__ostream_fn __f) { return __f(*this); } 79 _Self & operator<< (__ios_base_fn __f) { __f(*this); return *this; } 80 _Self& operator<< (__ios_fn __ff) { __ff(*this); return *this; } 101 _Self& operator<<(basic_streambuf<_CharT, _Traits>* __buf); 104 _Self& operator<<(unsigned char __x) { _M_put_char(__x); return *this; } 106 _Self& operator<<(short __x); 107 _Self& operator<<(unsigned short __x); 108 _Self& operator<<(int __x); 110 _Self& operator<<(unsigned int __x); [all …]
|
D | _hash_fun.h | 57 size_t operator()(const char* __s) const { 65 size_t operator()(const char* __s) const { 72 size_t operator()(char __x) const { return __x; } 75 size_t operator()(unsigned char __x) const { return __x; } 79 size_t operator()(unsigned char __x) const { return __x; } 83 size_t operator()(short __x) const { return __x; } 86 size_t operator()(unsigned short __x) const { return __x; } 89 size_t operator()(int __x) const { return __x; } 94 size_t operator()(unsigned int __x) const { return __x; } 104 size_t operator()(size_t __x) const { return __x; } [all …]
|
D | _complex.h | 49 _Self& operator=(const _Self& __z) { 61 _Self& operator=(const complex<_Tp2>& __z) { 74 _Self& operator= (const value_type& __x) { 79 _Self& operator+= (const value_type& __x) { 83 _Self& operator-= (const value_type& __x) { 87 _Self& operator*= (const value_type& __x) { 92 _Self& operator/= (const value_type& __x) { 110 template <class _Tp2> _Self& operator+= (const complex<_Tp2>& __z) { 116 template <class _Tp2> _Self& operator-= (const complex<_Tp2>& __z) { 122 template <class _Tp2> _Self& operator*= (const complex<_Tp2>& __z) { [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/ |
D | expr.pxi | 30 import operator 33 ((operator.__add__, operator.add, '+'), YASM_EXPR_ADD), 34 ((operator.__and__, operator.and_, '&'), YASM_EXPR_AND), 35 ((operator.__div__, operator.div, '/'), YASM_EXPR_SIGNDIV), 36 ((operator.__floordiv__, operator.floordiv, '//'), YASM_EXPR_SIGNDIV), 37 ((operator.__ge__, operator.ge, '>='), YASM_EXPR_GE), 38 ((operator.__gt__, operator.gt, '>'), YASM_EXPR_GT), 39 ((operator.__inv__, operator.inv, '~'), YASM_EXPR_NOT), 40 ((operator.__invert__, operator.invert), YASM_EXPR_NOT), 41 ((operator.__le__, operator.le, '<='), YASM_EXPR_LE), [all …]
|
/external/chromium_org/net/base/ |
D | int128.h | 27 uint128& operator=(const uint128& b); variable 31 uint128& operator+=(const uint128& b); 32 uint128& operator-=(const uint128& b); 33 uint128& operator*=(const uint128& b); 34 uint128 operator++(int); 35 uint128 operator--(int); 36 uint128& operator<<=(int); 37 uint128& operator>>=(int); 38 uint128& operator&=(const uint128& b); 39 uint128& operator|=(const uint128& b); [all …]
|
/external/chromium_org/third_party/angle/src/compiler/ |
D | ConstantUnion.h | 32 bool operator==(const int i) const 37 bool operator==(const float f) const 42 bool operator==(const bool b) const 47 bool operator==(const ConstantUnion& constant) const 64 bool operator!=(const int i) const 66 return !operator==(i); 69 bool operator!=(const float f) const 71 return !operator==(f); 74 bool operator!=(const bool b) const 76 return !operator==(b); [all …]
|
/external/clang/tools/libclang/ |
D | CLog.h | 67 Logger &operator<<(CXTranslationUnit); 68 Logger &operator<<(const FileEntry *FE); 69 Logger &operator<<(CXCursor cursor); 70 Logger &operator<<(CXSourceLocation); 71 Logger &operator<<(CXSourceRange); 72 Logger &operator<<(CXString); 73 Logger &operator<<(llvm::StringRef Str) { LogOS << Str; return *this; } 74 Logger &operator<<(const char *Str) { 79 Logger &operator<<(unsigned long N) { LogOS << N; return *this; } 80 Logger &operator<<(long N) { LogOS << N ; return *this; } [all …]
|
/external/clang/include/clang/AST/ |
D | 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 …]
|
/external/chromium/googleurl/base/ |
D | scoped_ptr.h | 54 scoped_ptr & operator=(scoped_ptr const &); variable 76 T& operator*() const { 81 T* operator->() const { 86 bool operator==(T* p) const { 90 bool operator!=(T* p) const { 113 template <typename U> bool operator==(scoped_ptr<U> const& p) const; 114 template <typename U> bool operator!=(scoped_ptr<U> const& p) const; 123 bool operator==(T* p, const scoped_ptr<T>& b) { 128 bool operator!=(T* p, const scoped_ptr<T>& b) { 143 scoped_array & operator=(scoped_array const &); variable [all …]
|
/external/tinyxml/ |
D | tinystr.h | 95 TiXmlString& operator = (const char * copy) 101 TiXmlString& operator = (const TiXmlString & copy) 108 TiXmlString& operator += (const char * suffix) 114 TiXmlString& operator += (char single) 120 TiXmlString& operator += (const TiXmlString & suffix) 153 char& operator [] (size_type index) const 220 rep_ = static_cast<Rep*>(operator new(sizeof(Rep) + cap)); in init() 234 operator delete(rep_); in quit() 244 inline bool operator == (const TiXmlString & a, const TiXmlString & b) 249 inline bool operator < (const TiXmlString & a, const TiXmlString & b) [all …]
|
/external/chromium/base/memory/ |
D | scoped_ptr.h | 91 C& operator*() const { 95 C* operator->() const { 104 bool operator==(C* p) const { return ptr_ == p; } 105 bool operator!=(C* p) const { return ptr_ != p; } 131 template <class C2> bool operator==(scoped_ptr<C2> const& p2) const; 132 template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const; 136 void operator=(const scoped_ptr&); variable 146 bool operator==(C* p1, const scoped_ptr<C>& p2) { 151 bool operator!=(C* p1, const scoped_ptr<C>& p2) { 196 C& operator[](ptrdiff_t i) const { [all …]
|
/external/chromium_org/third_party/cld/base/ |
D | scoped_ptr.h | 76 C& operator*() const { 80 C* operator->() const { 89 bool operator==(const C* p) const { return ptr_ == p; } 90 bool operator!=(const C* p) const { return ptr_ != p; } 120 template <class C2> bool operator==(scoped_ptr<C2> const& p2) const; 121 template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const; 125 void operator=(const scoped_ptr&); variable 135 inline bool operator==(const C* p1, const scoped_ptr<C>& p2) { 140 inline bool operator==(const C* p1, const scoped_ptr<const C>& p2) { 145 inline bool operator!=(const C* p1, const scoped_ptr<C>& p2) { [all …]
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | HashIterators.h | 47 const ValueType& operator*() const { return *get(); } 48 const ValueType* operator->() const { return get(); } 50 HashTableConstIteratorAdapter& operator++() { ++m_impl; return *this; } 70 ValueType& operator*() const { return *get(); } 71 ValueType* operator->() const { return get(); } 73 HashTableIteratorAdapter& operator++() { ++m_impl; return *this; } 76 operator HashTableConstIteratorAdapter<HashTableType, ValueType>() { 95 const KeyType& operator*() const { return *get(); } 96 const KeyType* operator->() const { return get(); } 98 HashTableConstKeysIterator& operator++() { ++m_impl; return *this; } [all …]
|
/external/eigen/Eigen/src/Eigen2Support/ |
D | Cwise.h | 66 operator*(const MatrixBase<OtherDerived> &other) const; 70 operator/(const MatrixBase<OtherDerived> &other) const; 97 operator+(const Scalar& scalar) const; 101 operator+(const Scalar& scalar, const Cwise& mat) 104 ExpressionType& operator+=(const Scalar& scalar); 107 operator-(const Scalar& scalar) const; 109 ExpressionType& operator-=(const Scalar& scalar); 112 inline ExpressionType& operator*=(const MatrixBase<OtherDerived> &other); 115 inline ExpressionType& operator/=(const MatrixBase<OtherDerived> &other); 118 operator<(const MatrixBase<OtherDerived>& other) const; [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/ |
D | SMILTime.h | 43 SMILTime& operator=(const SMILTime& o) { m_time = o.m_time; return *this; } 83 inline bool operator==(const SMILTime& a, const SMILTime& b) { return a.isFinite() && a.value() == … 84 inline bool operator!(const SMILTime& a) { return !a.isFinite() || !a.value(); } 85 inline bool operator!=(const SMILTime& a, const SMILTime& b) { return !operator==(a, b); } 86 inline bool operator>(const SMILTime& a, const SMILTime& b) { return a.value() > b.value(); } 87 inline bool operator<(const SMILTime& a, const SMILTime& b) { return a.value() < b.value(); } 88 inline bool operator>=(const SMILTime& a, const SMILTime& b) { return a.value() > b.value() || oper… 89 inline bool operator<=(const SMILTime& a, const SMILTime& b) { return a.value() < b.value() || oper… 90 inline bool operator<(const SMILTimeWithOrigin& a, const SMILTimeWithOrigin& b) { return a.time() <… 92 SMILTime operator+(const SMILTime&, const SMILTime&); [all …]
|