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

123456

/frameworks/native/include/ui/
H A DPoint.h31 // we don't provide copy-ctor and operator= on purpose
40 inline bool operator == (const Point& rhs) const {
43 inline bool operator != (const Point& rhs) const {
44 return !operator == (rhs);
51 // operator < defines an order which allows to use points in sorted
53 bool operator < (const Point& rhs) const {
57 inline Point& operator - () {
63 inline Point& operator += (const Point& rhs) {
68 inline Point& operator -= (const Point& rhs) {
74 const Point operator
[all...]
H A DRegion.h45 Region& operator = (const Region& rhs);
98 inline const Region operator | (const Region& rhs) const;
99 inline const Region operator ^ (const Region& rhs) const;
100 inline const Region operator & (const Region& rhs) const;
101 inline const Region operator - (const Region& rhs) const;
102 inline const Region operator + (const Point& pt) const;
104 inline Region& operator |= (const Region& rhs);
105 inline Region& operator ^= (const Region& rhs);
106 inline Region& operator &= (const Region& rhs);
107 inline Region& operator
[all...]
H A DTVecHelpers.h47 Impersonator& operator = (const TYPE& rhs) {
51 operator TYPE& () {
54 operator TYPE const& () const {
63 * BASE only needs to implement operator[] and size().
75 BASE<T>& operator += (const BASE<OTHER>& v) {
83 BASE<T>& operator -= (const BASE<OTHER>& v) {
96 BASE<T>& operator += (const BASE<T>& v) {
103 BASE<T>& operator -= (const BASE<T>& v) {
124 BASE<T> PURE operator +(const BASE<T>& lv, const BASE<RT>& rv) {
129 BASE<T> PURE operator
[all...]
H A DTMatHelpers.h181 * BASE only needs to implement operator[] and size().
190 BASE<T>& operator *= (T v) {
199 BASE<T>& operator /= (T v) {
209 friend BASE<T> PURE operator *(const BASE<T>& lhs, const BASE<U>& rhs) {
219 * - operator[]
H A DRect.h33 // we don't provide copy-ctor and operator= on purpose
114 inline bool operator == (const Rect& rhs) const {
119 inline bool operator != (const Rect& rhs) const {
120 return !operator == (rhs);
123 // operator < defines an order which allows to use rectangles in sorted
125 bool operator < (const Rect& rhs) const;
127 const Rect operator + (const Point& rhs) const;
128 const Rect operator - (const Point& rhs) const;
130 Rect& operator += (const Point& rhs) {
133 Rect& operator
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DFlags.h34 operator unsigned int () const
37 bool operator! () const
40 Flags operator& (int pMask ) const
43 Flags operator& (unsigned int pMask ) const
46 Flags operator& (Enum pMask ) const
49 Flags& operator&= (unsigned int pMask ) {
54 Flags& operator=(Flags pOther) {
59 Flags operator^ (Flags pOther) const
62 Flags operator^ (Enum pOther) const
65 Flags& operator
[all...]
/frameworks/base/libs/hwui/
H A DVector.h43 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*(floa
[all...]
H A DGradientCache.h53 GradientCacheEntry& operator=(const GradientCacheEntry& entry) {
68 bool operator==(const GradientCacheEntry& other) const {
72 bool operator!=(const GradientCacheEntry& other) const {
121 void operator()(GradientCacheEntry& shader, Texture*& texture);
/frameworks/base/media/mca/filterpacks/native/base/
H A Dvec_types.h28 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 / (cons
[all...]
/frameworks/rs/cpp/util/
H A DStrongPointer.h38 inline bool operator _op_ (const sp<T>& o) const { \
41 inline bool operator _op_ (const T* o) const { \
45 inline bool operator _op_ (const sp<U>& o) const { \
49 inline bool operator _op_ (const U* o) const { \
52 inline bool operator _op_ (const wp<T>& o) const { \
56 inline bool operator _op_ (const wp<U>& o) const { \
77 sp& operator = (T* other);
78 sp& operator = (const sp<T>& other);
80 template<typename U> sp& operator = (const sp<U>& other);
81 template<typename U> sp& operator
[all...]
/frameworks/rs/server/
H A DStrongPointer.h37 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);
77 sp& operator = (const sp<T>& other);
79 template<typename U> sp& operator = (const sp<U>& other);
80 template<typename U> sp& operator
[all...]
/frameworks/base/tools/aapt/
H A DStringPool.h59 inline bool operator<(const entry& o) const { return compare(o) < 0; }
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; }
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputAction.h38 bool operator<(const InputAction& pOther) const
44 InputAction& operator=(const InputAction& ); // DO_NOT_IMPLEMENT
/frameworks/rs/cpu_ref/linkloader/include/
H A DELFSectionHeaderTable.h47 ELFSectionHeaderTy const *operator[](size_t i) const {
51 ELFSectionHeaderTy *operator[](size_t i) {
H A DELFSectionRelTable.h49 ELFRelocTy const *operator[](size_t index) const {
53 ELFRelocTy *operator[](size_t index) {
H A DELFSectionStrTab.h43 char const *operator[](size_t index) const {
H A DELFSectionBits.h48 unsigned char &operator[](size_t index) {
52 unsigned char const &operator[](size_t index) const {
H A DELFSectionSymTab.h52 ELFSymbolTy const *operator[](size_t index) const {
56 ELFSymbolTy *operator[](size_t index) {
/frameworks/av/drm/common/
H A DDrmSupportInfo.cpp33 bool DrmSupportInfo::operator<(const DrmSupportInfo& drmSupportInfo) const {
35 // Note Vector doesn't overrides "<" operator
39 bool DrmSupportInfo::operator==(const DrmSupportInfo& drmSupportInfo) const {
41 // Note Vector doesn't overrides "==" operator
71 DrmSupportInfo& DrmSupportInfo::operator=(const DrmSupportInfo& drmSupportInfo) {
120 DrmSupportInfo::FileSuffixIterator& DrmSupportInfo::FileSuffixIterator::operator=(
144 DrmSupportInfo::MimeTypeIterator& DrmSupportInfo::MimeTypeIterator::operator=(
/frameworks/compile/mclinker/include/mcld/Support/
H A DPath.h100 bool operator==(const Path& pLHS,const Path& pRHS);
101 bool operator!=(const Path& pLHS,const Path& pRHS);
102 Path operator+(const Path& pLHS, const Path& pRHS);
113 operator<<(std::basic_ostream<Char, Traits>& pOS, const Path& pPath)
120 operator>>(std::basic_istream<Char, Traits>& pOS, Path& pPath)
126 operator<<(llvm::raw_ostream& pOS, const Path& pPath)
169 bool operator() (const mcld::sys::fs::Path& pX,const mcld::sys::fs::Path& pY) const {
/frameworks/native/libs/ui/
H A DRect.cpp37 bool Rect::operator <(const Rect& rhs) const {
72 const Rect Rect::operator +(const Point& rhs) const {
77 const Rect Rect::operator -(const Point& rhs) const {
/frameworks/compile/mclinker/lib/Support/
H A DDirectory.cpp79 Directory& Directory::operator=(const Directory& pCopy)
184 DirIterator& DirIterator::operator=(const DirIterator& pCopy)
192 DirIterator& DirIterator::operator++()
215 DirIterator DirIterator::operator++(int)
237 bool DirIterator::operator==(const DirIterator& y) const
252 bool DirIterator::operator!=(const DirIterator& y) const
254 return !this->operator==(y);
/frameworks/native/services/sensorservice/
H A Dvec.h145 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_
[all...]
H A Dmat.h155 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/base/include/androidfw/
H A DAssetDir.h70 const AssetDir& operator=(const AssetDir& src);
87 const FileInfo& operator= (const FileInfo& src) {
100 bool operator< (const FileInfo& rhs) const {
105 bool operator== (const FileInfo& rhs) const {

Completed in 9731 milliseconds

123456