/external/llvm/lib/Support/ |
H A D | BlockFrequency.cpp | 21 BlockFrequency &BlockFrequency::operator*=(const BranchProbability &Prob) { 27 BlockFrequency::operator*(const BranchProbability &Prob) const { 33 BlockFrequency &BlockFrequency::operator/=(const BranchProbability &Prob) { 38 BlockFrequency BlockFrequency::operator/(const BranchProbability &Prob) const { 44 BlockFrequency &BlockFrequency::operator+=(const BlockFrequency &Freq) { 56 BlockFrequency::operator+(const BlockFrequency &Prob) const { 62 BlockFrequency &BlockFrequency::operator>>=(const unsigned count) {
|
/external/pdfium/third_party/bigint/ |
H A D | BigUnsigned.hh | 48 // Assignment operator 49 void operator=(const BigUnsigned &x) { 50 NumberlikeArray<Blk>::operator =(x); 124 bool operator ==(const BigUnsigned &x) const { 125 return NumberlikeArray<Blk>::operator ==(x); 127 bool operator !=(const BigUnsigned &x) const { 128 return NumberlikeArray<Blk>::operator !=(x); 130 bool operator < (const BigUnsigned &x) const { return compareTo(x) == less ; } 131 bool operator <=(const BigUnsigned &x) const { return compareTo(x) != greater; } 132 bool operator > [all...] |
/external/libcxx/test/support/ |
H A D | min_allocator.h | 28 return static_cast<T*>(::operator new(n*sizeof(T))); 33 return ::operator delete(static_cast<void*>(p)); 36 friend bool operator==(bare_allocator, bare_allocator) {return true;} 37 friend bool operator!=(bare_allocator x, bare_allocator y) {return !(x == y);} 61 explicit operator bool() const {return ptr_ != nullptr;} 63 friend bool operator==(min_pointer x, min_pointer y) {return x.ptr_ == y.ptr_;} 64 friend bool operator!=(min_pointer x, min_pointer y) {return !(x == y);} 83 explicit operator bool() const {return ptr_ != nullptr;} 85 friend bool operator==(min_pointer x, min_pointer y) {return x.ptr_ == y.ptr_;} 86 friend bool operator! [all...] |
H A D | test_iterators.h | 42 reference operator*() const {return *it_;} 44 output_iterator& operator++() {++it_; return *this;} 45 output_iterator operator++(int) 49 void operator,(T const &) DELETE_FUNCTION; 72 reference operator*() const {return *it_;} 73 pointer operator->() const {return it_;} 75 input_iterator& operator++() {++it_; return *this;} 76 input_iterator operator++(int) 79 friend bool operator==(const input_iterator& x, const input_iterator& y) 81 friend bool operator! [all...] |
/external/clang/test/CXX/special/class.free/ |
H A D | p1.cpp | 5 void *operator new(size_t) { 8 void *operator new[](size_t) {
|
H A D | p6.cpp | 5 void operator delete(void*) { 8 void operator delete[](void*) {
|
/external/clang/test/SemaCXX/Inputs/ |
H A D | warn-new-overaligned-3.h | 6 void* operator new(unsigned long) { 9 void* operator new[](unsigned long) { 13 void* operator new(unsigned long, void *) { 17 void* operator new[](unsigned long, void *) {
|
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/ |
H A D | pointer01.fail.cpp | 28 Deleter& operator=(Deleter&) {} 30 void operator()(void*) const {}
|
H A D | default01.fail.cpp | 31 Deleter& operator=(Deleter&) { return *this; } 33 void operator()(void*) const {}
|
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/ |
H A D | pointer01.fail.cpp | 27 Deleter& operator=(Deleter&) {} 29 void operator()(void*) const {}
|
H A D | default01.fail.cpp | 27 Deleter& operator=(Deleter&) {} 29 void operator()(void*) const {}
|
/external/eigen/Eigen/src/plugins/ |
H A D | ArrayCwiseBinaryOps.h | 7 operator*(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const 18 operator/(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const 73 /** \returns an expression of the coefficient-wise \< operator of *this and \a other 78 * \sa all(), any(), operator>(), operator<=() 80 EIGEN_MAKE_CWISE_BINARY_OP(operator<,std::less) 82 /** \returns an expression of the coefficient-wise \<= operator of *this and \a other 87 * \sa all(), any(), operator>=(), operator<() 89 EIGEN_MAKE_CWISE_BINARY_OP(operator< [all...] |
/external/llvm/include/llvm/ADT/ |
H A D | iterator.h | 50 DerivedT operator+(DifferenceTypeT n) const { 53 "The '+' operator is only defined for random access iterators."); 58 friend DerivedT operator+(DifferenceTypeT n, const DerivedT &i) { 61 "The '+' operator is only defined for random access iterators."); 64 DerivedT operator-(DifferenceTypeT n) const { 67 "The '-' operator is only defined for random access iterators."); 73 DerivedT &operator++() { 74 return static_cast<DerivedT *>(this)->operator+=(1); 76 DerivedT operator++(int) { 81 DerivedT &operator [all...] |
H A D | APSInt.h | 36 APSInt &operator=(APInt RHS) { 38 APInt::operator=(std::move(RHS)); 42 APSInt &operator=(uint64_t RHS) { 44 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 { 114 APSInt operator>>(unsigned Amt) const { 117 APSInt& operator>> [all...] |
/external/eigen/Eigen/src/Eigen2Support/ |
H A D | CwiseOperators.h | 52 /** \deprecated ArrayBase::operator*() */ 56 Cwise<ExpressionType>::operator*(const MatrixBase<OtherDerived> &other) const 61 /** \deprecated ArrayBase::operator/() */ 65 Cwise<ExpressionType>::operator/(const MatrixBase<OtherDerived> &other) const 70 /** \deprecated ArrayBase::operator*=() */ 73 inline ExpressionType& Cwise<ExpressionType>::operator*=(const MatrixBase<OtherDerived> &other) 78 /** \deprecated ArrayBase::operator/=() */ 81 inline ExpressionType& Cwise<ExpressionType>::operator/=(const MatrixBase<OtherDerived> &other) 154 /** \deprecated ArrayBase::operator<() */ 158 Cwise<ExpressionType>::operator<(cons [all...] |
/external/llvm/include/llvm/IR/ |
H A D | DebugLoc.h | 41 DebugLoc &operator=(DebugLoc &&X) { 45 DebugLoc &operator=(const DebugLoc &X) { 66 operator MDLocation *() const { return get(); } 67 MDLocation *operator->() const { return get(); } 68 MDLocation &operator*() const { return *get(); } 77 explicit operator bool() const { return Loc; } 115 bool operator==(const DebugLoc &DL) const { return Loc == DL.Loc; } 116 bool operator!=(const DebugLoc &DL) const { return Loc != DL.Loc; }
|
/external/v8/src/base/ |
H A D | flags.h | 32 Flags& operator&=(const Flags& flags) { 36 Flags& operator|=(const Flags& flags) { 40 Flags& operator^=(const Flags& flags) { 45 Flags operator&(const Flags& flags) const { return Flags(*this) &= flags; } 46 Flags operator|(const Flags& flags) const { return Flags(*this) |= flags; } 47 Flags operator^(const Flags& flags) const { return Flags(*this) ^= flags; } 49 Flags& operator&=(flag_type flag) { return operator&=(Flags(flag)); } 50 Flags& operator|=(flag_type flag) { return operator| [all...] |
/external/libcxx/test/std/utilities/time/ |
H A D | rep.h | 20 bool _LIBCPP_CONSTEXPR operator==(int i) const {return data_ == i;} 21 bool _LIBCPP_CONSTEXPR operator==(const Rep& r) const {return data_ == r.data_;} 23 Rep& operator*=(Rep x) {data_ *= x.data_; return *this;} 24 Rep& operator/=(Rep x) {data_ /= x.data_; return *this;}
|
/external/deqp/framework/egl/ |
H A D | egluDefs.cpp | 77 bool Version::operator< (const Version& v) const 87 bool Version::operator== (const Version& v) const 94 bool Version::operator!= (const Version& v) const 99 bool Version::operator> (const Version& v) const 104 bool Version::operator<= (const Version& v) const 109 bool Version::operator>= (const Version& v) const
|
/external/marisa-trie/lib/marisa/ |
H A D | marisa-string.h | 25 String &operator=(const String &str) { 31 UInt8 operator[](std::size_t i) const { 48 inline bool operator==(const String &lhs, const String &rhs) { 60 inline bool operator!=(const String &lhs, const String &rhs) { 64 inline bool operator<(const String &lhs, const String &rhs) { 76 inline bool operator>(const String &lhs, const String &rhs) { 97 RString &operator=(const RString &str) { 103 UInt8 operator[](std::size_t i) const { 120 inline bool operator==(const RString &lhs, const RString &rhs) { 132 inline bool operator! [all...] |
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
H A D | marisa-string.h | 25 String &operator=(const String &str) { 31 UInt8 operator[](std::size_t i) const { 48 inline bool operator==(const String &lhs, const String &rhs) { 60 inline bool operator!=(const String &lhs, const String &rhs) { 64 inline bool operator<(const String &lhs, const String &rhs) { 76 inline bool operator>(const String &lhs, const String &rhs) { 97 RString &operator=(const RString &str) { 103 UInt8 operator[](std::size_t i) const { 120 inline bool operator==(const RString &lhs, const RString &rhs) { 132 inline bool operator! [all...] |
/external/icu/icu4c/source/i18n/ |
H A D | sharedbreakiterator.h | 35 BreakIterator *operator->() const { return ptr; } 36 BreakIterator &operator*() const { return *ptr; } 40 SharedBreakIterator &operator=(const SharedBreakIterator &);
|
H A D | sharedpluralrules.h | 23 const PluralRules *operator->() const { return ptr; } 24 const PluralRules &operator*() const { return *ptr; } 28 SharedPluralRules &operator=(const SharedPluralRules &);
|
/external/libcxx/test/std/containers/ |
H A D | NotConstructible.h | 18 NotConstructible& operator=(const NotConstructible&); 24 operator==(const NotConstructible&, const NotConstructible&) 34 std::size_t operator()(const NotConstructible&) const {return 0;}
|
H A D | test_hash.h | 25 operator()(typename std::add_lvalue_reference<const typename C::argument_type>::type x) const 26 {return C::operator()(x);} 28 bool operator==(const test_hash& c) const
|