HomeSort by relevance Sort by last modified time
    Searched full:operator (Results 451 - 475 of 13411) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 158 operator=(const PB_DS_CONST_IT_C_DEC& other)
166 operator=(const PB_DS_CONST_ODIR_IT_C_DEC& other)
173 operator->() const
180 operator*() const
187 operator==(const PB_DS_CONST_IT_C_DEC& other) const
191 operator==(const PB_DS_CONST_ODIR_IT_C_DEC& other) const
195 operator!=(const PB_DS_CONST_IT_C_DEC& other) const
199 operator!=(const PB_DS_CONST_ODIR_IT_C_DEC& other) const
203 operator++()
210 operator++(int
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 158 operator=(const PB_DS_CONST_IT_C_DEC& other)
166 operator=(const PB_DS_CONST_ODIR_IT_C_DEC& other)
173 operator->() const
180 operator*() const
187 operator==(const PB_DS_CONST_IT_C_DEC& other) const
191 operator==(const PB_DS_CONST_ODIR_IT_C_DEC& other) const
195 operator!=(const PB_DS_CONST_IT_C_DEC& other) const
199 operator!=(const PB_DS_CONST_ODIR_IT_C_DEC& other) const
203 operator++()
210 operator++(int
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 158 operator=(const PB_DS_CONST_IT_C_DEC& other)
166 operator=(const PB_DS_CONST_ODIR_IT_C_DEC& other)
173 operator->() const
180 operator*() const
187 operator==(const PB_DS_CONST_IT_C_DEC& other) const
191 operator==(const PB_DS_CONST_ODIR_IT_C_DEC& other) const
195 operator!=(const PB_DS_CONST_IT_C_DEC& other) const
199 operator!=(const PB_DS_CONST_ODIR_IT_C_DEC& other) const
203 operator++()
210 operator++(int
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_iterator.h 156 operator*() const
168 operator->() const
169 { return &(operator*()); }
177 operator++()
189 operator++(int)
202 operator--()
214 operator--(int)
227 operator+(difference_type __n) const
236 operator+=(difference_type __n)
248 operator-(difference_type __n) cons
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_iterator.h 156 operator*() const
168 operator->() const
169 { return &(operator*()); }
177 operator++()
189 operator++(int)
202 operator--()
214 operator--(int)
227 operator+(difference_type __n) const
236 operator+=(difference_type __n)
248 operator-(difference_type __n) cons
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_iterator.h 156 operator*() const
168 operator->() const
169 { return &(operator*()); }
177 operator++()
189 operator++(int)
202 operator--()
214 operator--(int)
227 operator+(difference_type __n) const
236 operator+=(difference_type __n)
248 operator-(difference_type __n) cons
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_iterator.h 162 operator*() const
174 operator->() const
175 { return &(operator*()); }
183 operator++()
195 operator++(int)
208 operator--()
220 operator--(int)
233 operator+(difference_type __n) const
243 operator+=(difference_type __n)
255 operator-(difference_type __n) cons
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_iterator.h 156 operator*() const
168 operator->() const
169 { return &(operator*()); }
177 operator++()
189 operator++(int)
202 operator--()
214 operator--(int)
227 operator+(difference_type __n) const
236 operator+=(difference_type __n)
248 operator-(difference_type __n) cons
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_iterator.h 162 operator*() const
174 operator->() const
175 { return &(operator*()); }
183 operator++()
195 operator++(int)
208 operator--()
220 operator--(int)
233 operator+(difference_type __n) const
243 operator+=(difference_type __n)
255 operator-(difference_type __n) cons
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
stl_iterator.h 160 operator*() const
172 operator->() const
173 { return &(operator*()); }
181 operator++()
193 operator++(int)
206 operator--()
218 operator--(int)
231 operator+(difference_type __n) const
241 operator+=(difference_type __n)
253 operator-(difference_type __n) cons
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
OwnPtr.h 72 ValueType& operator*() const { ASSERT(m_ptr); return *m_ptr; }
73 PtrType operator->() const { ASSERT(m_ptr); return m_ptr; }
75 ValueType& operator[](std::ptrdiff_t i) const;
77 bool operator!() const { return !m_ptr; }
79 // This conversion operator allows implicit conversion to bool but not to other integer types.
81 operator UnspecifiedBoolType() const { return m_ptr ? &OwnPtr::m_ptr : 0; }
83 OwnPtr& operator=(const PassOwnPtr<T>&);
84 OwnPtr& operator=(std::nullptr_t) { clear(); return *this; }
85 template<typename U> OwnPtr& operator=(const PassOwnPtr<U>&);
91 OwnPtr& operator=(OwnPtr&&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
Decimal.h 66 bool operator==(const EncodedData&) const;
67 bool operator!=(const EncodedData& another) const { return !operator==(another); }
101 Decimal& operator=(const Decimal&);
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
    [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/clang/test/SemaCXX/
attr-deprecated.cpp 122 void operator*(const A &);
123 void operator*(int) __attribute__((deprecated)); // expected-note {{declared here}}
124 void operator-(const A &) const;
126 void operator+(const A &, const A &);
127 void operator+(const A &, int) __attribute__((deprecated)); // expected-note {{declared here}}
128 void operator-(const A &, int) __attribute__((deprecated)); // expected-note {{declared here}}
141 // Overloaded operator call.
146 operator intfn() __attribute__((deprecated)); // expected-note {{declared here}}
147 operator unintfn();
148 void operator ()(A &) __attribute__((deprecated)); // expected-note {{declared here}
    [all...]
  /external/llvm/include/llvm/ADT/
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/llvm/lib/Target/SystemZ/
SystemZPatterns.td 10 // Record that INSN performs a 64-bit version of unary operator OPERATOR
12 multiclass SXU<SDPatternOperator operator, Instruction insn> {
13 def : Pat<(operator (sext (i32 GR32:$src))),
15 def : Pat<(operator (sext_inreg GR64:$src, i32)),
19 // Record that INSN performs a 64-bit version of binary operator OPERATOR
22 multiclass SXB<SDPatternOperator operator, RegisterOperand cls,
24 def : Pat<(operator cls:$src1, (sext GR32:$src2)),
26 def : Pat<(operator cls:$src1, (sext_inreg GR64:$src2, i32))
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr2/
bool_set 86 operator bool() const
110 operator!(bool_set __b)
114 operator^(bool_set __s, bool_set __t)
118 operator|(bool_set __s, bool_set __t)
122 operator&(bool_set __s, bool_set __t)
126 operator==(bool_set __s, bool_set __t)
134 operator<<(std::basic_ostream<CharT, Traits>& __out, bool_set __b)
142 operator>>(std::basic_istream<CharT, Traits>& __in, bool_set& __b)
268 operator^(bool __s, bool_set __t)
272 operator^(bool_set __s, bool __t
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/tr2/
bool_set 86 operator bool() const
110 operator!(bool_set __b)
114 operator^(bool_set __s, bool_set __t)
118 operator|(bool_set __s, bool_set __t)
122 operator&(bool_set __s, bool_set __t)
126 operator==(bool_set __s, bool_set __t)
134 operator<<(std::basic_ostream<CharT, Traits>& __out, bool_set __b)
142 operator>>(std::basic_istream<CharT, Traits>& __in, bool_set& __b)
268 operator^(bool __s, bool_set __t)
272 operator^(bool_set __s, bool __t
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr2/
bool_set 86 operator bool() const
110 operator!(bool_set __b)
114 operator^(bool_set __s, bool_set __t)
118 operator|(bool_set __s, bool_set __t)
122 operator&(bool_set __s, bool_set __t)
126 operator==(bool_set __s, bool_set __t)
134 operator<<(std::basic_ostream<CharT, Traits>& __out, bool_set __b)
142 operator>>(std::basic_istream<CharT, Traits>& __in, bool_set& __b)
268 operator^(bool __s, bool_set __t)
272 operator^(bool_set __s, bool __t
    [all...]
  /external/stlport/stlport/stl/
_complex.h 40 // Constructors, destructor, assignment operator.
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)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_complex.h 40 // Constructors, destructor, assignment operator.
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)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_complex.h 40 // Constructors, destructor, assignment operator.
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)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_complex.h 40 // Constructors, destructor, assignment operator.
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)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_complex.h 40 // Constructors, destructor, assignment operator.
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)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_complex.h 40 // Constructors, destructor, assignment operator.
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)
    [all...]

Completed in 3231 milliseconds

<<11121314151617181920>>