/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_hash_fun.h | 57 size_t operator()(const char* __s) const { 65 size_t operator()(const char* __s) const { 72 size_t operator()(char __x) const { return __x; } 75 size_t operator()(unsigned char __x) const { return __x; } 79 size_t operator()(unsigned char __x) const { return __x; } 83 size_t operator()(short __x) const { return __x; } 86 size_t operator()(unsigned short __x) const { return __x; } 89 size_t operator()(int __x) const { return __x; } 94 size_t operator()(unsigned int __x) const { return __x; } 104 size_t operator()(size_t __x) const { return __x; [all...] |
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_hash_fun.h | 57 size_t operator()(const char* __s) const { 65 size_t operator()(const char* __s) const { 72 size_t operator()(char __x) const { return __x; } 75 size_t operator()(unsigned char __x) const { return __x; } 79 size_t operator()(unsigned char __x) const { return __x; } 83 size_t operator()(short __x) const { return __x; } 86 size_t operator()(unsigned short __x) const { return __x; } 89 size_t operator()(int __x) const { return __x; } 94 size_t operator()(unsigned int __x) const { return __x; } 104 size_t operator()(size_t __x) const { return __x; [all...] |
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_hash_fun.h | 57 size_t operator()(const char* __s) const { 65 size_t operator()(const char* __s) const { 72 size_t operator()(char __x) const { return __x; } 75 size_t operator()(unsigned char __x) const { return __x; } 79 size_t operator()(unsigned char __x) const { return __x; } 83 size_t operator()(short __x) const { return __x; } 86 size_t operator()(unsigned short __x) const { return __x; } 89 size_t operator()(int __x) const { return __x; } 94 size_t operator()(unsigned int __x) const { return __x; } 104 size_t operator()(size_t __x) const { return __x; [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
stl_iterator.h | 149 operator*() const 161 operator->() const 162 { return &(operator*()); } 170 operator++() 182 operator++(int) 195 operator--() 207 operator--(int) 220 operator+(difference_type __n) const 229 operator+=(difference_type __n) 241 operator-(difference_type __n) cons [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_iterator.h | 149 operator*() const 161 operator->() const 162 { return &(operator*()); } 170 operator++() 182 operator++(int) 195 operator--() 207 operator--(int) 220 operator+(difference_type __n) const 229 operator+=(difference_type __n) 241 operator-(difference_type __n) cons [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_iterator.h | 149 operator*() const 161 operator->() const 162 { return &(operator*()); } 170 operator++() 182 operator++(int) 195 operator--() 207 operator--(int) 220 operator+(difference_type __n) const 229 operator+=(difference_type __n) 241 operator-(difference_type __n) cons [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_iterator.h | 149 operator*() const 161 operator->() const 162 { return &(operator*()); } 170 operator++() 182 operator++(int) 195 operator--() 207 operator--(int) 220 operator+(difference_type __n) const 229 operator+=(difference_type __n) 241 operator-(difference_type __n) cons [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_iterator.h | 149 operator*() const 161 operator->() const 162 { return &(operator*()); } 170 operator++() 182 operator++(int) 195 operator--() 207 operator--(int) 220 operator+(difference_type __n) const 229 operator+=(difference_type __n) 241 operator-(difference_type __n) cons [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}} 47 NoThrowMove &operator=(const NoThrowMove &); 48 NoThrowMove &operator=(NoThrowMove &&) noexcept; 52 NoThrowMoveOnly &operator=(NoThrowMoveOnly &&) noexcept [all...] |
/external/clang/test/Sema/ |
parentheses.cpp | 7 (void)(x + someConditionFunc() ? 1 : 2); // expected-warning {{operator '?:' has lower precedence than '+'}} \ 11 (void)(x - b ? 1 : 2); // expected-warning {{operator '?:' has lower precedence than '-'}} \ 15 (void)(x * (x == y) ? 1 : 2); // expected-warning {{operator '?:' has lower precedence than '*'}} \ 22 operator int(); 23 Stream &operator<<(int); 24 Stream &operator<<(const char*); 28 (void)(s << b ? "foo" : "bar"); // expected-warning {{operator '?:' has lower precedence than '<<'}} \ 34 operator int() { return 42; } 35 friend S operator+(const S &lhs, bool) { return S(); } 39 (void)(*s + true ? "foo" : "bar"); // expected-warning {{operator '?:' has lower precedence than '+'}} [all...] |
/external/clang/test/SemaCXX/ |
cxx0x-cursory-default-delete.cpp | 5 non_copiable& operator = (const non_copiable&) = delete; // expected-note {{explicitly deleted}} 11 non_const_copy& operator = (non_const_copy&) &; 12 non_const_copy& operator = (non_const_copy&) &&; 16 non_const_copy& non_const_copy::operator = (non_const_copy&) & = default; // expected-note {{not viable}} 17 non_const_copy& non_const_copy::operator = (non_const_copy&) && = default; // expected-note {{not viable}} 22 nc = nc; // expected-error {{deleted operator}} 35 non_const_derived& operator =(non_const_derived&) = default; 40 bad_decls&& operator = (bad_decls) = default; // expected-error {{lvalue reference}} expected-error {{must return 'bad_decls &'}} 41 bad_decls& operator = (volatile bad_decls&) = default; // expected-error {{may not be volatile}} expected-error {{must be defaulted outside the class}} 42 bad_decls& operator = (const bad_decls&) const = default; // expected-error {{may not have 'const', 'constexpr' or 'vo (…) [all...] |
/external/compiler-rt/lib/asan/ |
asan_new_delete.cc | 36 void *operator new(size_t size) { OPERATOR_NEW_BODY; } 37 void *operator new[](size_t size) { OPERATOR_NEW_BODY; } 39 void *operator new(size_t size) throw(std::bad_alloc) { OPERATOR_NEW_BODY; } 40 void *operator new[](size_t size) throw(std::bad_alloc) { OPERATOR_NEW_BODY; } 41 void *operator new(size_t size, std::nothrow_t const&) throw() 43 void *operator new[](size_t size, std::nothrow_t const&) throw() 51 void operator delete(void *ptr) throw() { OPERATOR_DELETE_BODY; } 52 void operator delete[](void *ptr) throw() { OPERATOR_DELETE_BODY; } 53 void operator delete(void *ptr, std::nothrow_t const&) throw() 55 void operator delete[](void *ptr, std::nothrow_t const&) throw( [all...] |
/external/icu4c/tools/memcheck/ |
ICUMemCheck.pl | 19 # common/uniset.o U operator delete(void*) 20 # common/unifilt.o U operator delete(void*) 23 # i18n/strrepl.o U operator delete(void*) 24 # layout/LEFontInstance.o U operator delete(void*) 25 # layout/LEGlyphStorage.o U operator delete(void*) 26 # layout/LayoutEngine.o U operator delete(void*) 49 if ($symbols =~ /U +operator delete\(void\*\)/) { 52 if ($symbols =~ /U +operator delete\[\]\(void\*\)/) { 55 if ($symbols =~ /U +operator new\(unsigned int\)/) { 58 if ($symbols =~ /U +operator new\[\]\(unsigned int\)/) [all...] |
/external/webkit/Source/JavaScriptCore/wtf/ |
ListRefPtr.h | 40 ListRefPtr& operator=(T* optr) { RefPtr<T>::operator=(optr); return *this; } 41 ListRefPtr& operator=(const RefPtr<T>& o) { RefPtr<T>::operator=(o); return *this; } 42 ListRefPtr& operator=(const PassRefPtr<T>& o) { RefPtr<T>::operator=(o); return *this; } 43 template <typename U> ListRefPtr& operator=(const RefPtr<U>& o) { RefPtr<T>::operator=(o); return *this; } 44 template <typename U> ListRefPtr& operator=(const PassRefPtr<U>& o) { RefPtr<T>::operator=(o); return *this; [all...] |
HashIterators.h | 46 const ValueType& operator*() const { return *get(); } 47 const ValueType* operator->() const { return get(); } 49 HashTableConstIteratorAdapter& operator++() { ++m_impl; return *this; } 68 ValueType& operator*() const { return *get(); } 69 ValueType* operator->() const { return get(); } 71 HashTableIteratorAdapter& operator++() { ++m_impl; return *this; } 74 operator HashTableConstIteratorAdapter<HashTableType, ValueType>() { 93 const KeyType& operator*() const { return *get(); } 94 const KeyType* operator->() const { return get(); } 96 HashTableConstKeysIterator& operator++() { ++m_impl; return *this; [all...] |
PassOwnPtr.h | 65 ValueType& operator*() const { ASSERT(m_ptr); return *m_ptr; } 66 PtrType operator->() const { ASSERT(m_ptr); return m_ptr; } 68 bool operator!() const { return !m_ptr; } 70 // This conversion operator allows implicit conversion to bool but not to other integer types. 72 operator UnspecifiedBoolType() const { return m_ptr ? &PassOwnPtr::m_ptr : 0; } 74 PassOwnPtr& operator=(const PassOwnPtr<T>&); 76 PassOwnPtr& operator=(std::nullptr_t) { clear(); return *this; } 78 template<typename U> PassOwnPtr& operator=(const PassOwnPtr<U>&); 84 PassOwnPtr& operator=(PtrType); 110 template<typename T> inline PassOwnPtr<T>& PassOwnPtr<T>::operator=(PtrType optr [all...] |
/frameworks/base/libs/hwui/ |
Vector.h | 43 void operator+=(const Vector2& v) { 48 void operator-=(const Vector2& v) { 53 void operator+=(const float v) { 58 void operator-=(const float v) { 63 void operator/=(float s) { 68 void operator*=(float s) { 73 Vector2 operator+(const Vector2& v) const { 77 Vector2 operator-(const Vector2& v) const { 81 Vector2 operator/(float s) const { 85 Vector2 operator*(float s) const [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); 31 HasMoveConstructor(HasMoveConstructor &&) noexcept; // expected-note {{copy assignment operator is implicitly deleted because 'HasMoveConstructor' has a user-declared move constructor}} 37 HasMoveAssignment & operator =(HasMoveAssignment &&) noexcept; 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...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/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/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/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/clang/include/clang/AST/ |
StmtIterator.h | 92 DERIVED& operator++() { 103 DERIVED operator++(int) { 105 operator++(); 109 bool operator==(const DERIVED& RHS) const { 113 bool operator!=(const DERIVED& RHS) const { 117 REFERENCE operator*() const { 121 REFERENCE operator->() const { return operator*(); } 159 operator bool() const { return !empty(); } 161 Stmt *operator->() const { return first.operator->(); [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...] |
/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/native/include/utils/ |
String8.h | 89 inline String8& operator=(const String8& other); 90 inline String8& operator=(const char* other); 92 inline String8& operator+=(const String8& other); 93 inline String8 operator+(const String8& other) const; 95 inline String8& operator+=(const char* other); 96 inline String8 operator+(const char* 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; 103 inline bool operator!=(const String8& other) const [all...] |