| /NW4C-1.2.23/include/nw/gfx/ |
| D | gfx_ParticleTime.h | 43 friend ParticleTime operator -(const ParticleTime& rhs); 86 ParticleTime operator +(ParticleTime right) const 93 ParticleTime operator -(ParticleTime right) const 137 …ParticleTime& operator =(f32 value) { this->m_ParticleTime = Float32ToParticleTime(value); return … 138 …ParticleTime& operator =(s32 value) { this->m_ParticleTime = S32ToParticleTime(value); return *thi… 139 …ParticleTime& operator =(ParticleTime value) { this->m_ParticleTime = value.m_ParticleTime; return… 140 …ParticleTime& operator +=(f32 value) { this->m_ParticleTime += Float32ToParticleTime(value); retur… 141 …ParticleTime& operator +=(s32 value) { this->m_ParticleTime += S32ToParticleTime(value); return *t… 142 …ParticleTime& operator +=(ParticleTime value) { this->m_ParticleTime += value.m_ParticleTime; retu… 143 …ParticleTime& operator -=(f32 value) { this->m_ParticleTime -= Float32ToParticleTime(value); retur… [all …]
|
| D | gfx_GfxObject.h | 56 static void* operator new( size_t, void* buf ) NW_NO_THROW { return buf; } in new() 61 static void operator delete( void* ) NW_NO_THROW {} in delete() 67 static void operator delete( void*, void* ) NW_NO_THROW {} in delete() 132 void operator() (GfxObject* object) in operator() function 193 GfxPtr& operator=(GfxPtr<TObject> rhs) 195 m_MovePtr.operator=(rhs.m_MovePtr); 200 element_type& operator*() const { return *m_MovePtr; } 201 element_type* operator->() const { return m_MovePtr.operator->(); } 202 element_type& operator[](std::size_t i) const { return m_MovePtr[i]; } 223 operator SafeBool() const { return m_MovePtr.operator SafeBool(); } in SafeBool()
|
| D | gfx_Common.h | 82 self_type operator = (u32 code) { m_Code = code; return *this; } 84 self_type operator |= (u32 code) { m_Code |= code; return *this; } 86 self_type operator &= (u32 code) { m_Code &= code; return *this; } 88 self_type operator = (self_type result) { m_Code = result.GetCode(); return *this; } 90 self_type operator |= (self_type result) { m_Code |= result.GetCode(); return *this; } 92 self_type operator &= (self_type result) { m_Code &= result.GetCode(); return *this; }
|
| D | gfx_ParticleUtil.h | 85 bool operator() ( 102 void operator()(ResModel resModel) const in operator() function 113 void operator()(ResParticleModel resParticleModel) const in operator() function 123 void operator()(ResParticleSet resParticleSet) const in operator() function
|
| D | gfx_Fog.h | 60 void operator() (Fog* fog) in operator() function 187 result_type operator()(argument_type data) in operator() function 199 result_type operator()(argument_type data) in operator() function
|
| D | gfx_RenderQueue.h | 92 bool operator ()() const in operator() function 111 bool operator ()() const in operator() function 133 float operator ()(ResMesh mesh, const Camera& camera, IsCalculating isCalculating) const in operator() function 169 float operator ()(ResMesh mesh, const Camera& camera, IsCalculating isCalculating) const in operator() function 220 result_type operator()(argument_type mesh) in operator() function 277 result_type operator()(argument_type mesh) in operator() function 329 void operator() (reference element) in operator() function 794 bool operator() ( in operator() function
|
| /NW4C-1.2.23/include/nw/ut/ |
| D | ut_Float24.h | 99 Float24& operator =(f32 value) { this->m_Float32 = value; return *this; } 100 Float24& operator =(u32 bits24) { this->m_Float32 = Bits24ToFloat32( bits24 ); return *this; } 102 operator f32() const { return m_Float32; } in f32() 104 f32 operator +(f32 right) const { return this->m_Float32 + right; } 105 f32 operator -(f32 right) const { return this->m_Float32 - right; } 106 f32 operator *(f32 right) const { return this->m_Float32 * right; } 107 f32 operator /(f32 right) const { return this->m_Float32 / right; } 109 Float24& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; } 110 Float24& operator -=(f32 rhs) { this->m_Float32 -= rhs; return *this; } 111 Float24& operator *=(f32 rhs) { this->m_Float32 *= rhs; return *this; } [all …]
|
| D | ut_Color.h | 103 SelfType& operator =(u32 color) 116 SelfType& operator =(FloatColor& color); member 123 operator u32() const { return ToU32(); } in u32() 133 const SelfType operator +(const SelfType& right) const 151 const SelfType operator -(const SelfType& right) const 169 const SelfType operator *(const SelfType& right) const 187 const SelfType operator /(const SelfType& right) const 204 const SelfType operator ++() 219 const SelfType operator ++(int) 235 const SelfType operator --() [all …]
|
| D | ut_ResDictionary.h | 40 virtual void* operator[](int idx) const = 0; 41 virtual void* operator[](u32 idx) const = 0; 42 virtual void* operator[](const char* key) const = 0; 43 virtual void* operator[](const ResName key) const = 0; 67 void* operator[](int idx) const { return m_Dic[ idx ]; } 68 void* operator[](u32 idx) const { return m_Dic[ idx ]; } 69 void* operator[](const char* key) const { return m_Dic[ key ]; } 70 void* operator[](const ResName key) const { return m_Dic[ key ]; } 113 void* operator[](int idx) const 119 void* operator[](u32 idx) const { return operator[](int(idx)); } [all …]
|
| D | ut_LinkList.h | 75 friend bool operator==(const Self &r1,const Self &r2) { return &r1 == &r2; } 85 friend bool operator!=(const Self &r1,const Self &r2) { return !(r1 == r2); } 134 reference operator*() const { NW_NULL_ASSERT(m_pPointer); return *m_pPointer; } 135 pointer operator->() const { return m_pPointer; } 137 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; } 138 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; } 139 TIt &operator--() { m_pPointer = m_pPointer->GetPrev(); return *this; } 140 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; } 142 friend bool operator==(TIt it1, TIt it2) { return it1.m_pPointer == it2.m_pPointer; } 143 friend bool operator!=(TIt it1, TIt it2) { return !(it1 == it2); } [all …]
|
| D | ut_ResArray.h | 87 TRes* operator->() { return &m_Res; } 97 const TRes* operator->() const { return &m_Res; } 183 operator pointer() { return m_pBegin; } in pointer() 184 operator const pointer() const { return m_pBegin; } in pointer() 186 reference operator[](int index) 192 const_reference operator[](int index) const 213 operator const_iterator() { return const_iterator(m_pCurrent); } in const_iterator() 215 …reference operator*() const { NW_NULL_ASSERT(m_pCurrent); return TTraits<T>::GetValue(m_pCurrent)… 218 iter_pointer operator->() const { return TTraits<T>::GetPointer(m_pCurrent); } 221 TIt &operator++() { ++m_pCurrent; return *this; } [all …]
|
| D | ut_ResTypes.h | 132 void operator = (const ResNum& other) { bits = other.bits; } 133 /* T */ operator T () const { return Endian::BSwap( bits ); } in T() 134 void operator = (T val) { bits = Endian::BSwap( val ); } 170 operator const char*() const { return to_ptr(); } 185 Offset operator=(s32 ofs) { offset = ofs; return *this; } 186 operator s32() const { return offset; } in s32() 187 Offset operator+(s32 ofs) const { return s32_to_ofs(this->offset + ofs); } 188 Offset operator-(s32 ofs) const { return s32_to_ofs(this->offset - ofs); } 189 Offset operator+=(s32 ofs) { this->offset += ofs; return *this; } 190 Offset operator-=(s32 ofs) { this->offset -= ofs; return *this; } [all …]
|
| D | ut_Iterator.h | 118 reference operator*() const { TIt tmp = m_Current; return (*--tmp); } 119 pointer operator->() const { return &(this->operator*()); } 121 Self& operator++() { (void)--m_Current; return *this; } 122 Self operator++(int) { Self tmp = *this; (void)--m_Current; return tmp; } 123 Self& operator--() { (void)++m_Current; return *this;} 124 Self operator--(int) { Self tmp = *this; (void)++m_Current; return tmp; } 126 friend bool operator==(const Self &r1_,const Self &r2_) { return r1_.m_Current==r2_.m_Current; } 127 friend bool operator!=(const Self &r1,const Self &r2) { return !(r1==r2); }
|
| D | ut_SharedPtr.h | 306 SharedPtr& operator = (const SharedPtr& other) 320 SharedPtr<TObj, TLockObject>& operator = (const SharedPtr<U, TLockObject>& other) 353 TObj& operator * () const { NW_NULL_ASSERT( m_pObj ); return *m_pObj; } 360 TObj* operator -> () const { NW_NULL_ASSERT( m_pObj ); return m_pObj; } 367 operator bool () const { return NULL != m_pObj; } 417 operator==(SharedPtr<T, TLockObject> const & a, SharedPtr<U, TLockObject> const & b) 432 operator!=(SharedPtr<T, TLockObject> const & a, SharedPtr<U, TLockObject> const & b) 519 WeakPtr& operator = (const SharedPtr<U, TLockObject>& rhs) 539 WeakPtr& operator = (const WeakPtr& other); variable
|
| D | ut_Signal.h | 39 ResultType operator()(TInputIterator first, TInputIterator last, const TInvoker& invoker) in operator() function 58 void operator()(TInputIterator first, TInputIterator last, const TInvoker& invoker) 102 void operator()(TSlot& slot) const
|
| D | ut_MovePtr.h | 66 void operator() (TObject* object) in operator() function 333 MovePtr& operator=(MovePtr rhs) 346 element_type& operator*() const 353 element_type* operator->() const 360 element_type& operator[](std::size_t i) const 429 operator SafeBool() const { return Ptr() ? &SafeBoolHelper::x : 0; } in SafeBool()
|
| D | ut_ResUtil.h | 146 bool operator==(const class_name& rhs) const { return ptr() == rhs.ptr(); } \ 148 bool operator!=(const class_name& rhs) const { return ptr() != rhs.ptr(); } \ 186 bool operator==(const class_name& rhs) const { return ptr() == rhs.ptr(); } \ 188 bool operator!=(const class_name& rhs) const { return ptr() != rhs.ptr(); } \ 372 void operator()(TObject res) const in operator() function
|
| D | ut_Children.h | 41 void operator() (TChild* child) in operator() function 65 void operator() (TChild* child) in operator() function 172 operator SafeBool() const { return m_Children; } in SafeBool()
|
| D | ut_Preprocessor.h | 22 void operator=(const TypeName&)
|
| D | ut_MoveArray.h | 231 operator SafeBool() const in SafeBool() 245 MoveArray& operator=(MoveArray rhs) 255 TElement& operator[](int index) 262 const TElement& operator[](int index) const 1090 operator == ( 1114 operator != ( 1138 operator < ( 1158 operator > ( 1178 operator <= ( 1198 operator >= (
|
| /NW4C-1.2.23/include/nw/config/compiler/ |
| D | msvc.h | 46 void* operator new( size_t size, void* ptr ); 47 void* operator new[]( size_t size, void* ptr ); 48 void operator delete( void* memory, void* ptr ); 49 void operator delete[]( void* memory, void* ptr );
|
| /NW4C-1.2.23/include/nw/gfx/res/ |
| D | gfx_ResShape.h | 440 ResVertexAttribute operator*() 457 const ResVertexAttribute operator*() const 475 ResVertexAttributeIterator& operator++() 513 ResVertexAttributeIterator operator++(int) 517 this->operator++();
|
| D | gfx_ResGraphicsFile.h | 749 void operator()(nw::gfx::ResTexture resTexture) const in operator() function 783 void operator()(nw::gfx::ResIndexStream resIndexStream) const in operator() function 792 void operator()(nw::gfx::ResVertexStreamBase resVertexStream) const in operator() function 833 void operator()(ResTexture resTexture) const in operator() function 858 void operator()(ResIndexStream resIndexStream) const in operator() function 866 void operator()(ResVertexStreamBase resVertexStream) const in operator() function 905 void operator()(ResModel resModel, ResMaterial resMaterial) const in operator() function 925 void operator()(ResModel resModel, ResMaterial resMaterial) const in operator() function
|
| /NW4C-1.2.23/include/nw/snd/ |
| D | snd_SoundArchiveFile.h | 140 void* operator[](int idx) const 147 void* operator[](u32 idx) const 149 return operator[]( static_cast<int>(idx) ); 151 void* operator[](const char* s) const 153 return operator()( s, 0 ); 155 void* operator()(const char* s, size_t len) const in operator() function
|
| /NW4C-1.2.23/include/nw/anim/ |
| D | anim_AnimFrameController.h | 129 bool operator==(const AnimFrame& rhs) const 133 bool operator!=(const AnimFrame& rhs) const
|