Home
last modified time | relevance | path

Searched refs:operator (Results 1 – 18 of 18) sorted by relevance

/CafeSDK-2.12.13-1/system/include/nn/boss/
Dboss_Types.h72 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/
Dec_Money.h124 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 …]
Dec_DateTime.h148 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 …]
Dec_RootObject.h30 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);
Dec_NonCopyable.h34 NonCopyable& operator=(const NonCopyable&); variable
35 T& operator=(const T&); variable
/CafeSDK-2.12.13-1/system/include/nn/fnd/
Dfnd_TimeSpan.h168 …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/
Dgx2rCpp.h22 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/
DResult.h381 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); }
489operator+(const Result::ConstRange<TLevel, TModule, TDescription, TDescriptionStart, TDescriptionE…
[all …]
DResult.legacy.h25 …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/
Dutil_SizedEnum.h71 operator EnumT() const { return Get(); } in EnumT()
82 Self& operator =(EnumT e) { Set(e); return *this; }
Dutil_NonCopyable.h59 NonCopyable & operator = (const NonCopyable &);
/CafeSDK-2.12.13-1/system/include/nn/act/
Dact_Types.h95 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/
Ddemowin_assets.h123 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/
Ddemowin_assets.h123 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/
Drdt_Receiver.h264 Receiver& operator=(const Receiver&); variable
Drdt_Sender.h271 Sender& operator=(const Sender&); variable
/CafeSDK-2.12.13-1/system/include/cafe/demo/
DdemoSystem.h195 DEMOAllocator<T>& operator=(const DEMOAllocator<_Other>&) { return (*this); }
/CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/
DdemoSystem.h195 DEMOAllocator<T>& operator=(const DEMOAllocator<_Other>&) { return (*this); }