/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ |
system_error | 73 error_category& operator=(const error_category&) = delete; 91 operator<(const error_category& __other) const 95 operator==(const error_category& __other) const 99 operator!=(const error_category& __other) const 139 operator=(_ErrorCodeEnum __e) 156 // explicit operator bool() const throw() 162 operator __bool_type() const 177 operator<(const error_code& __lhs, const error_code& __rhs) 186 operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __e) 218 operator=(_ErrorConditionEnum __e [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/debug/ |
bitset | 69 operator=(bool __x) 79 operator=(const reference& __x) 92 operator~() const 100 operator bool() const 148 operator&=(const bitset<_Nb>& __rhs) 155 operator|=(const bitset<_Nb>& __rhs) 162 operator^=(const bitset<_Nb>& __rhs) 169 operator<<=(size_t __pos) 176 operator>>=(size_t __pos) 212 bitset<_Nb> operator~() const { return bitset(~_M_base()); [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ |
system_error | 73 error_category& operator=(const error_category&) = delete; 91 operator<(const error_category& __other) const 95 operator==(const error_category& __other) const 99 operator!=(const error_category& __other) const 139 operator=(_ErrorCodeEnum __e) 156 // explicit operator bool() const throw() 162 operator __bool_type() const 177 operator<(const error_code& __lhs, const error_code& __rhs) 186 operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __e) 218 operator=(_ErrorConditionEnum __e [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/debug/ |
bitset | 69 operator=(bool __x) 79 operator=(const reference& __x) 92 operator~() const 100 operator bool() const 148 operator&=(const bitset<_Nb>& __rhs) 155 operator|=(const bitset<_Nb>& __rhs) 162 operator^=(const bitset<_Nb>& __rhs) 169 operator<<=(size_t __pos) 176 operator>>=(size_t __pos) 212 bitset<_Nb> operator~() const { return bitset(~_M_base()); [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ |
system_error | 73 error_category& operator=(const error_category&) = delete; 91 operator<(const error_category& __other) const 95 operator==(const error_category& __other) const 99 operator!=(const error_category& __other) const 139 operator=(_ErrorCodeEnum __e) 156 // explicit operator bool() const throw() 162 operator __bool_type() const 177 operator<(const error_code& __lhs, const error_code& __rhs) 186 operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __e) 218 operator=(_ErrorConditionEnum __e [all...] |
/external/chromium/android/ext/ |
fake_hash.h | 16 std::size_t operator()(_type val) const { \
|
/external/chromium/chrome/browser/cocoa/ |
scoped_authorizationref.h | 38 bool operator==(AuthorizationRef that) const { 42 bool operator!=(AuthorizationRef that) const { 46 operator AuthorizationRef() const { 50 AuthorizationRef* operator&() {
|
/external/chromium/chrome/browser/webdata/ |
autofill_entry.h | 24 bool operator==(const AutofillKey& key) const; 25 bool operator<(const AutofillKey& key) const; 41 bool operator==(const AutofillEntry& entry) const; 42 bool operator<(const AutofillEntry& entry) const;
|
/external/chromium/third_party/libjingle/overrides/talk/xmllite/ |
qname.h | 26 bool operator==(const QName & other) const; 27 bool operator!=(const QName & other) const { return !operator==(other); } 28 bool operator<(const QName & other) const { return Compare(other) < 0; }
|
/external/clang/include/clang/Basic/ |
OperatorKinds.def | 1 //===--- OperatorKinds.def - C++ Overloaded Operator Database ---*- C++ -*-===// 28 /// operator, e.g., "operator+". 30 /// Token: The name of the token that specifies the operator, e.g., 31 /// "plus" for operator+ or "greatergreaterequal" for 32 /// "operator>>=". With a "kw_" prefix, the token name can be used as 35 /// Unary: True if the operator can be declared as a unary operator. 37 /// Binary: True if the operator can be declared as a binary 38 /// operator. Note that some operators (e.g., "operator+" an [all...] |
/external/clang/test/Analysis/ |
malloc-overflow.cpp | 5 A& operator<<(const A &a);
|
/external/clang/test/CXX/over/over.match/over.match.best/over.best.ics/over.ics.user/ |
p3-0x.cpp | 9 operator typename identity<T>::type(); // expected-note{{candidate}}
|
/external/clang/test/CodeGenCXX/ |
convert-to-fptr.cpp | 18 operator fp1() { return f1; } 19 operator fp2() { return f2; } 28 operator fr1() { return f1; } 29 operator fr2() { return f2; }
|
copy-assign-synthesis-2.cpp | 3 A& (A::*x)(const A&) = &A::operator=;
|
mangle-system-header.cpp | 7 void operator delete (void*, void*) {}
|
new-operator-phi.cpp | 5 struct X {static void * operator new(size_t size) throw(); X(int); };
|
overload-binop-implicitconvert.cpp | 7 T& operator<< (T& t,const char* c)
|
virtual-implicit-copy-assignment.cpp | 5 virtual D& operator = (const D&);
|
/external/clang/test/Parser/ |
cxx-ambig-decl-expr-xfail.cpp | 7 X operator()(int, int) const;
|
/external/clang/test/Preprocessor/ |
macro_fn_preexpand.c | 8 /* The ## operator disables preexpansion. */
|
/external/clang/test/SemaCXX/ |
cxx0x-nontrivial-union.cpp | 6 non_trivial& operator = (const non_trivial&);
|
overloaded-builtin-operators-0x.cpp | 6 operator T() const {return T();}
|
switch-0x.cpp | 5 explicit operator int(); // expected-note{{conversion to integral type}}
|
/external/clang/test/SemaTemplate/ |
unresolved-construct.cpp | 11 A& operator=(A&&) {return *this;}
|
/external/collada/include/1.4/dom/ |
domCg_sampler1D.h | 32 * Overloaded assignment operator 34 virtual domCg_sampler1D_complexType &operator=( const domCg_sampler1D_complexType &cpy ) { (void)cpy; return *this; } 56 * Overloaded assignment operator 58 virtual domCg_sampler1D &operator=( const domCg_sampler1D &cpy ) { (void)cpy; return *this; }
|