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

/system/core/libpixelflinger/tinyutils/
H A Dsmartpointer.h22 inline bool operator _op_ (const sp<T>& o) const { \
25 inline bool operator _op_ (const T* o) const { \
29 inline bool operator _op_ (const sp<U>& o) const { \
33 inline bool operator _op_ (const U* o) const { \
54 sp& operator = (T* other);
55 sp& operator = (const sp<T>& other);
57 template<typename U> sp& operator = (const sp<U>& other);
58 template<typename U> sp& operator = (U* other);
65 inline T& operator* () const { return *m_ptr; }
66 inline T* operator
[all...]
H A DSortedVector.h46 /*! copy operator */
47 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const;
48 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs);
92 inline const TYPE& operator [] (size_t index) const;
93 //! alternate name for operator []
97 //! same as operator [], but allows to access the vector backward (from the end) with a negative index
161 SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) {
162 SortedVectorImpl::operator = (rhs);
167 const SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) const {
168 SortedVectorImpl::operator
[all...]
H A DVector.h46 /*! copy operator */
47 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const;
48 Vector<TYPE>& operator = (const Vector<TYPE>& rhs);
83 inline const TYPE& operator [] (size_t index) const;
84 //! alternate name for operator []
88 //! same as operator [], but allows to access the vector backward (from the end) with a negative index
189 Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) {
190 VectorImpl::operator = (rhs);
195 const Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) const {
196 VectorImpl::operator
[all...]
H A DTypeHelpers.h217 inline bool operator < (const key_value_pair_t& o) const {
H A DVectorImpl.cpp68 VectorImpl& VectorImpl::operator = (const VectorImpl& rhs)
440 SortedVectorImpl& SortedVectorImpl::operator = (const SortedVectorImpl& rhs)
442 return static_cast<SortedVectorImpl&>( VectorImpl::operator = (static_cast<const VectorImpl&>(rhs)) );
/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/
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/extras/tests/binder/benchmarks/
H A DbinderAddInts.cpp95 static ostream &operator<<(ostream &stream, const String16& str);
96 static ostream &operator<<(ostream &stream, const cpu_set_t& set);
361 static ostream &operator<<(ostream &stream, const String16& str)
374 static ostream &operator<<(ostream &stream, const cpu_set_t& set)
/system/security/keystore-engine/
H A Deng_keystore.cpp59 void operator()(ENGINE* p) const {
66 void operator()(EVP_PKEY* p) const {
73 void operator()(RSA* p) const {
/system/security/softkeymaster/
H A Dkeymaster_openssl.cpp40 void operator()(BIGNUM* p) const {
47 void operator()(EVP_PKEY* p) const {
54 void operator()(PKCS8_PRIV_KEY_INFO* p) const {
61 void operator()(RSA* p) const {
/system/core/include/private/pixelflinger/
H A Dggl_context.h240 inline bool operator == (const needs_t& rhs) const {
246 inline bool operator != (const needs_t& rhs) const {
247 return !operator == (rhs);
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.cpp1075 bool RegisterAllocator::RegisterFile::operator == (const RegisterFile& rhs) const
H A DGGLAssembler.h62 bool operator == (const RegisterFile& rhs) const;
63 bool operator != (const RegisterFile& rhs) const {
64 return !operator == (rhs);
/system/security/keystore/
H A Dkeystore.cpp65 void operator()(BIO* p) const {
72 void operator()(EVP_PKEY* p) const {
79 void operator()(PKCS8_PRIV_KEY_INFO* p) const {

Completed in 660 milliseconds