/frameworks/base/include/utils/ |
String16.h | 71 inline String16& operator=(const String16& other); 73 inline String16& operator+=(const String16& other); 74 inline String16 operator+(const String16& other) const; 95 inline bool 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; 102 inline bool operator<(const char16_t* other) const [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
gslice_array.h | 50 * operator[](gslice) on a valarray. The returned gslice_array then 52 * the original valarray. For example, operator+=(valarray) will add 70 /// Assignment operator. Assigns slice elements to corresponding 72 gslice_array& operator=(const gslice_array&); 75 void operator=(const valarray<_Tp>&) const; 77 void operator*=(const valarray<_Tp>&) const; 79 void operator/=(const valarray<_Tp>&) const; 81 void operator%=(const valarray<_Tp>&) const; 83 void operator+=(const valarray<_Tp>&) const; 85 void operator-=(const valarray<_Tp>&) const [all...] |
indirect_array.h | 50 * indirect_array is to call operator[](valarray<size_t>) on a valarray. 72 /// Assignment operator. Assigns elements to corresponding elements 74 indirect_array& operator=(const indirect_array&); 77 void operator=(const valarray<_Tp>&) const; 79 void operator*=(const valarray<_Tp>&) const; 81 void operator/=(const valarray<_Tp>&) const; 83 void operator%=(const valarray<_Tp>&) const; 85 void operator+=(const valarray<_Tp>&) const; 87 void operator-=(const valarray<_Tp>&) const; 89 void operator^=(const valarray<_Tp>&) const [all...] |
mask_array.h | 50 * mask_array is to call operator[](valarray<bool>) on a valarray. The 72 /// Assignment operator. Assigns elements to corresponding elements 74 mask_array& operator=(const mask_array&); 76 void operator=(const valarray<_Tp>&) const; 78 void operator*=(const valarray<_Tp>&) const; 80 void operator/=(const valarray<_Tp>&) const; 82 void operator%=(const valarray<_Tp>&) const; 84 void operator+=(const valarray<_Tp>&) const; 86 void operator-=(const valarray<_Tp>&) const; 88 void operator^=(const valarray<_Tp>&) const [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
gslice_array.h | 50 * operator[](gslice) on a valarray. The returned gslice_array then 52 * the original valarray. For example, operator+=(valarray) will add 70 /// Assignment operator. Assigns slice elements to corresponding 72 gslice_array& operator=(const gslice_array&); 75 void operator=(const valarray<_Tp>&) const; 77 void operator*=(const valarray<_Tp>&) const; 79 void operator/=(const valarray<_Tp>&) const; 81 void operator%=(const valarray<_Tp>&) const; 83 void operator+=(const valarray<_Tp>&) const; 85 void operator-=(const valarray<_Tp>&) const [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
gslice_array.h | 50 * operator[](gslice) on a valarray. The returned gslice_array then 52 * the original valarray. For example, operator+=(valarray) will add 70 /// Assignment operator. Assigns slice elements to corresponding 72 gslice_array& operator=(const gslice_array&); 75 void operator=(const valarray<_Tp>&) const; 77 void operator*=(const valarray<_Tp>&) const; 79 void operator/=(const valarray<_Tp>&) const; 81 void operator%=(const valarray<_Tp>&) const; 83 void operator+=(const valarray<_Tp>&) const; 85 void operator-=(const valarray<_Tp>&) const [all...] |
/external/clang/test/ASTMerge/Inputs/ |
class1.cpp | 13 C &operator=(C&);
|
/external/clang/test/CodeGenCXX/ |
2004-11-27-ExceptionCleanupAssertion.cpp | 8 operator const char *() const;
|
PR5834-constructor-conversion.cpp | 9 operator ASTMultiMover();
|
conversion-operator-base.cpp | 4 struct A { operator int(); float y; };
|
virtual-operator-call.cpp | 4 virtual int operator-() = 0;
|
/external/clang/test/PCH/ |
objcxx-ivar-class.h | 5 S& operator= (const S&);
|
/external/clang/test/SemaCXX/ |
PR8012.cpp | 3 void foo (int operator+); // expected-error{{cannot be the name of a parameter}}
|
invalid-member-expr.cpp | 10 x.operator; // expected-error{{expected a type}} 11 x.operator typedef; // expected-error{{expected a type}} 19 x->operator; // expected-error{{expected a type}} 20 x->operator typedef; // expected-error{{expected a type}}
|
operator-arrow-temporary.cpp | 10 Resource* operator->() { return 0; } 14 Lock<-1> operator->();
|
/external/clang/test/SemaTemplate/ |
instantiate-overloaded-arrow.cpp | 9 X* operator->();
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
ConstantUnion.h | 27 bool operator==(const int i) const 35 bool operator==(const float f) const 43 bool operator==(const bool b) const 51 bool operator==(const ConstantUnion& constant) const 77 bool operator!=(const int i) const 79 return !operator==(i); 82 bool operator!=(const float f) const 84 return !operator==(f); 87 bool operator!=(const bool b) const 89 return !operator==(b) [all...] |
/frameworks/base/include/ui/ |
Point.h | 30 // we don't provide copy-ctor and operator= on purpose 39 inline bool operator == (const Point& rhs) const { 42 inline bool operator != (const Point& rhs) const { 43 return !operator == (rhs); 50 // operator < defines an order which allows to use points in sorted 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 [all...] |
/bionic/libstdc++/src/ |
typeinfo.cpp | 16 type_info::operator==(type_info const & right) const { 21 type_info::operator!=(type_info const & right) const {
|
/external/clang/test/CXX/over/over.built/ |
p23.cpp | 4 template <typename T> operator T(); 16 template <typename T> explicit operator T();
|
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.func.order/ |
p3-0x.cpp | 8 template<class R> int &operator*(R&); 11 template<class T, class R> float &operator*(T&, R&);
|
p3.cpp | 7 int &operator==(const U& other) const; 11 float &operator==(const T&, const X<U>&);
|
/external/clang/test/Preprocessor/ |
expr_usual_conversions.c | 5 #if (-42 + 0U) /* expected-warning {{left side of operator converted from negative value to unsigned: -42 to 18446744073709551574}} */ \ 6 / -2 /* expected-warning {{right side of operator converted from negative value to unsigned: -2 to 18446744073709551614}} */
|
/external/webkit/Source/WebCore/svg/ |
SVGFontFaceUriElement.h | 49 void* operator new(size_t size) { 50 return SVGElement::operator new(size); 52 void* operator new[](size_t size) { 53 return SVGElement::operator new[](size); 56 void operator delete(void* p, size_t size) { 57 SVGElement::operator delete(p, size); 59 void operator delete[](void* p, size_t size) { 60 SVGElement::operator delete[](p, size);
|
/external/webkit/Source/WebCore/xml/ |
XSLImportRule.h | 56 void* operator new(size_t size) { 57 return StyleBase::operator new(size); 59 void* operator new[](size_t size) { 60 return StyleBase::operator new[](size); 63 void operator delete(void* p, size_t size) { 64 StyleBase::operator delete(p, size); 66 void operator delete[](void* p, size_t size) { 67 StyleBase::operator delete[](p, size);
|