| /CafeSDK-2.12.13-1/system/include/nn/boss/ |
| D | boss_Types.h | 72 bool operator==(const TitleID& obj) const; 82 bool operator!=(const TitleID& obj) const; 155 bool operator==(const TaskID& obj) const; 165 bool operator!=(const TaskID& obj) const; 175 bool operator==(const char* obj) const; 185 bool operator!=(const char* obj) const; 192 operator const char*() const; 200 TaskID& operator=(const char* idStr); member 237 bool operator==(const DataName& obj) const; 247 bool operator!=(const DataName& obj) const; [all …]
|
| /CafeSDK-2.12.13-1/system/include/nn/ec/ |
| D | ec_Money.h | 124 const Money operator+(const Money& money) const; 133 const Money operator-(const Money& money) const; 142 const Money operator*(u32 quantity) const; 153 f64 operator/(const Money& money) const; 162 Money& operator+=(const Money& money); 171 Money& operator-=(const Money& money); 180 Money& operator*=(u32 quantity); 189 bool operator==(const Money& money) const; 198 bool operator!=(const Money& money) const; 207 bool operator>(const Money& money) const; [all …]
|
| D | ec_DateTime.h | 148 bool operator==(const DateTime& dateTime) const; 157 bool operator!=(const DateTime& dateTime) const; 166 bool operator>(const DateTime& dateTime) const; 175 bool operator<(const DateTime& dateTime) const; 184 bool operator>=(const DateTime& dateTime) const; 193 bool operator<=(const DateTime& dateTime) const; 202 const DateTime operator+(s64 seconds) const; 211 const DateTime operator-(s64 seconds) const; 222 s64 operator-(const DateTime& dateTime) const; 231 DateTime& operator+=(s64 seconds); [all …]
|
| D | ec_RootObject.h | 30 void* operator new(size_t size); 32 void* operator new[](size_t size); 35 void* operator new(size_t size, void* pMemory); 37 void* operator new[](size_t size, void* pMemory); 40 void operator delete(void* pMemory); 42 void operator delete[](void* pMemory);
|
| D | ec_NonCopyable.h | 34 NonCopyable& operator=(const NonCopyable&); variable 35 T& operator=(const T&); variable
|
| /CafeSDK-2.12.13-1/system/include/nn/fnd/ |
| D | fnd_TimeSpan.h | 168 …friend bool operator==(const TimeSpan& lhs, const TimeSpan& rhs) { return lhs.m_NanoSeconds == rhs… 169 friend bool operator!=(const TimeSpan& lhs, const TimeSpan& rhs) { return !(lhs == rhs); } 170 …friend bool operator< (const TimeSpan& lhs, const TimeSpan& rhs) { return lhs.m_NanoSeconds < rhs… 171 friend bool operator> (const TimeSpan& lhs, const TimeSpan& rhs) { return rhs < lhs; } 172 friend bool operator<=(const TimeSpan& lhs, const TimeSpan& rhs) { return !(lhs > rhs); } 173 friend bool operator>=(const TimeSpan& lhs, const TimeSpan& rhs) { return !(lhs < rhs); } 175 …TimeSpan& operator+=(const TimeSpan& rhs) { this->m_NanoSeconds += rhs.m_NanoSeconds; return *this… 176 …friend TimeSpan operator+(const TimeSpan& lhs, const TimeSpan& rhs) { TimeSpan ret(lhs); return re… 178 …TimeSpan& operator-=(const TimeSpan& rhs) { this->m_NanoSeconds -= rhs.m_NanoSeconds; return *this… 179 …friend TimeSpan operator-(const TimeSpan& lhs, const TimeSpan& rhs) { TimeSpan ret(lhs); return re…
|
| /CafeSDK-2.12.13-1/system/include/cafe/gx2/ |
| D | gx2rCpp.h | 22 GX2_INLINE GX2RResourceFlags operator |(GX2RResourceFlags x, GX2RResourceFlags y) { return (GX2RRes… 23 GX2_INLINE GX2RResourceFlags operator |(GX2RResourceFlags x, s32 y) { return (GX2RRes… 24 GX2_INLINE GX2RResourceFlags operator |(s32 x, GX2RResourceFlags y) { return (GX2RRes… 26 GX2_INLINE GX2RDebugOptions operator |(GX2RDebugOptions x, GX2RDebugOptions y) { return (GX2RDeb…
|
| /CafeSDK-2.12.13-1/system/include/nn/ |
| D | Result.h | 381 operator nnResult() const in nnResult() 412 bool operator ==(const Result& rhs) const { return this->m_Code == rhs.m_Code; } 423 bool operator !=(const Result& rhs) const { return this->m_Code != rhs.m_Code; } 443 operator Result() const { return Result(0); } in Result() 444 operator nnResult() const { return Result(0); } in nnResult() 459 operator Result() const { return Result(Value); } in Result() 460 operator nnResult() const { return Result(Value); } in nnResult() 482 friend bool operator<=(Result lhs, const ConstRange&) { return ConstRange::Includes(lhs); } 483 friend bool operator>=(const ConstRange&, Result rhs) { return ConstRange::Includes(rhs); } 489 …operator+(const Result::ConstRange<TLevel, TModule, TDescription, TDescriptionStart, TDescriptionE… [all …]
|
| D | Result.legacy.h | 25 …friend bool operator<=(Result lhs, const Const<TLevel, TSummary, TModule, TDescription>& rhs) { re… 26 …friend bool operator>=(const Const<TLevel, TSummary, TModule, TDescription>, Result rhs) { return … 42 …friend bool operator<=(Result lhs, const Const_LSM<TLevel, TSummary, TModule>&) { return Includes(… 43 …friend bool operator>=(const Const_LSM<TLevel, TSummary, TModule>&, Result rhs) { return Includes(… 58 friend bool operator<=(Result lhs, const Const_LM<TLevel, TModule>&) { return Includes(lhs); } 59 friend bool operator>=(const Const_LM<TLevel, TModule>&, Result rhs) { return Includes(rhs); } 73 friend bool operator<=(Result lhs, const Const_L<TLevel>&) { return Includes(lhs); } 74 friend bool operator>=(const Const_L<TLevel>&, Result rhs) { return Includes(rhs); }
|
| /CafeSDK-2.12.13-1/system/include/nn/util/ |
| D | util_SizedEnum.h | 71 operator EnumT() const { return Get(); } in EnumT() 82 Self& operator =(EnumT e) { Set(e); return *this; }
|
| D | util_NonCopyable.h | 59 NonCopyable & operator = (const NonCopyable &);
|
| /CafeSDK-2.12.13-1/system/include/nn/act/ |
| D | act_Types.h | 95 inline bool operator==( const ACTUuid& uuid ) const 112 inline bool operator!=( const ACTUuid& uuid ) const
|
| /CafeSDK-2.12.13-1/system/include/cafe/demo/demowin/ |
| D | demowin_assets.h | 123 String& operator=(const char* txt) {strcpy_s(text, txt); return *this;} 125 operator char*() {return text;} 198 const AutoList& operator=(const AutoList& list) 257 SubComboBasic& operator=(const char* txt) {name = txt; return *this;}
|
| /CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/demowin/ |
| D | demowin_assets.h | 123 String& operator=(const char* txt) {strcpy_s(text, txt); return *this;} 125 operator char*() {return text;} 198 const AutoList& operator=(const AutoList& list) 257 SubComboBasic& operator=(const char* txt) {name = txt; return *this;}
|
| /CafeSDK-2.12.13-1/system/include/nn/rdt/ |
| D | rdt_Receiver.h | 264 Receiver& operator=(const Receiver&); variable
|
| D | rdt_Sender.h | 271 Sender& operator=(const Sender&); variable
|
| /CafeSDK-2.12.13-1/system/include/cafe/demo/ |
| D | demoSystem.h | 195 DEMOAllocator<T>& operator=(const DEMOAllocator<_Other>&) { return (*this); }
|
| /CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/ |
| D | demoSystem.h | 195 DEMOAllocator<T>& operator=(const DEMOAllocator<_Other>&) { return (*this); }
|