/frameworks/native/include/utils/ |
D | String8.h | 89 inline String8& operator=(const String8& other); variable 90 inline String8& operator=(const char* other); variable 92 inline String8& operator+=(const String8& other); 93 inline String8 operator+(const String8& other) const; 95 inline String8& operator+=(const char* other); 96 inline String8 operator+(const char* other) const; 100 inline bool operator<(const String8& other) const; 101 inline bool operator<=(const String8& other) const; 102 inline bool operator==(const String8& other) const; 103 inline bool operator!=(const String8& other) const; [all …]
|
D | String16.h | 72 inline String16& operator=(const String16& other); variable 74 inline String16& operator+=(const String16& other); 75 inline String16 operator+(const String16& other) const; 96 inline bool operator<(const String16& other) const; 97 inline bool operator<=(const String16& other) const; 98 inline bool operator==(const String16& other) const; 99 inline bool operator!=(const String16& other) const; 100 inline bool operator>=(const String16& other) const; 101 inline bool operator>(const String16& other) const; 103 inline bool operator<(const char16_t* other) const; [all …]
|
D | TextOutput.h | 66 TextOutput& operator<<(TextOutput& to, const char* str); 67 TextOutput& operator<<(TextOutput& to, char); // writes raw character 68 TextOutput& operator<<(TextOutput& to, bool); 69 TextOutput& operator<<(TextOutput& to, int); 70 TextOutput& operator<<(TextOutput& to, long); 71 TextOutput& operator<<(TextOutput& to, unsigned int); 72 TextOutput& operator<<(TextOutput& to, unsigned long); 73 TextOutput& operator<<(TextOutput& to, long long); 74 TextOutput& operator<<(TextOutput& to, unsigned long long); 75 TextOutput& operator<<(TextOutput& to, float); [all …]
|
D | CallStack.h | 41 CallStack& operator = (const CallStack& rhs); variable 43 bool operator == (const CallStack& rhs) const; 44 bool operator != (const CallStack& rhs) const; 45 bool operator < (const CallStack& rhs) const; 46 bool operator >= (const CallStack& rhs) const; 47 bool operator > (const CallStack& rhs) const; 48 bool operator <= (const CallStack& rhs) const; 50 const void* operator [] (int index) const;
|
D | StrongPointer.h | 37 inline bool operator _op_ (const sp<T>& o) const { \ 40 inline bool operator _op_ (const T* o) const { \ 44 inline bool operator _op_ (const sp<U>& o) const { \ 48 inline bool operator _op_ (const U* o) const { \ 51 inline bool operator _op_ (const wp<T>& o) const { \ 55 inline bool operator _op_ (const wp<U>& o) const { \ 76 sp& operator = (T* other); variable 77 sp& operator = (const sp<T>& other); variable 79 template<typename U> sp& operator = (const sp<U>& other); variable 80 template<typename U> sp& operator = (U* other); variable [all …]
|
D | RefBase.h | 39 inline bool operator _op_ (const sp<T>& o) const { \ 42 inline bool operator _op_ (const T* o) const { \ 46 inline bool operator _op_ (const sp<U>& o) const { \ 50 inline bool operator _op_ (const U* o) const { \ 156 RefBase& operator=(const RefBase& o); variable 216 wp& operator = (T* other); variable 217 wp& operator = (const wp<T>& other); variable 218 wp& operator = (const sp<T>& other); variable 220 template<typename U> wp& operator = (U* other); variable 221 template<typename U> wp& operator = (const wp<U>& other); variable [all …]
|
D | UniquePtr.h | 35 void operator()(T* p) const { in operator() function 44 void operator()(T* p) const { 69 T& operator*() const { return *mPtr; } 70 T* operator->() const { return mPtr; } 96 template <typename T2> bool operator==(const UniquePtr<T2>& p) const; 97 template <typename T2> bool operator!=(const UniquePtr<T2>& p) const; 101 void operator=(const UniquePtr&); 116 T& operator[](size_t i) const { 139 void operator=(const UniquePtr&); 163 void operator()(int* p) {
|
D | List.h | 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++() { // pre-increment 140 const _Iter operator++(int) { // post-increment 145 inline _Iter& operator--() { // pre-increment 149 const _Iter operator--(int) { // post-increment [all …]
|
D | Vector.h | 57 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const; variable 58 Vector<TYPE>& operator = (const Vector<TYPE>& rhs); variable 60 const Vector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const; variable 61 Vector<TYPE>& operator = (const SortedVector<TYPE>& rhs); variable 96 inline const TYPE& operator [] (size_t index) const; 238 Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) { 239 VectorImpl::operator = (rhs); 244 const Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) const { 245 VectorImpl::operator = (static_cast<const VectorImpl&>(rhs)); 250 Vector<TYPE>& Vector<TYPE>::operator = (const SortedVector<TYPE>& rhs) { [all …]
|
D | BlobCache.h | 115 void operator=(const BlobCache&); variable 134 bool operator<(const Blob& rhs) const; 142 void operator=(const Blob&); variable 162 bool operator<(const CacheEntry& rhs) const; 163 const CacheEntry& operator=(const CacheEntry&); variable
|
/frameworks/native/include/ui/ |
D | Region.h | 42 Region& operator = (const Region& rhs); variable 95 inline const Region operator | (const Region& rhs) const; 96 inline const Region operator ^ (const Region& rhs) const; 97 inline const Region operator & (const Region& rhs) const; 98 inline const Region operator - (const Region& rhs) const; 99 inline const Region operator + (const Point& pt) const; 101 inline Region& operator |= (const Region& rhs); 102 inline Region& operator ^= (const Region& rhs); 103 inline Region& operator &= (const Region& rhs); 104 inline Region& operator -= (const Region& rhs); [all …]
|
D | Point.h | 39 inline bool operator == (const Point& rhs) const { 42 inline bool operator != (const Point& rhs) const { 43 return !operator == (rhs); 52 bool operator < (const Point& rhs) const { 56 inline Point& operator - () { 62 inline Point& operator += (const Point& rhs) { 67 inline Point& operator -= (const Point& rhs) { 73 const Point operator + (const Point& rhs) const { 77 const Point operator - (const Point& rhs) const {
|
D | Rect.h | 64 operator = (rhs); in set() 109 inline bool operator == (const Rect& rhs) const { 114 inline bool operator != (const Rect& rhs) const { 115 return !operator == (rhs); 120 bool operator < (const Rect& rhs) const; 134 Rect& operator += (const Point& rhs) { 137 Rect& operator -= (const Point& rhs) { 140 const Rect operator + (const Point& rhs) const; 141 const Rect operator - (const Point& rhs) const;
|
/frameworks/base/libs/hwui/ |
D | Vector.h | 43 void operator+=(const Vector2& v) { 48 void operator-=(const Vector2& v) { 53 void operator+=(const float v) { 58 void operator-=(const float v) { 63 void operator/=(float s) { 68 void operator*=(float s) { 73 Vector2 operator+(const Vector2& v) const { 77 Vector2 operator-(const Vector2& v) const { 81 Vector2 operator/(float s) const { 85 Vector2 operator*(float s) const {
|
/frameworks/base/services/sensorservice/ |
D | vec.h | 145 inline VLHS<TYPE, SIZE> PURE operator + ( 157 inline VLHS<TYPE, SIZE> PURE operator - ( 168 inline VEC<TYPE, SIZE> PURE operator * ( 179 inline VEC<TYPE, SIZE> PURE operator * ( 245 vec<TYPE, SIZE> PURE operator - (const vec<TYPE, SIZE>& lhs) { 260 inline const TYPE& operator[](size_t i) const { return v[i]; } 261 inline TYPE& operator[](size_t i) { return v[i]; } 269 inline const float& operator[](size_t i) const { return v[i]; } 270 inline float& operator[](size_t i) { return v[i]; } 280 inline const float& operator[](size_t i) const { return v[i]; } [all …]
|
D | mat.h | 155 mat& operator=(const mat& rhs) { 156 base::operator=(rhs); 160 mat& operator=(const base& rhs) { 161 base::operator=(rhs); 165 mat& operator=(pTYPE rhs) { 172 friend inline mat PURE operator + (const mat& lhs, const mat& rhs) { 177 friend inline mat PURE operator - (const mat& lhs, const mat& rhs) { 185 friend mat PURE operator * ( 192 friend vec<TYPE, R> PURE operator * ( 198 friend mat PURE operator * ( [all …]
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/ |
D | m4vh263_decoder_pv_types.h | 55 int32 operator=(int32 aStatus); variable 56 int32 operator==(int32 aStatus) const; 57 int32 operator!=(int32 aStatus) const; 58 int32 operator>=(int32 aStatus) const; 59 int32 operator<=(int32 aStatus) const; 60 int32 operator>(int32 aStatus) const; 61 int32 operator<(int32 aStatus) const;
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
D | StringHash.h | 43 size_t operator()(const llvm::StringRef& pKey) const in operator() function 55 size_t operator()(const llvm::StringRef& pKey) const 75 size_t operator()(const llvm::StringRef& pKey) const 92 size_t operator()(const llvm::StringRef& pKey) const 118 size_t operator()(const llvm::StringRef& pKey) const 139 size_t operator()(const llvm::StringRef& pKey) const 158 size_t operator()(const llvm::StringRef& pKey) const 175 size_t operator()(const llvm::StringRef& pKey) const 193 size_t operator()(const llvm::StringRef& pKey) const 211 size_t operator()(const llvm::StringRef& pKey) const [all …]
|
/frameworks/base/media/mca/filterpacks/native/base/ |
D | vec_types.h | 28 VecBase<T,dim>& operator = (const VecBase<T, dim> &x) { 32 T & operator [] (int i) { 36 const T & operator [] (int i) const { 52 Vec<T,dim>& operator = (const Vec<T, dim> &x) { 59 Vec<T, dim> operator + (const Vec<T,dim> &x, const Vec<T,dim> &y) { 67 Vec<T, dim> operator - (const Vec<T,dim> &x, const Vec<T,dim> &y) { 75 Vec<T, dim> operator * (const Vec<T,dim> &x, const Vec<T,dim> &y) { 83 Vec<T, dim> operator / (const Vec<T,dim> &x, const Vec<T,dim> &y) { 99 Vec<T, dim> operator * (const Vec<T,dim> &x, T scale) { 107 Vec<T, dim> operator / (const Vec<T,dim> &x, T scale) { [all …]
|
/frameworks/native/services/surfaceflinger/ |
D | Transform.h | 66 float const* operator [] (int i) const; // returns column i 81 Transform operator * (const Transform& rhs) const; 93 inline float operator [] (int i) const { return v[i]; } 94 inline float& operator [] (int i) { return v[i]; } 102 inline float operator [] (int i) const { return v[i]; } 103 inline float& operator [] (int i) { return v[i]; } 107 inline const vec3& operator [] (int i) const { return v[i]; } 108 inline vec3& operator [] (int i) { return v[i]; }
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | Directory.h | 61 Directory& operator=(const Directory& pCopy); variable 132 DirIterator& operator=(const DirIterator& pCopy); variable 134 DirIterator& operator++(); 135 DirIterator operator++(int); 142 bool operator==(const DirIterator& y) const; 143 bool operator!=(const DirIterator& y) const;
|
D | Path.h | 105 bool operator==(const Path& pLHS,const Path& pRHS); 106 bool operator!=(const Path& pLHS,const Path& pRHS); 124 std::ostream &operator<<(std::ostream& pOS, const Path& pPath); 126 std::istream &operator>>(std::istream& pOS, Path& pPath); 128 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const Path &pPath); 169 bool operator() (const mcld::sys::fs::Path& pX,const mcld::sys::fs::Path& pY) const {
|
/frameworks/av/include/drm/ |
D | DrmSupportInfo.h | 44 MimeTypeIterator& operator=(const MimeTypeIterator& iterator); variable 67 FileSuffixIterator& operator=(const FileSuffixIterator& iterator); variable 95 DrmSupportInfo& operator=(const DrmSupportInfo& drmSupportInfo); variable 96 bool operator<(const DrmSupportInfo& drmSupportInfo) const; 97 bool operator==(const DrmSupportInfo& drmSupportInfo) const;
|
/frameworks/base/tools/aapt/ |
D | StringPool.h | 60 inline bool operator<(const entry& o) const { return compare(o) < 0; } 61 inline bool operator<=(const entry& o) const { return compare(o) <= 0; } 62 inline bool operator==(const entry& o) const { return compare(o) == 0; } 63 inline bool operator!=(const entry& o) const { return compare(o) != 0; } 64 inline bool operator>=(const entry& o) const { return compare(o) >= 0; } 65 inline bool operator>(const entry& o) const { return compare(o) > 0; }
|
/frameworks/compile/linkloader/utils/ |
D | serialize.h | 103 void operator&(char (&array)[size]) { 109 void operator&(unsigned char (&array)[size]) { 115 void operator&(T &v) { 126 operator void const *() const { 130 bool operator!() const {
|