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

/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...]
H A DVector.h55 /*! copy operator */
56 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const;
57 Vector<TYPE>& operator = (const Vector<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
198 Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) {
199 VectorImpl::operator = (rhs);
204 const Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) const {
205 VectorImpl::operator
[all...]
H A DTypeHelpers.h227 inline bool operator < (const key_value_pair_t& o) const {
H A DVectorImpl.cpp70 VectorImpl& VectorImpl::operator = (const VectorImpl& rhs)
442 SortedVectorImpl& SortedVectorImpl::operator = (const SortedVectorImpl& rhs)
444 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.cpp60 void operator()(ENGINE* p) const {
67 void operator()(EVP_PKEY* p) const {
74 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.cpp71 void operator()(BIO* p) const {
78 void operator()(EVP_PKEY* p) const {
85 void operator()(PKCS8_PRIV_KEY_INFO* p) const {

Completed in 162 milliseconds