| /NW4C-2.0.3/include/nw/ut/ |
| D | ut_ResArray.h | 30 template <typename T> 34 typedef T* pointer; 35 typedef const T* const_pointer; 36 typedef T& reference; 37 typedef const T& const_reference; 38 typedef T& iter_pointer; 39 typedef const T& const_iter_pointer; 53 static size_t ValueSize() { return sizeof(T); } in ValueSize() 56 template <typename T> 57 class ResArrayPrimitiveTraits<const T> [all …]
|
| D | ut_ResArrayTypes.h | 36 template <typename T> 42 typedef T reference; 43 typedef const T const_reference; 48 typedef ResPtr<T> iter_pointer; 49 typedef ResPtr<const T> const_iter_pointer; 51 static iter_pointer GetPointer(pointer ptr) { return ResPtr<T>( ptr->to_ptr() ); } in GetPointer() 52 … static const_iter_pointer GetPointer(const_pointer ptr) { return ResPtr<T>( ptr->to_ptr() ); } in GetPointer() 56 static reference GetValue(pointer ptr) { return T( ptr->ofsData.to_ptr() ); } in GetValue() 58 static const_reference GetValue(const_pointer ptr) { return T( ptr->ofsData.to_ptr() ); } in GetValue() 70 template <typename T> [all …]
|
| D | ut_Iterator.h | 44 template <typename T> 45 struct iterator_traits<T*> 47 typedef T value_type; 48 typedef T* pointer; 49 typedef T& reference; 54 template <typename T> 55 struct iterator_traits<const T*> 57 typedef T value_type; 58 typedef const T* pointer; 59 typedef const T& reference; [all …]
|
| D | ut_Inlines.h | 42 template <typename T> 43 NW_INLINE T Min(T a, T b); 403 template <typename T> 404 NW_INLINE T 405 Abs(T a) in Abs() 407 return (a < 0) ? static_cast<T>(-a) : a; in Abs() 438 template <typename T> 439 NW_INLINE T 440 Min(T a, T b) in Min() 454 template <typename T> [all …]
|
| D | ut_RuntimeTypeInfo.h | 87 template<class T> 89 GetTypeInfoFromPtr_(T* /* _dummy */) in GetTypeInfoFromPtr_() argument 91 return &T::s_TypeInfo; in GetTypeInfoFromPtr_() 101 template<class UPtr, class T> 103 DynamicCast(T* obj) in DynamicCast() 121 template <typename T, typename U> 126 return instance->GetRuntimeTypeInfo() == &T::s_TypeInfo; in IsTypeOf()
|
| D | ut_ResUtil.h | 324 template<class T> 333 NW_FORCE_INLINE T* ptr() { return reinterpret_cast<T*>(void_ptr()); } in ptr() 336 NW_FORCE_INLINE const T* ptr() const { return reinterpret_cast<const T*>(void_ptr()); } in ptr() 339 … NW_FORCE_INLINE T& ref() { NW_ASSERT(this->IsValid()); return *reinterpret_cast<T*>(void_ptr()); } in ref() 342 …NW_FORCE_INLINE const T& ref() const { NW_ASSERT(this->IsValid()); return *reinterpret_cast<const … in ref()
|
| D | ut_ResTypes.h | 126 template <typename T> 132 /* ctor */ ResNum(const T val ) : bits( Endian::BSwap( val ) ) {} in ResNum() 135 /* T */ operator T () const { return Endian::BSwap( bits ); } in T() function 136 void operator = (T val) { bits = Endian::BSwap( val ); } 138 T bits; 214 template<typename T> 215 const T* to_ptr() const in to_ptr() 217 return static_cast<const T*>( to_ptr() ); in to_ptr() 220 template<typename T> 221 T* to_ptr() in to_ptr() [all …]
|
| D | ut_SharedPtr.h | 417 template <class T, class U, typename TLockObject> 419 operator==(SharedPtr<T, TLockObject> const & a, SharedPtr<U, TLockObject> const & b) 432 template <class T, class U, typename TLockObject> 434 operator!=(SharedPtr<T, TLockObject> const & a, SharedPtr<U, TLockObject> const & b)
|
| D | ut_TypeTraits.h | 164 template <class T> 169 static const bool value = (sizeof(test<T>(0)) == sizeof(internal::True));
|
| D | ut_LinkList.h | 316 template < typename T, PtrDiff TNOffset > 331 typedef T value_type; //!< @details :private
|
| /NW4C-2.0.3/include/nw/lyt/ |
| D | lyt_Layout.h | 627 template<typename T> 628 static T* NewObj() in NewObj() 630 if (void* pMem = Layout::AllocMemory(sizeof(T))) in NewObj() 632 return new (pMem) T(); in NewObj() 650 template<typename T, typename Param1> 651 static T* NewObj(Param1 param1) in NewObj() 653 if (void* pMem = Layout::AllocMemory(sizeof(T))) in NewObj() 655 return new (pMem) T(param1); in NewObj() 675 template<typename T, typename Param1, typename Param2> 676 static T* NewObj(Param1 param1, Param2 param2) in NewObj() [all …]
|
| D | lyt_Types.h | 64 template <typename T> 66 T 68 T bits, in SetBit() 73 const T mask = T(~(1 << pos)); in SetBit() 81 template <typename T> 85 T* pBits, in SetBit() 90 const T mask = T(~(1 << pos)); in SetBit() 98 template <typename T> 100 T 102 T bits, in SetBits() [all …]
|
| D | lyt_Animation.h | 407 template<typename T> 409 T* pTarget, in Bind()
|
| /NW4C-2.0.3/include/nw/snd/ |
| D | snd_InstancePool.h | 52 template< typename T > 69 ( sizeof( T ) > sizeof( MemoryPool<T>* ) ) ? in Create() 70 sizeof( T ): in Create() 71 sizeof( MemoryPool<T>* ) in Create() 110 T* Alloc() { return static_cast<T*>( AllocImpl() ); } in Alloc() 121 void Free( T* obj ) { FreeImpl( obj ); } in Free() 129 template< typename T > 146 ( sizeof( T ) > sizeof( InstancePool<T>* ) ) ? in Create() 147 sizeof( T ): in Create() 148 sizeof( InstancePool<T>* ) in Create() [all …]
|
| D | snd_SequenceSoundPlayer.h | 265 template< typename T > 266 void SetTrackParam( u32 trackBitFlag, void (SequenceTrack::*func)( T ), T param ); 267 template< typename T, typename U > 268 void SetTrackParam( u32 trackBitFlag, void (SequenceTrack::*func)( T, U ), T param1, U param2 ); 306 template< typename T > 307 void SequenceSoundPlayer::SetTrackParam( u32 trackBitFlag, void (SequenceTrack::*func)( T ), T para… in SetTrackParam() argument 320 template< typename T, typename U > 321 void SequenceSoundPlayer::SetTrackParam( u32 trackBitFlag, void (SequenceTrack::*func)( T, U ), T p… in SetTrackParam() argument
|
| D | snd_Util.h | 494 template<typename T> 499 void Update( T value ) in Update() 516 T GetValue() const { return m_CurrentValue; } in GetValue() 517 T GetPeakValue() const { return m_PeakValue; } in GetPeakValue() 520 T m_CurrentValue; 521 T m_PeakValue;
|
| /NW4C-2.0.3/include/nw/math/inline/ |
| D | math_Matrix44.ipp | 30 [S] [T] [t(0.5,0.5)] [R] [t(-0.5,-0.5)] 38 [T] = t( -translateS , -translateT )\n 48 @param[in] scaleT T 軸のスケール値です。 51 @param[in] translateT T 軸の移動値です。 88 [S] [R] [T] 102 [T] = t( -translateS , -translateT) \n 109 @param[in] scaleT T 軸のスケール値です。 112 @param[in] translateT T 軸の移動値です。 149 [t(0.5,0.5)] [S] [R] [t(-0.5,-0.5)] [T] 163 [T] = t( -translateS , translateT ) [all …]
|
| /NW4C-2.0.3/documents/CreativeStudio/html/assets/ |
| D | yahoo-dom-event.js | 7 …T=[],K,O="dump",S=" ",I="{",W="}",Q,P;for(;;){N=Y.lastIndexOf(I);if(N<0){break;}M=Y.indexOf(W,N);i… 8 …T=m.ie;E.Dom={CUSTOM_ATTRIBUTES:(!W.hasAttribute)?{"for":"htmlFor","class":F}:{"htmlFor":"for","cl… 9 …K[t];if((Y||T)&&!D){G=(Y==M)?W.clientHeight:K.body.clientHeight;}return G;},getViewportWidth:funct… 10 …T="currentStyle",R=/^width|height$/,O=/^(\d[.\d]*)+(em|ex|px|gd|rem|vw|vh|vm|ch|mm|cm|in|pt|pc|deg… argument 11 …T,U){var S=T;if(U.overrideContext){if(U.overrideContext===true){S=U.obj;}else{S=U.overrideContext;… argument
|
| /NW4C-2.0.3/include/nw/gfx/ |
| D | gfx_ParticleCollection.h | 307 template <class T> 308 …NW_FORCE_INLINE bool GetStreamOrParameter(ParticleUsage usage, T** stream, T* param, ParticleBuffe… in GetStreamOrParameter() 317 *stream = (T*)this->m_StreamPtr[usage][side]; in GetStreamOrParameter() 324 memcpy(param, this->m_StreamPtr[usage][0], sizeof(T)); in GetStreamOrParameter()
|
| D | gfx_BaseAnimEvaluator.h | 369 template <class T> 371 TryBindTemplate(AnimGroup* animGroup, T indexGetter) in TryBindTemplate()
|
| /NW4C-2.0.3/sources/libraries/font/ |
| D | font_ResFont.cpp | 35 template <typename T> 37 ResolveOffset(T*& ptr, void* base) in ResolveOffset() 39 ptr = reinterpret_cast<T*>( in ResolveOffset()
|
| /NW4C-2.0.3/sources/libraries/gfx/ |
| D | gfx_ParticleCollection.cpp | 34 template <typename T> 47 const int size = (capacity + internal::PARTICLE_SIMD_WIDTH_MAX) * sizeof(T) + 8; in ParticleStreamCreateSize() 52 template <typename T> 65 const int size = (capacity + internal::PARTICLE_SIMD_WIDTH_MAX) * sizeof(T) + 8; in ParticleStreamCreate() 82 template <typename T> 90 const int size = sizeof(T); in ParticleParameterAttributeCreateSize() 95 template <typename T> 106 const int size = sizeof(T); in ParticleParameterAttributeCreate()
|
| /NW4C-2.0.3/tools/DccPlugin/3dsMax/x64/2010/Scripts/Startup/ |
| D | NW4C_utils.ms.inc | 135 while s[ep] != "\"" and ep < s.count do ep += 1 -- �ŏ���"��T�� 137 while s[ep] != "\"" and ep <= s.count do ep += 1 -- �Ō��"��T�� 401 format "%-%-%T%:%:%" dt[1] dt[2] dt[4] dt[5] dt[6] dt[7] to:ss
|
| /NW4C-2.0.3/tools/DccPlugin/3dsMax/x64/2011/Scripts/Startup/ |
| D | NW4C_utils.ms.inc | 135 while s[ep] != "\"" and ep < s.count do ep += 1 -- �ŏ���"��T�� 137 while s[ep] != "\"" and ep <= s.count do ep += 1 -- �Ō��"��T�� 401 format "%-%-%T%:%:%" dt[1] dt[2] dt[4] dt[5] dt[6] dt[7] to:ss
|
| /NW4C-2.0.3/tools/DccPlugin/3dsMax/x86/2010/Scripts/Startup/ |
| D | NW4C_utils.ms.inc | 135 while s[ep] != "\"" and ep < s.count do ep += 1 -- �ŏ���"��T�� 137 while s[ep] != "\"" and ep <= s.count do ep += 1 -- �Ō��"��T�� 401 format "%-%-%T%:%:%" dt[1] dt[2] dt[4] dt[5] dt[6] dt[7] to:ss
|