Searched defs:operator (Results 1 - 25 of 4330) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/ADT/
H A DAPSInt.h36 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>>
[all...]
H A Diterator.h50 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...]
/external/llvm/lib/Support/
H A DBlockFrequency.cpp21 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/libcxx/test/support/
H A Dmin_allocator.h33 explicit operator bool() const {return ptr_ != nullptr;}
35 friend bool operator==(min_pointer x, min_pointer y) {return x.ptr_ == y.ptr_;}
36 friend bool operator!=(min_pointer x, min_pointer y) {return !(x == y);}
55 explicit operator bool() const {return ptr_ != nullptr;}
57 friend bool operator==(min_pointer x, min_pointer y) {return x.ptr_ == y.ptr_;}
58 friend bool operator!=(min_pointer x, min_pointer y) {return !(x == y);}
73 explicit operator bool() const {return ptr_ != nullptr;}
81 reference operator*() const {return *ptr_;}
82 pointer operator->() const {return ptr_;}
84 min_pointer& operator
[all...]
H A Dtest_iterators.h35 reference operator*() const {return *it_;}
37 output_iterator& operator++() {++it_; return *this;}
38 output_iterator operator++(int)
62 reference operator*() const {return *it_;}
63 pointer operator->() const {return it_;}
65 input_iterator& operator++() {++it_; return *this;}
66 input_iterator operator++(int)
69 friend bool operator==(const input_iterator& x, const input_iterator& y)
71 friend bool operator!=(const input_iterator& x, const input_iterator& y)
78 operator
[all...]
/external/stlport/stlport/stl/
H A D_valarray.c36 _Valarray_bool valarray<_Tp>:: operator!() const { function in class:_Tp
45 valarray<_Tp>& valarray<_Tp>::operator=(const slice_array<_Tp>& __x) {
56 valarray<_Tp> valarray<_Tp>::operator[](slice __slice) const {
87 valarray<_Tp>& valarray<_Tp>::operator=(const gslice_array<_Tp>& __x) {
98 valarray<_Tp> valarray<_Tp>::operator[](const gslice& __slice) const {
108 valarray<_Tp> valarray<_Tp>::operator[](const _Valarray_bool& __mask) const {
126 valarray<_Tp>& valarray<_Tp>::operator=(const indirect_array<_Tp>& __x) {
135 valarray<_Tp>::operator[](const _Valarray_size_t& __addr) const {
H A D_valarray.h136 valarray<_Tp>& operator=(const valarray<_Tp>& __x) {
144 valarray<_Tp>& operator=(const value_type& __x) {
150 valarray<_Tp>& operator=(const slice_array<_Tp>&);
151 valarray<_Tp>& operator=(const gslice_array<_Tp>&);
152 valarray<_Tp>& operator=(const mask_array<_Tp>&);
153 valarray<_Tp>& operator=(const indirect_array<_Tp>&);
156 value_type operator[](size_t __n) const {
160 value_type& operator[](size_t __n) {
167 valarray<_Tp> operator[](slice) const;
168 slice_array<_Tp> operator[](slic
[all...]
H A D_relops_cont.h7 inline bool _STLP_CALL operator==(const _STLP_TEMPLATE_CONTAINER& __x,
15 inline bool _STLP_CALL operator<(const _STLP_TEMPLATE_CONTAINER& __x,
H A D_iterator_old.h67 // friend inline bool operator== _STLP_NULL_TMPL_ARGS (const _Self& x, const _Self& y);
85 _Reference operator*() const {
92 _Self& operator++() {
96 _Self operator++(int) {
101 _Self& operator--() {
105 _Self operator--(int) {
132 inline bool _STLP_CALL operator==(
142 inline bool _STLP_CALL operator!=(
178 _Self& operator=(const _Self& __x) {__current = __x.base(); return *this; }
181 _Reference operator*() cons
[all...]
H A D_string_operators.h29 operator+(const basic_string<_CharT,_Traits,_Alloc>& __s,
46 operator+(const _CharT* __s,
64 operator+(_CharT __c,
80 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x,
98 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x,
125 operator+(const basic_string<_CharT,_Traits,_Alloc>& __lhs,
141 operator+(const basic_string<_CharT,_Traits,_Alloc>& __lhs,
153 operator+(const _STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir>& __lhs,
169 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x,
188 operator
[all...]
/external/chromium_org/cc/layers/
H A Dlayer_position_constraint.cc15 bool LayerPositionConstraint::operator==(
24 bool LayerPositionConstraint::operator!=(
/external/chromium_org/content/public/browser/android/
H A Dsynchronous_compositor.cc12 bool SynchronousCompositorMemoryPolicy::operator==(
18 bool SynchronousCompositorMemoryPolicy::operator!=(
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsPoint.cpp9 SkDVector operator-(const SkDPoint& a, const SkDPoint& b) {
14 SkDPoint operator+(const SkDPoint& a, const SkDVector& b) {
/external/clang/test/CXX/special/class.free/
H A Dp1.cpp5 void *operator new(size_t) {
8 void *operator new[](size_t) {
H A Dp6.cpp5 void operator delete(void*) {
8 void operator delete[](void*) {
/external/clang/test/SemaCXX/Inputs/
H A Dwarn-new-overaligned-3.h6 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/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Dpointer01.fail.cpp28 Deleter& operator=(Deleter&) {}
30 void operator()(void*) const {}
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Dpointer01.fail.cpp27 Deleter& operator=(Deleter&) {}
29 void operator()(void*) const {}
/external/skia/src/pathops/
H A DSkPathOpsPoint.cpp9 SkDVector operator-(const SkDPoint& a, const SkDPoint& b) {
14 SkDPoint operator+(const SkDPoint& a, const SkDVector& b) {
/external/chromium_org/net/http/
H A Dhttp_version.h33 bool operator==(const HttpVersion& v) const {
36 bool operator!=(const HttpVersion& v) const {
39 bool operator>(const HttpVersion& v) const {
42 bool operator>=(const HttpVersion& v) const {
45 bool operator<(const HttpVersion& v) const {
48 bool operator<=(const HttpVersion& v) const {
/external/chromium_org/net/quic/
H A Dquic_bandwidth.h66 inline bool operator==(QuicBandwidth lhs, QuicBandwidth rhs) {
69 inline bool operator!=(QuicBandwidth lhs, QuicBandwidth rhs) {
72 inline bool operator<(QuicBandwidth lhs, QuicBandwidth rhs) {
75 inline bool operator>(QuicBandwidth lhs, QuicBandwidth rhs) {
78 inline bool operator<=(QuicBandwidth lhs, QuicBandwidth rhs) {
81 inline bool operator>=(QuicBandwidth lhs, QuicBandwidth rhs) {
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseBinaryOps.h7 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/stlport/test/eh/
H A DSortClass.h39 bool operator<( const TestClass& rhs ) const
45 bool operator==( const TestClass& rhs ) const
58 inline bool operator>( const SortClass& lhs, const SortClass& rhs ) {
62 inline bool operator<=( const SortClass& lhs, const SortClass& rhs ) {
66 inline bool operator>=( const SortClass& lhs, const SortClass& rhs ) {
70 inline bool operator != ( const SortClass& lhs, const SortClass& rhs ) {
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DConstantUnion.h92 bool operator==(const int i) const
97 bool operator==(const unsigned int u) const
102 bool operator==(const float f) const
107 bool operator==(const bool b) const
112 bool operator==(const ConstantUnion& constant) const
131 bool operator!=(const int i) const
133 return !operator==(i);
136 bool operator!=(const unsigned int u) const
138 return !operator==(u);
141 bool operator!
[all...]
/external/eigen/Eigen/src/Eigen2Support/
H A DCwiseOperators.h52 /** \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...]

Completed in 2640 milliseconds

1234567891011>>