HomeSort by relevance Sort by last modified time
    Searched defs:operator (Results 626 - 650 of 6351) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
unique_ptr.h 59 operator()(_Tp* __ptr) const
76 operator()(_Tp* __ptr) const
83 template<typename _Up> void operator()(_Up*) const = delete;
179 operator=(unique_ptr&& __u) noexcept
192 operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
200 operator=(nullptr_t) noexcept
208 operator*() const
215 operator->() const noexcept
233 explicit operator bool() const noexcept
263 unique_ptr& operator=(const unique_ptr&) = delete
    [all...]
stl_bvector.h 81 operator bool() const _GLIBCXX_NOEXCEPT
85 operator=(bool __x) _GLIBCXX_NOEXCEPT
95 operator=(const _Bit_reference& __x) _GLIBCXX_NOEXCEPT
99 operator==(const _Bit_reference& __x) const
103 operator<(const _Bit_reference& __x) const
155 operator==(const _Bit_iterator_base& __i) const
159 operator<(const _Bit_iterator_base& __i) const
166 operator!=(const _Bit_iterator_base& __i) const
170 operator>(const _Bit_iterator_base& __i) const
174 operator<=(const _Bit_iterator_base& __i) cons
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
unique_ptr.h 59 operator()(_Tp* __ptr) const
76 operator()(_Tp* __ptr) const
83 template<typename _Up> void operator()(_Up*) const = delete;
179 operator=(unique_ptr&& __u) noexcept
192 operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
200 operator=(nullptr_t) noexcept
208 operator*() const
215 operator->() const noexcept
233 explicit operator bool() const noexcept
263 unique_ptr& operator=(const unique_ptr&) = delete
    [all...]
stl_bvector.h 81 operator bool() const _GLIBCXX_NOEXCEPT
85 operator=(bool __x) _GLIBCXX_NOEXCEPT
95 operator=(const _Bit_reference& __x) _GLIBCXX_NOEXCEPT
99 operator==(const _Bit_reference& __x) const
103 operator<(const _Bit_reference& __x) const
155 operator==(const _Bit_iterator_base& __i) const
159 operator<(const _Bit_iterator_base& __i) const
166 operator!=(const _Bit_iterator_base& __i) const
170 operator>(const _Bit_iterator_base& __i) const
174 operator<=(const _Bit_iterator_base& __i) cons
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
unique_ptr.h 63 operator()(_Tp* __ptr) const
95 operator()(_Tp* __ptr) const
104 operator()(_Up*) const = delete;
190 operator=(unique_ptr&& __u) noexcept
203 operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
211 operator=(nullptr_t) noexcept
219 operator*() const
226 operator->() const noexcept
244 explicit operator bool() const noexcept
274 unique_ptr& operator=(const unique_ptr&) = delete
    [all...]
stl_bvector.h 80 operator bool() const _GLIBCXX_NOEXCEPT
84 operator=(bool __x) _GLIBCXX_NOEXCEPT
94 operator=(const _Bit_reference& __x) _GLIBCXX_NOEXCEPT
98 operator==(const _Bit_reference& __x) const
102 operator<(const _Bit_reference& __x) const
180 operator==(const _Bit_iterator_base& __i) const
184 operator<(const _Bit_iterator_base& __i) const
191 operator!=(const _Bit_iterator_base& __i) const
195 operator>(const _Bit_iterator_base& __i) const
199 operator<=(const _Bit_iterator_base& __i) cons
    [all...]
  /external/clang/include/clang/AST/
UnresolvedSet.h 58 NamedDecl *operator*() const { return getDecl(); }
60 UnresolvedSetIterator &operator++() { ++ir; return *this; }
61 UnresolvedSetIterator operator++(int) { return UnresolvedSetIterator(ir++); }
62 UnresolvedSetIterator &operator--() { --ir; return *this; }
63 UnresolvedSetIterator operator--(int) { return UnresolvedSetIterator(ir--); }
65 UnresolvedSetIterator &operator+=(difference_type d) {
68 UnresolvedSetIterator operator+(difference_type d) const {
71 UnresolvedSetIterator &operator-=(difference_type d) {
74 UnresolvedSetIterator operator-(difference_type d) const {
77 value_type operator[](difference_type d) const { return *(*this + d);
    [all...]
  /external/ceres-solver/include/ceres/internal/
scoped_ptr.h 91 // operator* and operator-> will assert() if there is no current object.
92 C& operator*() const {
96 C* operator->() const {
105 bool operator==(const C* p) const { return ptr_ == p; }
106 bool operator!=(const C* p) const { return ptr_ != p; }
136 template <class C2> bool operator==(scoped_ptr<C2> const& p2) const;
137 template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const;
141 void operator=(const scoped_ptr&);
151 inline bool operator==(const C* p1, const scoped_ptr<C>& p2)
    [all...]
  /external/chromium/base/memory/
scoped_ptr.h 90 // operator* and operator-> will assert() if there is no current object.
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&);
146 bool operator==(C* p1, const scoped_ptr<C>& p2)
    [all...]
  /external/chromium/googleurl/base/
scoped_ptr.h 54 scoped_ptr & operator=(scoped_ptr const &);
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 &)
    [all...]
  /external/chromium_org/media/cdm/ppapi/
linked_ptr.h 98 template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) {
104 linked_ptr& operator=(linked_ptr const& ptr) {
118 operator T*() const { return value_; }
119 T* operator->() const { return value_; }
120 T& operator*() const { return *value_; }
132 bool operator==(const T* p) const { return value_ == p; }
133 bool operator!=(const T* p) const { return value_ != p; }
135 bool operator==(linked_ptr<U> const& ptr) const {
139 bool operator!=(linked_ptr<U> const& ptr) const {
169 bool operator==(T* ptr, const linked_ptr<T>& x)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
IntPoint.h 93 operator CGPoint() const;
97 operator NSPoint() const;
105 inline IntPoint& operator+=(IntPoint& a, const IntSize& b)
111 inline IntPoint& operator-=(IntPoint& a, const IntSize& b)
117 inline IntPoint operator+(const IntPoint& a, const IntSize& b)
122 inline IntPoint operator+(const IntPoint& a, const IntPoint& b)
127 inline IntSize operator-(const IntPoint& a, const IntPoint& b)
132 inline IntPoint operator-(const IntPoint& a, const IntSize& b)
137 inline IntPoint operator-(const IntPoint& point)
142 inline bool operator==(const IntPoint& a, const IntPoint& b
    [all...]
  /external/chromium_org/third_party/skia/include/core/
Sk64.h 201 friend bool operator==(const Sk64& a, const Sk64& b) {
205 friend bool operator!=(const Sk64& a, const Sk64& b) {
209 friend bool operator<(const Sk64& a, const Sk64& b) {
213 friend bool operator<=(const Sk64& a, const Sk64& b) {
217 friend bool operator>(const Sk64& a, const Sk64& b) {
221 friend bool operator>=(const Sk64& a, const Sk64& b) {
  /external/llvm/include/llvm/ADT/
OwningPtr.h 30 OwningPtr &operator=(OwningPtr const &) LLVM_DELETED_FUNCTION;
38 OwningPtr &operator=(OwningPtr &&Other) {
66 T &operator*() const {
71 T *operator->() const { return Ptr; }
73 LLVM_EXPLICIT operator bool() const { return Ptr != 0; }
74 bool operator!() const { return Ptr == 0; }
94 OwningArrayPtr &operator=(OwningArrayPtr const &) LLVM_DELETED_FUNCTION;
102 OwningArrayPtr &operator=(OwningArrayPtr &&Other) {
130 T &operator[](std::ptrdiff_t i) const {
136 LLVM_EXPLICIT operator bool() const { return Ptr != 0;
    [all...]
PackedVector.h 90 reference &operator=(T val) {
94 operator T() const {
122 reference operator[](unsigned Idx) {
126 T operator[](unsigned Idx) const {
130 bool operator==(const PackedVector &RHS) const {
134 bool operator!=(const PackedVector &RHS) const {
138 const PackedVector &operator=(const PackedVector &RHS) {
143 PackedVector &operator|=(const PackedVector &RHS) {
  /external/skia/include/core/
Sk64.h 201 friend bool operator==(const Sk64& a, const Sk64& b) {
205 friend bool operator!=(const Sk64& a, const Sk64& b) {
209 friend bool operator<(const Sk64& a, const Sk64& b) {
213 friend bool operator<=(const Sk64& a, const Sk64& b) {
217 friend bool operator>(const Sk64& a, const Sk64& b) {
221 friend bool operator>=(const Sk64& a, const Sk64& b) {
  /external/stlport/stlport/stl/
_pair.h 81 inline bool _STLP_CALL operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
85 inline bool _STLP_CALL operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
92 inline bool _STLP_CALL operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
96 inline bool _STLP_CALL operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
100 inline bool _STLP_CALL operator<=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
104 inline bool _STLP_CALL operator>=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
137 inline bool _STLP_CALL operator!=(const _Tp& __x, const _Tp& __y)
141 inline bool _STLP_CALL operator>(const _Tp& __x, const _Tp& __y)
145 inline bool _STLP_CALL operator<=(const _Tp& __x, const _Tp& __y)
149 inline bool _STLP_CALL operator>=(const _Tp& __x, const _Tp& __y
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_pair.h 81 inline bool _STLP_CALL operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
85 inline bool _STLP_CALL operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
92 inline bool _STLP_CALL operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
96 inline bool _STLP_CALL operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
100 inline bool _STLP_CALL operator<=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
104 inline bool _STLP_CALL operator>=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
137 inline bool _STLP_CALL operator!=(const _Tp& __x, const _Tp& __y)
141 inline bool _STLP_CALL operator>(const _Tp& __x, const _Tp& __y)
145 inline bool _STLP_CALL operator<=(const _Tp& __x, const _Tp& __y)
149 inline bool _STLP_CALL operator>=(const _Tp& __x, const _Tp& __y
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_stack.h 102 operator==(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
106 operator<(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
235 operator==(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
253 operator<(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
256 /// Based on operator==
259 operator!=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
262 /// Based on operator<
265 operator>(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
268 /// Based on operator<
271 operator<=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y
    [all...]
stream_iterator.h 71 operator*() const
80 operator->() const { return &(operator*()); }
83 operator++()
93 operator++(int)
123 operator==(const istream_iterator<_Tp, _CharT, _Traits, _Dist>& __x,
130 operator!=(const istream_iterator<_Tp, _CharT, _Traits, _Dist>& __x,
139 * operator<<(Tp) defined.
183 /// Writes @a value to underlying ostream using operator<<. If
186 operator=(const _Tp& __value
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_queue.h 103 operator==(const queue<_Tp1, _Seq1>&, const queue<_Tp1, _Seq1>&);
107 operator<(const queue<_Tp1, _Seq1>&, const queue<_Tp1, _Seq1>&);
266 operator==(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y)
284 operator<(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y)
287 /// Based on operator==
290 operator!=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y)
293 /// Based on operator<
296 operator>(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y)
299 /// Based on operator<
302 operator<=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y
    [all...]
stl_stack.h 105 operator==(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
109 operator<(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
241 operator==(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
259 operator<(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
262 /// Based on operator==
265 operator!=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
268 /// Based on operator<
271 operator>(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
274 /// Based on operator<
277 operator<=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y
    [all...]
stream_iterator.h 78 operator*() const
87 operator->() const { return &(operator*()); }
90 operator++()
100 operator++(int)
130 operator==(const istream_iterator<_Tp, _CharT, _Traits, _Dist>& __x,
137 operator!=(const istream_iterator<_Tp, _CharT, _Traits, _Dist>& __x,
146 * operator<<(Tp) defined.
190 /// Writes @a value to underlying ostream using operator<<. If
193 operator=(const _Tp& __value
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_queue.h 103 operator==(const queue<_Tp1, _Seq1>&, const queue<_Tp1, _Seq1>&);
107 operator<(const queue<_Tp1, _Seq1>&, const queue<_Tp1, _Seq1>&);
266 operator==(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y)
284 operator<(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y)
287 /// Based on operator==
290 operator!=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y)
293 /// Based on operator<
296 operator>(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y)
299 /// Based on operator<
302 operator<=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y
    [all...]
stl_stack.h 105 operator==(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
109 operator<(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
241 operator==(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
259 operator<(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
262 /// Based on operator==
265 operator!=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
268 /// Based on operator<
271 operator>(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
274 /// Based on operator<
277 operator<=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y
    [all...]

Completed in 1341 milliseconds

<<21222324252627282930>>