HomeSort by relevance Sort by last modified time
    Searched full:operator (Results 176 - 200 of 6015) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/WebKit/qt/Api/
qwebelement.h 62 QWebElement &operator=(const QWebElement&);
65 bool operator==(const QWebElement& o) const;
66 bool operator!=(const QWebElement& o) const;
192 QWebElementCollection &operator=(const QWebElementCollection &);
195 QWebElementCollection operator+(const QWebElementCollection &other) const;
196 inline QWebElementCollection &operator+=(const QWebElementCollection &other)
205 inline QWebElement operator[](int i) const { return at(i); }
217 inline const QWebElement operator*() const { return collection->at(i); }
219 inline bool operator==(const const_iterator& o) const { return i == o.i && collection == o.collection; }
220 inline bool operator!=(const const_iterator& o) const { return i != o.i || collection != o.collection;
    [all...]
  /frameworks/base/include/utils/
String8.h 88 inline String8& operator=(const String8& other);
89 inline String8& operator=(const char* other);
91 inline String8& operator+=(const String8& other);
92 inline String8 operator+(const String8& other) const;
94 inline String8& operator+=(const char* other);
95 inline String8 operator+(const char* other) const;
99 inline bool operator<(const String8& other) const;
100 inline bool operator<=(const String8& other) const;
101 inline bool operator==(const String8& other) const;
102 inline bool operator!=(const String8& other) const
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ostream.h 59 _Self& operator = (_Self const&);
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...]
_iterator_old.h 67 // 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*() const { return *(__current - (difference_type)1);
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_ostream.h 59 _Self& operator = (_Self const&);
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...]
_iterator_old.h 67 // 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*() const { return *(__current - (difference_type)1);
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_ostream.h 59 _Self& operator = (_Self const&);
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...]
_iterator_old.h 67 // 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*() const { return *(__current - (difference_type)1);
    [all...]
  /external/astl/include/
ostream 70 ostream& operator<<(ostream& (*manip)(ostream&)) { return manip(*this); }
71 ostream& operator<<(ios_base& (*manip)(ios_base&)) {
76 ostream& operator<<(unsigned long int val);
77 ostream& operator<<(long int val);
78 ostream& operator<<(unsigned int val);
79 ostream& operator<<(int val);
80 ostream& operator<<(unsigned long long int val);
81 ostream& operator<<(long long int val);
83 ostream& operator<<(double val);
84 ostream& operator<<(float val)
    [all...]
  /external/webkit/Source/WebCore/svg/animation/
SMILTime.h 44 SMILTime& operator=(const SMILTime& o) { m_time = o.m_time; return *this; }
58 inline bool operator==(const SMILTime& a, const SMILTime& b) { return a.isFinite() && a.value() == b.value(); }
59 inline bool operator!(const SMILTime& a) { return !a.isFinite() || !a.value(); }
60 inline bool operator!=(const SMILTime& a, const SMILTime& b) { return !operator==(a, b); }
61 inline bool operator>(const SMILTime& a, const SMILTime& b) { return a.value() > b.value(); }
62 inline bool operator<(const SMILTime& a, const SMILTime& b) { return a.value() < b.value(); }
63 inline bool operator>=(const SMILTime& a, const SMILTime& b) { return a.value() > b.value() || operator==(a, b); }
64 inline bool operator<=(const SMILTime& a, const SMILTime& b) { return a.value() < b.value() || operator==(a, b);
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-linux-androideabi-4.4.x/arm-linux-androideabi/include/c++/4.4.3/
new 91 void* operator new(std::size_t) throw (std::bad_alloc);
92 void* operator new[](std::size_t) throw (std::bad_alloc);
93 void operator delete(void*) throw();
94 void operator delete[](void*) throw();
95 void* operator new(std::size_t, const std::nothrow_t&) throw();
96 void* operator new[](std::size_t, const std::nothrow_t&) throw();
97 void operator delete(void*, const std::nothrow_t&) throw();
98 void operator delete[](void*, const std::nothrow_t&) throw();
100 // Default placement versions of operator new.
101 inline void* operator new(std::size_t, void* __p) throw() { return __p;
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/arm-linux-androideabi/include/c++/4.4.3/
new 91 void* operator new(std::size_t) throw (std::bad_alloc);
92 void* operator new[](std::size_t) throw (std::bad_alloc);
93 void operator delete(void*) throw();
94 void operator delete[](void*) throw();
95 void* operator new(std::size_t, const std::nothrow_t&) throw();
96 void* operator new[](std::size_t, const std::nothrow_t&) throw();
97 void operator delete(void*, const std::nothrow_t&) throw();
98 void operator delete[](void*, const std::nothrow_t&) throw();
100 // Default placement versions of operator new.
101 inline void* operator new(std::size_t, void* __p) throw() { return __p;
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
new 91 void* operator new(std::size_t) throw (std::bad_alloc);
92 void* operator new[](std::size_t) throw (std::bad_alloc);
93 void operator delete(void*) throw();
94 void operator delete[](void*) throw();
95 void* operator new(std::size_t, const std::nothrow_t&) throw();
96 void* operator new[](std::size_t, const std::nothrow_t&) throw();
97 void operator delete(void*, const std::nothrow_t&) throw();
98 void operator delete[](void*, const std::nothrow_t&) throw();
100 // Default placement versions of operator new.
101 inline void* operator new(std::size_t, void* __p) throw() { return __p;
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/
new 91 void* operator new(std::size_t) throw (std::bad_alloc);
92 void* operator new[](std::size_t) throw (std::bad_alloc);
93 void operator delete(void*) throw();
94 void operator delete[](void*) throw();
95 void* operator new(std::size_t, const std::nothrow_t&) throw();
96 void* operator new[](std::size_t, const std::nothrow_t&) throw();
97 void operator delete(void*, const std::nothrow_t&) throw();
98 void operator delete[](void*, const std::nothrow_t&) throw();
100 // Default placement versions of operator new.
101 inline void* operator new(std::size_t, void* __p) throw() { return __p;
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/
new 91 void* operator new(std::size_t) throw (std::bad_alloc);
92 void* operator new[](std::size_t) throw (std::bad_alloc);
93 void operator delete(void*) throw();
94 void operator delete[](void*) throw();
95 void* operator new(std::size_t, const std::nothrow_t&) throw();
96 void* operator new[](std::size_t, const std::nothrow_t&) throw();
97 void operator delete(void*, const std::nothrow_t&) throw();
98 void operator delete[](void*, const std::nothrow_t&) throw();
100 // Default placement versions of operator new.
101 inline void* operator new(std::size_t, void* __p) throw() { return __p;
    [all...]
  /external/clang/test/CXX/except/except.spec/
p14.cpp 15 // Copy-assignment operator.
17 CA0 &operator=(const CA0&) throw(A);
20 CA1 &operator=(const CA1&) throw(B);
25 CA2 &(CA2::*captr1)(const CA2&) throw(A, B) = &CA2::operator=;
26 CA2 &(CA2::*captr2)(const CA2&) throw(A, B, C) = &CA2::operator=;
27 CA2 &(CA2::*captr3)(const CA2&) throw(A) = &CA2::operator=; // expected-error{{target exception specification is not superset of source}}
28 CA2 &(CA2::*captr4)(const CA2&) throw(B) = &CA2::operator=; // expected-error{{target exception specification is not superset of source}}
  /external/clang/test/SemaTemplate/
inject-templated-friend-post.cpp 22 std_ostream& operator << (std_ostream&, const Streamer<Foo>&);
32 friend std_ostream& operator << (std_ostream& o, const Streamer& f) // expected-error{{redefinition of 'operator<<'}}
42 void operator () (std_ostream&) const;
46 std_ostream& operator << (std_ostream&, const Streamer<Foo>&);
54 std_ostream& operator << (std_ostream& o, const Streamer<Foo>&) // expected-note{{is here}}
62 void Streamer<Foo>::operator () (std_ostream& o) const // expected-note{{requested here}}
  /external/icu4c/io/unicode/
ustream.h 25 * operator<< and operator>> for UnicodeString manipulation with the
46 U_IO_API std::ostream & U_EXPORT2 operator<<(std::ostream& stream, const UnicodeString& s);
54 U_IO_API std::istream & U_EXPORT2 operator>>(std::istream& stream, UnicodeString& s);
62 U_IO_API ostream & U_EXPORT2 operator<<(ostream& stream, const UnicodeString& s);
64 U_IO_API istream & U_EXPORT2 operator>>(istream& stream, UnicodeString& s);
69 /* No operator for UChar because it can conflict with wchar_t */
  /external/webrtc/src/system_wrappers/source/
atomic32.cc 34 WebRtc_Word32 Atomic32Wrapper::operator++()
39 WebRtc_Word32 Atomic32Wrapper::operator--()
46 // TODO (hellner) operator= and Atomic32Wrapper::Value() can be fully
48 Atomic32Wrapper& Atomic32Wrapper::operator=(const Atomic32Wrapper& rhs)
58 Atomic32Wrapper& Atomic32Wrapper::operator=(WebRtc_Word32 rhs)
64 WebRtc_Word32 Atomic32Wrapper::operator+=(WebRtc_Word32 rhs)
69 WebRtc_Word32 Atomic32Wrapper::operator-=(WebRtc_Word32 rhs)
  /ndk/sources/cxx-stl/gabi++/src/
delete.cc 28 // delete.cc: delete operator
34 operator delete(void* ptr) throw()
41 operator delete[](void* ptr) throw()
43 ::operator delete(ptr);
47 operator delete(void* ptr, const std::nothrow_t &)
54 operator delete[](void* ptr, const std::nothrow_t &nt)
56 ::operator delete(ptr, nt);
  /external/webkit/Source/WebCore/platform/graphics/
IntPoint.h 119 operator CGPoint() const;
124 operator NSPoint() const;
129 operator POINT() const;
131 operator POINTS() const;
134 operator QPoint() const;
137 operator GdkPoint() const;
140 operator BPoint() const;
143 operator Evas_Point() const;
148 operator wxPoint() const;
153 operator AEEPoint() const
    [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/stlport/stlport/stl/
_iterator_old.h 67 // 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*() const { return *(__current - (difference_type)1);
    [all...]
  /external/opencv/cvaux/include/
cvmat.hpp 61 inline CvScalar& operator += ( CvScalar& a, const CvScalar& b )
77 inline CvScalar& operator -= ( CvScalar& a, const CvScalar& b )
93 inline CvScalar& operator *= ( CvScalar& a, double b )
109 inline CvScalar& operator /= ( CvScalar& a, double b )
126 inline CvScalar& operator *= ( CvScalar& a, const CvScalar& b )
149 inline CvScalar& operator /= ( CvScalar& a, const CvScalar& b )
158 inline CvScalar& operator += ( CvScalar& a, double b )
165 inline CvScalar& operator -= ( CvScalar& a, double b )
172 inline CvScalar operator + ( const CvScalar& a, const CvScalar& b )
179 inline CvScalar operator - ( const CvScalar& a, const CvScalar& b
    [all...]
  /external/clang/test/CXX/special/class.copy/
implicit-move.cpp 12 ThrowingCopy & operator =(ThrowingCopy &&) noexcept;
13 ThrowingCopy & operator =(const ThrowingCopy &) noexcept(false);
25 HasCopyAssignment & operator =(const HasCopyAssignment &) noexcept(false);
37 HasMoveAssignment & operator =(HasMoveAssignment &&) noexcept;
57 hmc = HasMoveConstructor(); // expected-error {{selected deleted operator}}
71 PrivateMove & operator =(const PrivateMove &) noexcept(false);
74 PrivateMove & operator =(PrivateMove &&) noexcept;
98 NonTrivialCopyOnly & operator =(const NonTrivialCopyOnly &) noexcept(false);
109 ContainsConst & operator =(ContainsConst &); // expected-note {{not viable}}
115 ContainsRef & operator =(ContainsRef &); // expected-note {{not viable}
    [all...]

Completed in 444 milliseconds

1 2 3 4 5 6 78 91011>>