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

123456789

/frameworks/base/tools/aapt2/
H A DConfigDescription.h58 ConfigDescription& operator=(const android::ResTable_config& o);
59 ConfigDescription& operator=(const ConfigDescription& o);
60 ConfigDescription& operator=(ConfigDescription&& o);
62 bool operator<(const ConfigDescription& o) const;
63 bool operator<=(const ConfigDescription& o) const;
64 bool operator==(const ConfigDescription& o) const;
65 bool operator!=(const ConfigDescription& o) const;
66 bool operator>=(const ConfigDescription& o) const;
67 bool operator>(const ConfigDescription& o) const;
88 inline ConfigDescription& ConfigDescription::operator
[all...]
H A DLocale.h64 inline bool operator<(const LocaleValue& o) const;
65 inline bool operator<=(const LocaleValue& o) const;
66 inline bool operator==(const LocaleValue& o) const;
67 inline bool operator!=(const LocaleValue& o) const;
68 inline bool operator>=(const LocaleValue& o) const;
69 inline bool operator>(const LocaleValue& o) const;
90 bool LocaleValue::operator<(const LocaleValue& o) const {
94 bool LocaleValue::operator<=(const LocaleValue& o) const {
98 bool LocaleValue::operator==(const LocaleValue& o) const {
102 bool LocaleValue::operator!
[all...]
H A DSource.h53 inline ::std::ostream& operator<<(::std::ostream& out, const Source& source) {
61 inline bool operator==(const Source& lhs, const Source& rhs) {
65 inline bool operator<(const Source& lhs, const Source& rhs) {
/frameworks/base/tools/aapt/
H A DConfigDescription.h41 ConfigDescription& operator=(const android::ResTable_config& o) {
47 ConfigDescription& operator=(const ConfigDescription& o) {
52 inline bool operator<(const ConfigDescription& o) const { return compare(o) < 0; }
53 inline bool operator<=(const ConfigDescription& o) const { return compare(o) <= 0; }
54 inline bool operator==(const ConfigDescription& o) const { return compare(o) == 0; }
55 inline bool operator!=(const ConfigDescription& o) const { return compare(o) != 0; }
56 inline bool operator>=(const ConfigDescription& o) const { return compare(o) >= 0; }
57 inline bool operator>(const ConfigDescription& o) const { return compare(o) > 0; }
H A DStringPool.h60 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; }
146 bool operator()(size_t l, size_t r);
/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.h46 Region& operator = (const Region& rhs);
103 inline const Region operator | (const Region& rhs) const;
104 inline const Region operator ^ (const Region& rhs) const;
105 inline const Region operator & (const Region& rhs) const;
106 inline const Region operator - (const Region& rhs) const;
107 inline const Region operator + (const Point& pt) const;
109 inline Region& operator |= (const Region& rhs);
110 inline Region& operator ^= (const Region& rhs);
111 inline Region& operator &= (const Region& rhs);
112 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...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DFlags.h26 operator unsigned int() const { return m_Data; }
28 bool operator!() const { return (m_Data == 0x0); }
30 Flags operator&(int pMask) const { return Flags(m_Data & pMask); }
32 Flags operator&(unsigned int pMask) const { return Flags(m_Data & pMask); }
34 Flags operator&(Enum pMask) const { return Flags(m_Data & pMask); }
36 Flags& operator&=(unsigned int pMask) {
41 Flags& operator=(Flags pOther) {
46 Flags operator^(Flags pOther) const { return Flags(m_Data ^ pOther.m_Data); }
48 Flags operator^(Enum pOther) const { return Flags(m_Data ^ pOther); }
50 Flags& operator
[all...]
/frameworks/av/include/media/
H A DModulo.h102 Modulo<T> operator +=(const Modulo<S> &other) {
110 Modulo<T> operator -=(const Modulo<S> &other) {
120 const Modulo<T> operator +(const Modulo<S> &other) const {
127 const Modulo<T> operator -(const Modulo<S> &other) const {
139 bool operator >(const Modulo<S> &other) const {
146 bool operator >=(const Modulo<S> &other) const {
153 bool operator ==(const Modulo<S> &other) const {
160 bool operator <=(const Modulo<S> &other) const {
167 bool operator <(const Modulo<S> &other) const {
177 Modulo<T> operator
[all...]
H A DRingBuffer.h51 iterator& operator++();
53 iterator operator++(int);
55 bool operator==(const iterator& rhs);
57 bool operator!=(const iterator& rhs);
59 T& operator*();
61 T* operator->();
77 const_iterator& operator++();
79 const_iterator operator++(int);
81 bool operator==(const const_iterator& rhs);
83 bool operator!
[all...]
/frameworks/base/tools/split-select/
H A DSplitDescription.h35 inline bool operator<(const SplitDescription& rhs) const;
36 inline bool operator==(const SplitDescription& rhs) const;
37 inline bool operator!=(const SplitDescription& rhs) const;
50 bool SplitDescription::operator<(const SplitDescription& rhs) const {
54 bool SplitDescription::operator==(const SplitDescription& rhs) const {
58 bool SplitDescription::operator!=(const SplitDescription& rhs) const {
/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...]
/frameworks/av/camera/ndk/impl/
H A DACaptureRequest.h27 bool operator == (const ACameraOutputTarget& other) const {
30 bool operator != (const ACameraOutputTarget& other) const {
33 bool operator < (const ACameraOutputTarget& other) const {
36 bool operator > (const ACameraOutputTarget& other) const {
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DUtils.cpp21 bool operator<(const Vector<uint8_t> &lhs, const Vector<uint8_t> &rhs) {
/frameworks/base/include/androidfw/
H A DTypeWrappers.h30 iterator& operator=(const iterator& rhs) {
35 bool operator==(const iterator& rhs) const {
39 bool operator!=(const iterator& rhs) const {
43 iterator operator++(int) {
45 operator++();
49 const ResTable_entry* operator->() const {
50 return operator*();
57 iterator& operator++();
58 const ResTable_entry* operator*() const;
/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/base/libs/androidfw/
H A DTypeWrappers.cpp21 TypeVariant::iterator& TypeVariant::iterator::operator++() {
29 const ResTable_entry* TypeVariant::iterator::operator*() const {
/frameworks/base/libs/androidfw/tests/
H A DTestHelpers.h11 static inline ::std::ostream& operator<<(::std::ostream& out, const android::String8& str) {
15 static inline ::std::ostream& operator<<(::std::ostream& out, const android::String16& str) {
23 static inline bool operator==(const android::ResTable_config& a, const android::ResTable_config& b) {
27 static inline ::std::ostream& operator<<(::std::ostream& out, const android::ResTable_config& c) {
/frameworks/base/libs/hwui/hwui/
H A DPaintImpl.cpp40 Paint& Paint::operator=(const Paint& other) {
41 SkPaint::operator=(other);
50 bool operator==(const Paint& a, const Paint& b) {
/frameworks/av/include/camera/camera2/
H A DOutputConfiguration.h60 bool operator == (const OutputConfiguration& other) const {
65 bool operator != (const OutputConfiguration& other) const {
68 bool operator < (const OutputConfiguration& other) const {
76 bool operator > (const OutputConfiguration& other) const {
/frameworks/base/tools/aapt/tests/
H A DTestHelper.h25 * Stream operator for nicely printing String8's in gtest output.
27 inline std::ostream& operator<<(std::ostream& stream, const String8& str) {
/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/aapt2/util/
H A DStringPiece.h47 BasicStringPiece<TChar>& operator=(const BasicStringPiece<TChar>& rhs);
62 bool operator<(const BasicStringPiece<TChar>& rhs) const;
63 bool operator>(const BasicStringPiece<TChar>& rhs) const;
64 bool operator==(const BasicStringPiece<TChar>& rhs) const;
65 bool operator!=(const BasicStringPiece<TChar>& rhs) const;
112 inline BasicStringPiece<TChar>& BasicStringPiece<TChar>::operator=(
195 inline ::std::ostream& operator<<(::std::ostream& out, const BasicStringPiece<char16_t>& str) {
220 inline bool BasicStringPiece<TChar>::operator<(const BasicStringPiece<TChar>& rhs) const {
225 inline bool BasicStringPiece<TChar>::operator>(const BasicStringPiece<TChar>& rhs) const {
230 inline bool BasicStringPiece<TChar>::operator
[all...]

Completed in 2950 milliseconds

123456789