Searched defs:operator (Results 1 - 25 of 126) sorted by last modified time

123456

/frameworks/support/renderscript/v8/rs_support/
H A DrsObjectBase.h119 ObjectBaseRef & operator= (const ObjectBaseRef &ref) {
155 inline T * operator-> () const {
/frameworks/rs/
H A DrsObjectBase.h119 ObjectBaseRef & operator= (const ObjectBaseRef &ref) {
155 inline T * operator-> () const {
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp178 bool operator()(const std::pair<const Value*, unsigned> &LHS,
/frameworks/compile/slang/BitWriter_2_9_func/
H A DValueEnumerator.cpp178 bool operator()(const std::pair<const Value*, unsigned> &LHS,
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
H A Dsparse_weight_vector.h48 void operator=(const SparseWeightVector<Key, Hash> &other) {
174 // if it does not find the key through [] operator. It implements a lookup
190 std::ostream& operator<<(std::ostream &stream,
/frameworks/native/include/binder/
H A DParcel.h209 Parcel& operator=(const Parcel& o);
319 inline TextOutput& operator<<(TextOutput& to, const Parcel& parcel)
H A DPermissionCache.h46 inline bool operator < (const Entry& e) const {
/frameworks/native/include/private/ui/
H A DRegionHelper.h64 virtual void operator()(const RECT& rect) = 0;
74 void operator()(region_rasterizer& rasterizer) {
/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 DRect.h33 // we don't provide copy-ctor and operator= on purpose
65 operator = (rhs);
110 inline bool operator == (const Rect& rhs) const {
115 inline bool operator != (const Rect& rhs) const {
116 return !operator == (rhs);
119 // operator < defines an order which allows to use rectangles in sorted
121 bool operator < (const Rect& rhs) const;
135 Rect& operator += (const Point& rhs) {
138 Rect& operator -= (const Point& rhs) {
141 const Rect operator
[all...]
H A DRegion.h43 Region& operator = (const Region& rhs);
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 Region& rhs) const;
100 inline const Region operator + (const Point& pt) const;
102 inline Region& operator |= (const Region& rhs);
103 inline Region& operator ^= (const Region& rhs);
104 inline Region& operator &= (const Region& rhs);
105 inline Region& operator
[all...]
/frameworks/native/include/utils/
H A DBasicHashtable.h159 * bool operator==(const TKey& other) const; // return true if equal
160 * bool operator!=(const TKey& other) const; // return true if unequal
196 inline BasicHashtable<TKey, TEntry>& operator =(const BasicHashtable<TKey, TEntry> & other) {
H A DBitSet.h102 inline bool operator== (const BitSet32& other) const { return value == other.value; }
103 inline bool operator!= (const BitSet32& other) const { return value != other.value; }
H A DFunctor.h28 virtual status_t operator ()(int what, void* data) { return NO_ERROR; }
H A DList.h21 // Objects are copied into the list with the '=' operator or with copy-
38 * Objects added to the list are copied using the assignment operator,
108 * Dereference operator. Used to get at the juicy insides.
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
[all...]
H A DSortedVector.h50 /*! copy operator */
51 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const;
52 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs);
96 inline const TYPE& operator [] (size_t index) const;
97 //! alternate name for operator []
165 SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) {
166 SortedVectorImpl::operator = (rhs);
171 const SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) const {
172 SortedVectorImpl::operator = (rhs);
188 const TYPE& SortedVector<TYPE>::operator[](size_
[all...]
H A DString16.h72 inline String16& operator=(const String16& other);
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<(cons
[all...]
H A DString8.h89 inline String8& operator=(const String8& other);
90 inline String8& operator=(const char* other);
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!
[all...]
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...]
H A DTextOutput.h66 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<<(TextOutpu
[all...]
H A DTypeHelpers.h237 inline bool operator < (const key_value_pair_t& o) const {
H A DUniquePtr.h35 void operator()(T* p) const {
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&);
105 // operator* and operator-> but adds operator[]
[all...]
H A DVector.h57 /*! copy operator */
58 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const;
59 Vector<TYPE>& operator = (const Vector<TYPE>& rhs);
61 const Vector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const;
62 Vector<TYPE>& operator = (const SortedVector<TYPE>& rhs);
97 inline const TYPE& operator [] (size_t index) const;
98 //! alternate name for operator []
237 Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) {
238 VectorImpl::operator = (rhs);
243 const Vector<TYPE>& Vector<TYPE>::operator
[all...]
/frameworks/native/libs/gui/
H A DBufferQueue.cpp738 const char * operator()(int state) const {
/frameworks/native/libs/gui/tests/
H A DCpuConsumer_test.cpp47 ::std::ostream& operator<<(::std::ostream& os, const CpuConsumerTestParams& p) {

Completed in 144 milliseconds

123456