Searched defs:operator (Results 1 - 25 of 44) sorted by relevance

12

/system/core/include/utils/
H A DString16.h81 inline String16& operator=(const String16& other);
83 inline String16& operator+=(const String16& other);
84 inline String16 operator+(const String16& other) const;
105 inline bool operator<(const String16& other) const;
106 inline bool operator<=(const String16& other) const;
107 inline bool operator==(const String16& other) const;
108 inline bool operator!=(const String16& other) const;
109 inline bool operator>=(const String16& other) const;
110 inline bool operator>(const String16& other) const;
112 inline bool operator<(cons
[all...]
H A DString8.h98 inline String8& operator=(const String8& other);
99 inline String8& operator=(const char* other);
101 inline String8& operator+=(const String8& other);
102 inline String8 operator+(const String8& other) const;
104 inline String8& operator+=(const char* other);
105 inline String8 operator+(const char* other) const;
109 inline bool operator<(const String8& other) const;
110 inline bool operator<=(const String8& other) const;
111 inline bool operator==(const String8& other) const;
112 inline bool operator!
[all...]
H A DStrongPointer.h34 inline bool operator _op_ (const sp<T>& o) const { \
37 inline bool operator _op_ (const T* o) const { \
41 inline bool operator _op_ (const sp<U>& o) const { \
45 inline bool operator _op_ (const U* o) const { \
48 inline bool operator _op_ (const wp<T>& o) const { \
52 inline bool operator _op_ (const wp<U>& o) const { \
72 sp& operator = (T* other);
73 sp& operator = (const sp<T>& other);
75 template<typename U> sp& operator = (const sp<U>& other);
76 template<typename U> sp& operator
[all...]
H A DBitSet.h132 inline bool operator== (const BitSet32& other) const { return value == other.value; }
133 inline bool operator!= (const BitSet32& other) const { return value != other.value; }
134 inline BitSet32 operator& (const BitSet32& other) const {
137 inline BitSet32& operator&= (const BitSet32& other) {
141 inline BitSet32 operator| (const BitSet32& other) const {
144 inline BitSet32& operator|= (const BitSet32& other) {
272 inline bool operator== (const BitSet64& other) const { return value == other.value; }
273 inline bool operator!= (const BitSet64& other) const { return value != other.value; }
274 inline BitSet64 operator& (const BitSet64& other) const {
277 inline BitSet64& operator
[all...]
H A DFunctor.h28 virtual status_t operator ()(int /*what*/, void* /*data*/) { return NO_ERROR; }
H A DList.h21 // Objects are copied into the list with the '=' operator or with copy-
38 * Objects added to the list are copied using the assignment operator,
108 * Dereference operator. Used to get at the juicy insides.
110 _Type& operator*() const { return mpNode->getRef(); }
111 _Type* operator->() const { return &(mpNode->getRef()); }
116 inline bool operator==(const _Iter& right) const {
119 inline bool operator!=(const _Iter& right) const {
126 inline bool operator==(const OTHER& right) const {
130 inline bool operator!=(const OTHER& right) const {
136 inline _Iter& operator
[all...]
H A DSortedVector.h50 /*! copy operator */
51 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const;
52 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs);
96 inline const TYPE& operator [] (size_t index) const;
97 //! alternate name for operator []
165 SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) {
166 SortedVectorImpl::operator = (rhs);
171 const SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) const {
172 SortedVectorImpl::operator = (rhs);
188 const TYPE& SortedVector<TYPE>::operator[](size_
[all...]
/system/core/include/log/
H A Dlog_read.h68 bool operator== (const timespec &T) const
73 bool operator!= (const timespec &T) const
77 bool operator< (const timespec &T) const
83 bool operator>= (const timespec &T) const
87 bool operator> (const timespec &T) const
93 bool operator<= (const timespec &T) const
97 log_time operator-= (const timespec &T);
98 log_time operator- (const timespec &T) const
105 bool operator== (const log_time &T) const
109 bool operator!
[all...]
H A Dlogger.h89 bool operator== (const log_msg &T) const
93 bool operator!= (const log_msg &T) const
97 bool operator< (const log_msg &T) const
103 bool operator>= (const log_msg &T) const
107 bool operator> (const log_msg &T) const
113 bool operator<= (const log_msg &T) const
/system/keymaster/
H A Dgoogle_keymaster_test_utils.cpp19 std::ostream& operator<<(std::ostream& os, const keymaster_key_param_t& param) {
56 bool operator==(const keymaster_key_param_t& a, const keymaster_key_param_t& b) {
89 bool operator==(const AuthorizationSet& a, const AuthorizationSet& b) {
99 std::ostream& operator<<(std::ostream& os, const AuthorizationSet& set) {
H A Dopenssl_utils.h24 void operator()(EVP_PKEY* p) const { EVP_PKEY_free(p); }
28 void operator()(BIGNUM* p) const { BN_free(p); }
H A Drsa_operation.cpp26 void operator()(RSA* p) const { RSA_free(p); }
H A Dkey.cpp29 void operator()(PKCS8_PRIV_KEY_INFO* p) const { PKCS8_PRIV_KEY_INFO_free(p); }
H A Dasymmetric_key.h80 void operator()(RSA* p) { RSA_free(p); }
108 void operator()(DSA* p) { DSA_free(p); }
137 void operator()(EC_KEY* p) { EC_KEY_free(p); }
141 void operator()(EC_GROUP* p) { EC_GROUP_free(p); }
/system/core/libpixelflinger/codeflinger/tinyutils/
H A Dsmartpointer.h31 inline bool operator _op_ (const sp<T>& o) const { \
34 inline bool operator _op_ (const T* o) const { \
38 inline bool operator _op_ (const sp<U>& o) const { \
42 inline bool operator _op_ (const U* o) const { \
63 sp& operator = (T* other);
64 sp& operator = (const sp<T>& other);
66 template<typename U> sp& operator = (const sp<U>& other);
67 template<typename U> sp& operator = (U* other);
74 inline T& operator* () const { return *m_ptr; }
75 inline T* operator
[all...]
H A DSortedVector.h47 /*! copy operator */
48 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const;
49 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs);
93 inline const TYPE& operator [] (size_t index) const;
94 //! alternate name for operator []
98 //! same as operator [], but allows to access the vector backward (from the end) with a negative index
162 SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) {
163 SortedVectorImpl::operator = (rhs);
168 const SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) const {
169 SortedVectorImpl::operator
[all...]
/system/security/keystore-engine/
H A Dmethods.h33 void operator()(DSA* p) const {
40 void operator()(EC_KEY* p) const {
47 void operator()(RSA* p) const {
H A Ddsa_meth.cpp44 void operator()(DSA_SIG* p) const {
H A Decdsa_meth.cpp48 void operator()(ECDSA_SIG* p) const {
/system/core/include/sysutils/
H A DList.h21 // Objects are copied into the list with the '=' operator or with copy-
39 * Objects added to the list are copied using the assignment operator,
109 * Dereference operator. Used to get at the juicy insides.
111 _Type& operator*() const { return mpNode->getRef(); }
112 _Type* operator->() const { return &(mpNode->getRef()); }
117 inline bool operator==(const _Iter& right) const {
120 inline bool operator!=(const _Iter& right) const {
127 inline bool operator==(const OTHER& right) const {
131 inline bool operator!=(const OTHER& right) const {
137 inline _Iter& operator
[all...]
/system/netd/server/
H A DList.h21 // Objects are copied into the list with the '=' operator or with copy-
39 * Objects added to the list are copied using the assignment operator,
109 * Dereference operator. Used to get at the juicy insides.
111 _Type& operator*() const { return mpNode->getRef(); }
112 _Type* operator->() const { return &(mpNode->getRef()); }
117 inline bool operator==(const _Iter& right) const {
120 inline bool operator!=(const _Iter& right) const {
127 inline bool operator==(const OTHER& right) const {
131 inline bool operator!=(const OTHER& right) const {
137 inline _Iter& operator
[all...]
/system/core/liblog/
H A Dlog_time.cpp136 log_time log_time::operator-= (const timespec &T) {
153 log_time log_time::operator-= (const log_time &T) {
/system/core/logcat/tests/
H A Dlogcat_benchmark.cpp57 bool operator< (timestamp &T)
/system/core/libutils/tests/
H A DLruCache_test.cpp43 bool operator ==(const ComplexKey& other) const {
47 bool operator !=(const ComplexKey& other) const {
86 void operator()(SimpleKey& k, StringValue& v) {
/system/keymaster/include/keymaster/
H A Dkeymaster_tags.h36 * classes include a conversion operator to keymaster_tag_t, they can be used anywhere a
113 inline operator keymaster_tag_t() { return tag; }
138 inline operator keymaster_tag_t() { return tag; }

Completed in 1436 milliseconds

12