Home
last modified time | relevance | path

Searched refs:operator (Results 1 – 10 of 10) sorted by relevance

/bionic/libstdc++/include/
Dnew14 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 …]
Dtypeinfo20 bool operator==(type_info const & right) const;
21 bool operator!=(type_info const & right) const;
26 type_info & operator=(type_info const & right);
Dstl_pair.h78 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/
DUniquePtr.h25 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;
DWriteProtected.h64 const T* operator->() {
68 const T& operator*() {
Dbionic_macros.h28 void operator=(const TypeName&) = delete
/bionic/linker/
Dlinked_list.h36 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 {
Dlinker_allocator.h57 bool operator<(const small_object_page_record& one, const small_object_page_record& two);
/bionic/libc/malloc_debug/
DMapData.h57 bool operator()(const MapEntry* a, const MapEntry* b) const { in operator() function
/bionic/tests/
Dmath_data_test.h129 ::testing::AssertionResult operator()(const char* /* expected_expression */,