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

12345678

/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.h62 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; }
66 inline bool operator>=(const entry& o) const { return compare(o) >= 0; }
67 inline bool operator>(const entry& o) const { return compare(o) > 0; }
H A DOutputSet.h41 bool operator<(const OutputEntry& o) const { return getPath() < o.mPath; }
42 bool operator==(const OutputEntry& o) const { return getPath() == o.mPath; }
/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);
101 inline const Region operator | (const Region& rhs) const;
102 inline const Region operator ^ (const Region& rhs) const;
103 inline const Region operator & (const Region& rhs) const;
104 inline const Region operator - (const Region& rhs) const;
105 inline const Region operator + (const Point& pt) const;
107 inline Region& operator |= (const Region& rhs);
108 inline Region& operator ^= (const Region& rhs);
109 inline Region& operator &= (const Region& rhs);
110 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.h31 operator unsigned int () const
34 bool operator! () const
37 Flags operator& (int pMask ) const
40 Flags operator& (unsigned int pMask ) const
43 Flags operator& (Enum pMask ) const
46 Flags& operator&= (unsigned int pMask ) {
51 Flags& operator=(Flags pOther) {
56 Flags operator^ (Flags pOther) const
59 Flags operator^ (Enum pOther) const
62 Flags& 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.h40 void operator+=(const Vector2& v) {
45 void operator-=(const Vector2& v) {
50 void operator+=(const float v) {
55 void operator-=(const float v) {
60 void operator/=(float s) {
65 void operator*=(float s) {
70 Vector2 operator+(const Vector2& v) const {
74 Vector2 operator-(const Vector2& v) const {
78 Vector2 operator/(float s) const {
82 Vector2 operator*(floa
[all...]
/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/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/compile/mclinker/include/mcld/MC/
H A DInputAction.h35 bool operator<(const InputAction& pOther) const
41 InputAction& operator=(const InputAction& ); // DO_NOT_IMPLEMENT
/frameworks/rs/cpu_ref/linkloader/include/
H A DELFSectionHeaderTable.h46 ELFSectionHeaderTy const *operator[](size_t i) const {
50 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 {
/frameworks/base/core/jni/android/graphics/
H A DPaintImpl.cpp37 Paint& Paint::operator=(const Paint& other) {
38 SkPaint::operator=(other);
46 bool operator==(const Paint& a, const Paint& b) {
/frameworks/compile/mclinker/include/mcld/ADT/GraphLite/
H A DDigraph.h32 bool operator==(const Node& pOther) const { return m_ID == pOther.m_ID; }
33 bool operator!=(const Node& pOther) const { return m_ID != pOther.m_ID; }
45 bool operator==(const Node& pOther) const;
46 bool operator!=(const Node& pOther) const;
/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.h97 bool operator==(const Path& pLHS,const Path& pRHS);
98 bool operator!=(const Path& pLHS,const Path& pRHS);
99 Path operator+(const Path& pLHS, const Path& pRHS);
110 operator<<(std::basic_ostream<Char, Traits>& pOS, const Path& pPath)
117 operator>>(std::basic_istream<Char, Traits>& pOS, Path& pPath)
123 operator<<(llvm::raw_ostream& pOS, const Path& pPath)
166 bool operator() (const mcld::sys::fs::Path& pX,const mcld::sys::fs::Path& pY) const {

Completed in 2837 milliseconds

12345678