Searched refs:operator (Results 1 – 10 of 10) sorted by relevance
/bionic/libstdc++/include/ |
D | new | 14 void* operator new(std::size_t); 15 void* operator new[](std::size_t); 16 void operator delete(void*) throw(); 17 void operator delete[](void*) throw(); 18 void* operator new(std::size_t, const std::nothrow_t&); 19 void* operator new[](std::size_t, const std::nothrow_t&); 20 void operator delete(void*, const std::nothrow_t&) throw(); 21 void operator delete[](void*, const std::nothrow_t&) throw(); 23 inline void* operator new(std::size_t, void* p) { return p; } 24 inline void* operator new[](std::size_t, void* p) { return p; } [all …]
|
D | typeinfo | 20 bool operator==(type_info const & right) const; 21 bool operator!=(type_info const & right) const; 26 type_info & operator=(type_info const & right);
|
D | stl_pair.h | 78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 84 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 101 inline bool operator<=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 106 inline bool operator>=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
|
/bionic/libc/private/ |
D | UniquePtr.h | 25 void operator()(T* p) const { in operator() function 34 void operator()(T* p) const { 63 T& operator*() const { return *mPtr; } 64 T* operator->() const { return mPtr; } 90 template <typename T2> bool operator==(const UniquePtr<T2>& p) const = delete; 91 template <typename T2> bool operator!=(const UniquePtr<T2>& p) const = delete; 95 void operator=(const UniquePtr&) = delete; 114 T& operator[](size_t i) const { 137 void operator=(const UniquePtr&) = delete;
|
D | WriteProtected.h | 64 const T* operator->() { 68 const T& operator*() {
|
D | bionic_macros.h | 28 void operator=(const TypeName&) = delete
|
/bionic/linker/ |
D | linked_list.h | 36 LinkedListIterator<T>& operator=(const LinkedListIterator<T>& that) { 41 LinkedListIterator<T>& operator++() { 46 T* const operator*() { 50 bool operator==(const LinkedListIterator<T>& that) const { 54 bool operator!=(const LinkedListIterator<T>& that) const {
|
D | linker_allocator.h | 57 bool operator<(const small_object_page_record& one, const small_object_page_record& two);
|
/bionic/libc/malloc_debug/ |
D | MapData.h | 57 bool operator()(const MapEntry* a, const MapEntry* b) const { in operator() function
|
/bionic/tests/ |
D | math_data_test.h | 129 ::testing::AssertionResult operator()(const char* /* expected_expression */,
|