/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/profile/ |
iterator_tracker.h | 83 operator _Iterator() const { return _M_current; } 86 operator->() const { return &*_M_current; } 89 operator++() 97 operator++(int) 106 operator--() 114 operator--(int) 123 operator=(const __iterator_tracker& __x) 130 operator*() const 135 operator[](const difference_type& __n) const 139 operator+=(const difference_type& __n [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/profile/ |
iterator_tracker.h | 83 operator _Iterator() const { return _M_current; } 86 operator->() const { return &*_M_current; } 89 operator++() 97 operator++(int) 106 operator--() 114 operator--(int) 123 operator=(const __iterator_tracker& __x) 130 operator*() const 135 operator[](const difference_type& __n) const 139 operator+=(const difference_type& __n [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
RefPtr.h | 56 T& operator*() const { return *m_ptr; } 57 ALWAYS_INLINE T* operator->() const { return m_ptr; } 59 bool operator!() const { return !m_ptr; } 61 // This conversion operator allows implicit conversion to bool but not to other integer types. 63 operator UnspecifiedBoolType() const { return m_ptr ? &RefPtr::m_ptr : 0; } 65 RefPtr& operator=(const RefPtr&); 66 RefPtr& operator=(T*); 67 RefPtr& operator=(const PassRefPtr<T>&); 69 RefPtr& operator=(std::nullptr_t) { clear(); return *this; } 71 template<typename U> RefPtr<T>& operator=(const RefPtr<U>&) [all...] |
/external/clang/include/clang/AST/ |
StmtIterator.h | 87 DERIVED& operator++() { 98 DERIVED operator++(int) { 100 operator++(); 104 bool operator==(const DERIVED& RHS) const { 108 bool operator!=(const DERIVED& RHS) const { 112 REFERENCE operator*() const { 116 REFERENCE operator->() const { return operator*(); } 151 LLVM_EXPLICIT operator bool() const { return !empty(); } 153 Stmt *operator->() const { return first.operator->(); [all...] |
/external/clang/test/CXX/special/class.copy/ |
p23-cxx11.cpp | 17 NonTrivialCopyAssign &operator=(const NonTrivialCopyAssign &); 20 NonTrivialMoveAssign &operator=(NonTrivialMoveAssign &&); 23 AmbiguousCopyAssign &operator=(const AmbiguousCopyAssign &); 24 AmbiguousCopyAssign &operator=(volatile AmbiguousCopyAssign &); 27 AmbiguousMoveAssign &operator=(const AmbiguousMoveAssign &&); 28 AmbiguousMoveAssign &operator=(volatile AmbiguousMoveAssign &&); 31 DeletedCopyAssign &operator=(const DeletedCopyAssign &) = delete; // expected-note 2{{deleted}} 34 DeletedMoveAssign &operator=(DeletedMoveAssign &&) = delete; // expected-note 2{{deleted}} 37 InaccessibleCopyAssign &operator=(const InaccessibleCopyAssign &); 40 InaccessibleMoveAssign &operator=(InaccessibleMoveAssign &&) [all...] |
/external/clang/test/Parser/ |
cxx11-user-defined-literals.cpp | 41 constexpr char operator"" _id(char c) { return c; } 42 constexpr wchar_t operator"" _id(wchar_t c) { return c; } 43 constexpr char16_t operator"" _id(char16_t c) { return c; } 44 constexpr char32_t operator"" _id(char32_t c) { return c; } 47 constexpr const char operator"" _id(const char *p, size_t n) { return *p; } 48 constexpr const wchar_t operator"" _id(const wchar_t *p, size_t n) { return *p; } 49 constexpr const char16_t operator"" _id(const char16_t *p, size_t n) { return *p; } 50 constexpr const char32_t operator"" _id(const char32_t *p, size_t n) { return *p; } 52 constexpr unsigned long long operator"" _id(unsigned long long n) { return n; } 53 constexpr long double operator"" _id(long double d) { return d; [all...] |
/external/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...] |
/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...] |
/prebuilts/ndk/5/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...] |
/prebuilts/ndk/6/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...] |
/prebuilts/ndk/7/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...] |
/prebuilts/ndk/8/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...] |
/prebuilts/ndk/9/sources/cxx-stl/EH/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...] |
/external/arduino/hardware/arduino/cores/arduino/ |
WString.h | 43 const String & operator = ( const String &rhs ); 44 const String & operator +=( const String &rhs ); 45 //const String & operator +=( const char ); 46 int operator ==( const String &rhs ) const; 47 int operator !=( const String &rhs ) const; 48 int operator < ( const String &rhs ) const; 49 int operator > ( const String &rhs ) const; 50 int operator <=( const String &rhs ) const; 51 int operator >=( const String &rhs ) const; 52 char operator []( unsigned int index ) const [all...] |
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
ResourcePtr.h | 38 bool operator!() const { return !m_resource; } 41 // This conversion operator allows implicit conversion to bool but not to other integer types. 43 operator UnspecifiedBoolType() const { return m_resource ? &ResourcePtrBase::m_resource : 0; } 53 ResourcePtrBase& operator=(const ResourcePtrBase&) { return *this; } 88 R* operator->() const { return get(); } 90 ResourcePtr& operator=(R* res) { setResource(res); return *this; } 91 ResourcePtr& operator=(const ResourcePtr& o) { setResource(o.get()); return *this; } 92 template<typename U> ResourcePtr& operator=(const ResourcePtr<U>& o) { setResource(o.get()); return *this; } 94 bool operator==(const ResourcePtrBase& o) const { return get() == o.get(); } 95 bool operator!=(const ResourcePtrBase& o) const { return get() != o.get(); [all...] |
/external/clang/test/SemaCXX/ |
explicit.cpp | 25 operator int(); 26 explicit operator bool(); 29 A::operator bool() { return false; } 49 explicit operator Y() const; 50 explicit operator int() const; 71 operator bool(); 75 explicit operator bool(); // expected-note {{conversion to integral type 'bool'}} 128 operator int(); 131 explicit operator int(); // expected-note {{conversion to integral type 'int' declared here}} 145 operator int*() [all...] |
/hardware/samsung_slsi/exynos5/include/ |
ExynosRect.h | 80 //! Operator(=) override 81 ExynosRect& operator =(const ExynosRect &other) 93 //! Operator(==) override 94 bool operator ==(const ExynosRect &other) const 105 //! Operator(!=) override 106 bool operator !=(const ExynosRect &other) const 108 // use operator(==) 144 //! Operator(=) override 145 ExynosRect2& operator =(const ExynosRect2 &other) 154 //! Operator(==) overrid [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
new.cpp | 42 operator new(std::size_t size) 69 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT 76 p = ::operator new(size); 88 operator new[](size_t size) 93 return ::operator new(size); 98 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT 105 p = ::operator new[](size); 117 operator delete(void* ptr) _NOEXCEPT 125 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT 127 ::operator delete(ptr) [all...] |
/prebuilts/gcc/linux-x86/host/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...] |
/prebuilts/ndk/5/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...] |
/prebuilts/ndk/6/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...] |
/prebuilts/ndk/7/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...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/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...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ |
new | 93 void* operator new(std::size_t) _GLIBCXX_THROW (std::bad_alloc) 95 void* operator new[](std::size_t) _GLIBCXX_THROW (std::bad_alloc) 97 void operator delete(void*) _GLIBCXX_USE_NOEXCEPT 99 void operator delete[](void*) _GLIBCXX_USE_NOEXCEPT 101 void* operator new(std::size_t, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 103 void* operator new[](std::size_t, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 105 void operator delete(void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 107 void operator delete[](void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 110 // Default placement versions of operator new. 111 inline void* operator new(std::size_t, void* __p) _GLIBCXX_USE_NOEXCEP [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ |
new | 93 void* operator new(std::size_t) _GLIBCXX_THROW (std::bad_alloc) 95 void* operator new[](std::size_t) _GLIBCXX_THROW (std::bad_alloc) 97 void operator delete(void*) _GLIBCXX_USE_NOEXCEPT 99 void operator delete[](void*) _GLIBCXX_USE_NOEXCEPT 101 void* operator new(std::size_t, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 103 void* operator new[](std::size_t, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 105 void operator delete(void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 107 void operator delete[](void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 110 // Default placement versions of operator new. 111 inline void* operator new(std::size_t, void* __p) _GLIBCXX_USE_NOEXCEP [all...] |