HomeSort by relevance Sort by last modified time
    Searched full:operator (Results 1451 - 1475 of 6015) sorted by null

<<51525354555657585960>>

  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/
slist 171 operator==(const _Slist_iterator_base& __x) const
175 operator!=(const _Slist_iterator_base& __x) const
202 operator*() const
206 operator->() const
207 { return &(operator*()); }
210 operator++()
217 operator++(int)
384 operator= (const slist& __x);
727 slist<_Tp, _Alloc>::operator=(const slist<_Tp, _Alloc>& __x)
792 operator==(const slist<_Tp, _Alloc>& _SL1, const slist<_Tp, _Alloc>& _SL2
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/
slist 171 operator==(const _Slist_iterator_base& __x) const
175 operator!=(const _Slist_iterator_base& __x) const
202 operator*() const
206 operator->() const
207 { return &(operator*()); }
210 operator++()
217 operator++(int)
384 operator= (const slist& __x);
727 slist<_Tp, _Alloc>::operator=(const slist<_Tp, _Alloc>& __x)
792 operator==(const slist<_Tp, _Alloc>& _SL1, const slist<_Tp, _Alloc>& _SL2
    [all...]
  /external/astl/include/
iomanip 39 // - a stream operator that takes the structure as second argument and
59 inline ostream& operator<<(ostream& os, android::SetPrecision params) {
72 inline ostream& operator<<(ostream& os, android::SetBase params) {
  /external/chromium/base/win/
scoped_bstr.h 80 operator BSTR() const {
90 bool operator==(const ScopedBstr& bstr2) const;
91 bool operator!=(const ScopedBstr& bstr2) const;
  /external/chromium/chrome/browser/autofill/
contact_info.h 23 NameInfo& operator=(const NameInfo& info);
103 EmailInfo& operator=(const EmailInfo& info);
122 CompanyInfo& operator=(const CompanyInfo& info);
  /external/chromium/chrome/browser/content_settings/
content_settings_pattern.h 46 bool operator==(const ContentSettingsPattern& other) const {
83 // Stream operator so ContentSettingsPattern can be used in assertion
85 inline std::ostream& operator<<(
  /external/clang/test/Index/
usrs.cpp 45 ClsD& operator=(int x) { a = x; return *this; }
46 ClsD& operator=(double x) { a = (int) x; return *this; }
47 ClsD& operator=(const ClsD &x) { a = x.a; return *this; }
50 bool operator==(const ClsD &x) const { return a == x.a; }
120 // CHECK: usrs.cpp c:@N@foo@N@taz@C@ClsD@F@operator=#I# Extent=[45:5 - 45:52]
121 // CHECK: usrs.cpp c:usrs.cpp@638@N@foo@N@taz@C@ClsD@F@operator=#I#@x Extent=[45:21 - 45:26]
122 // CHECK: usrs.cpp c:@N@foo@N@taz@C@ClsD@F@operator=#d# Extent=[46:5 - 46:61]
123 // CHECK: usrs.cpp c:usrs.cpp@690@N@foo@N@taz@C@ClsD@F@operator=#d#@x Extent=[46:21 - 46:29]
124 // CHECK: usrs.cpp c:@N@foo@N@taz@C@ClsD@F@operator=#&1$@N@foo@N@taz@C@ClsD# Extent=[47:5 - 47:62]
125 // CHECK: usrs.cpp c:usrs.cpp@751@N@foo@N@taz@C@ClsD@F@operator=#&1$@N@foo@N@taz@C@ClsD#@x Extent=[47:21 - 47:34
    [all...]
  /external/clang/test/SemaCXX/
dcl_init_aggr.cpp 98 operator int *();
105 operator A2();
108 operator int();
  /external/clang/test/SemaObjCXX/
blocks.mm 141 void operator+(X, X);
142 bool operator==(X, X);
143 bool operator!=(X, X);
  /external/collada/include/1.4/dom/
domSkin.h 84 * Overloaded assignment operator
86 virtual domBind_shape_matrix &operator=( const domBind_shape_matrix &cpy ) { (void)cpy; return *this; }
161 * Overloaded assignment operator
163 virtual domJoints &operator=( const domJoints &cpy ) { (void)cpy; return *this; }
244 * Overloaded assignment operator
246 virtual domVcount &operator=( const domVcount &cpy ) { (void)cpy; return *this; }
313 * Overloaded assignment operator
315 virtual domV &operator=( const domV &cpy ) { (void)cpy; return *this; }
413 * Overloaded assignment operator
415 virtual domVertex_weights &operator=( const domVertex_weights &cpy ) { (void)cpy; return *this;
    [all...]
  /external/collada/src/dae/
daeIDRef.cpp 53 bool daeIDRef::operator==(const daeIDRef& other) const {
57 daeIDRef &daeIDRef::operator=( const daeIDRef& other) {
113 daeIDRef& daeIDRef::operator[](size_t index) {
  /external/icu4c/common/
charstr.h 59 * the assignment operator, to make copies explicit and to
66 char operator[] (int32_t index) const { return buffer[index]; }
117 CharString &operator=(const CharString &other); // forbid copying of this class
  /external/icu4c/i18n/
casetrn.cpp 114 * Assignment operator.
116 /*CaseMapTransliterator& CaseMapTransliterator::operator=(const CaseMapTransliterator& o) {
117 Transliterator::operator=(o);
titletrn.cpp 49 * Assignment operator.
51 /*TitlecaseTransliterator& TitlecaseTransliterator::operator=(
53 CaseMapTransliterator::operator=(o);
  /external/llvm/include/llvm/ADT/
EquivalenceClasses.h 32 /// type to be indexed (as long as it can be ordered with operator<).
97 bool operator<(const ECValue &UFN) const { return Data < UFN.Data; }
107 bool operator<(const T &Val) const { return Data < Val; }
117 operator=(RHS);
120 const EquivalenceClasses &operator=(const EquivalenceClasses &RHS) {
252 reference operator*() const {
256 reference operator->() const { return operator*(); }
258 member_iterator &operator++() {
264 member_iterator operator++(int) { // postincrement operators
    [all...]
IndexedMap.h 30 unsigned operator()(unsigned Index) const {
48 typename StorageT::reference operator[](IndexT n) {
53 typename StorageT::const_reference operator[](IndexT n) const {
IntEqClasses.h 74 /// operator[] - Return a's equivalence class number, 0 .. getNumClasses()-1.
76 unsigned operator[](unsigned a) const {
77 assert(NumClasses && "operator[] called before compress()");
PointerUnion.h 116 operator bool() const { return !isNull(); }
159 const PointerUnion &operator=(const PT1 &RHS) {
165 const PointerUnion &operator=(const PT2 &RHS) {
256 operator bool() const { return !isNull(); }
292 const PointerUnion3 &operator=(const PT1 &RHS) {
296 const PointerUnion3 &operator=(const PT2 &RHS) {
300 const PointerUnion3 &operator=(const PT3 &RHS) {
364 operator bool() const { return !isNull(); }
401 const PointerUnion4 &operator=(const PT1 &RHS) {
405 const PointerUnion4 &operator=(const PT2 &RHS)
    [all...]
  /external/llvm/include/llvm/
GlobalAlias.h 31 void operator=(const GlobalAlias &); // Do not implement
38 void *operator new(size_t s) {
39 return User::operator new(s, 1);
  /external/oprofile/libpp/
name_storage.h 26 bool operator<(stored_name const & rhs) const {
61 bool operator<(stored_filename const & rhs) const {
154 debug_name_id::operator<(debug_name_id const & rhs) const
  /external/qemu/telephony/
android_modem.h 110 /** OPERATOR NAMES
119 /* retrieve operator name into user-provided buffer. returns number of writes written, including terminating zero */
122 /* reset one operator name from a user-provided buffer, set buffer_size to -1 for zero-terminated strings */
  /external/skia/include/core/
SkPathEffect.h 48 SkPathEffect& operator=(const SkPathEffect&);
103 SkComposePathEffect& operator=(const SkComposePathEffect&);
138 SkSumPathEffect& operator=(const SkSumPathEffect&);
  /external/stlport/stlport/stl/config/
_warnings_off.h 19 # pragma warning( disable : 4284 ) // for -> operator
37 # pragma warning( disable : 4146 ) // unary minus operator applied to unsigned type, result still unsigned
41 # pragma warning( disable : 4512 ) // assignment operator could not be generated
  /external/v8/src/
zone-inl.h 94 // operator that takes the zone in which the object should be
96 void* ZoneObject::operator new(size_t size) {
100 void* ZoneObject::operator new(size_t size, Zone* zone) {
  /external/webkit/Source/JavaScriptCore/profiler/
CallIdentifier.h 55 inline bool operator==(const CallIdentifier& ci) const { return ci.m_lineNumber == m_lineNumber && ci.m_name == m_name && ci.m_url == m_url; }
56 inline bool operator!=(const CallIdentifier& ci) const { return !(*this == ci); }
76 operator const char*() const { return c_str(); }

Completed in 1947 milliseconds

<<51525354555657585960>>