Home
last modified time | relevance | path

Searched refs:name (Results 1 – 25 of 137) sorted by relevance

123456

/NW4C-2.0.3/include/nw/ut/
Dut_ResDeclMacros.h29 #define NW_RES_FIELD_PRIMITIVE_DECL( type, name ) \ argument
30 type Get##name() const { return static_cast<type>(ref().m_##name); } \
31 void Set##name(type value) { ref().m_##name = value; } \
33 #define NW_RES_FIELD_FLAGS_DECL( type, name ) \ argument
34 type Get##name() const { return static_cast<type>(ref().m_##name); } \
35 void Set##name(type value) { ref().m_##name = value; } \
36 …void Enable##name(type value) { ref().m_##name = ut::EnableFlag(ref().m_##name, value); } …
37 …void Disable##name(type value) { ref().m_##name = ut::DisableFlag(ref().m_##name, value); }…
39 #define NW_RES_FIELD_BOOL_PRIMITIVE_DECL( name ) \ argument
40 bool Is##name() const { return static_cast<bool>(ref().m_Is##name); } \
[all …]
Dut_TypeTraits.h65 #define NW_UT_DECLARE_TYPE_REMOVE_TEMPLATE_BASE_(name, ttype) \
67 struct name \
72 #define NW_UT_DECLARE_TYPE_REMOVE_TEMPLATE_(name, ttype, modifier) \
74 struct name<modifier> \
79 #define NW_UT_DECLARE_TYPE_REMOVE_TEMPLATE2_(name, ttype, modifier, ...) \
81 struct name<modifier> \
Dut_ResTypeInfo.h30 #define NW_UT_RES_TYPE_INFO(name) internal::name##_TYPE_INFO argument
/NW4C-2.0.3/sources/libraries/lyt/
Dlyt_ArcResourceAccessor.cpp122 bSuccess = ARCChangeDir(pArcHandle, dirEntry.name); in FindNameResource()
134 if (wcsicmp(resName, dirEntry.name) == 0) in FindNameResource()
153 const wchar_t* name, in GetResourceSub() argument
165 entryNum = FindNameResource(pArcHandle, name); in GetResourceSub()
180 entryNum = ARCConvertPathToEntrynum(pArcHandle, name); in GetResourceSub()
255 const char* name, in GetResource() argument
260 strncpy(m_ResNameWork, dstBufCount, name); in GetResource()
293 ArcResourceAccessor::GetFont(const char *name) in GetFont() argument
295 font::Font* pFont = m_FontList.FindFontByName(name); in GetFont()
299 pFont = this->LoadFont(name); in GetFont()
[all …]
Dlyt_TextureContainer.cpp41 const char* name, in Set() argument
44 NW_NULL_ASSERT(name); in Set()
47 ut::strcpy(m_Name, sizeof(m_Name), name); in Set()
68 TextureContainer::FindTextureByName(const char* name) in FindTextureByName() argument
72 if (0 == std::strcmp(name, it->GetResourceName())) in FindTextureByName()
99 TextureContainer::RegistTexture(const char* name, const TextureInfo& textureInfo) in RegistTexture() argument
101 NW_ASSERT(name); in RegistTexture()
109 pLink->Set(name, textureInfo); in RegistTexture()
Dlyt_ResourceAccessor.cpp39 ResourceAccessor::LoadTexture(const char *name) in LoadTexture() argument
42 void* pTexRes = this->GetResource(res::RESOURCETYPE_TEXTURE, name, &size); in LoadTexture()
45 NW_WARNING(false, "texture resource not found. - %s", name); in LoadTexture()
52 NW_WARNING(false, "texture object unavailable. - %s", name); in LoadTexture()
60 ResourceAccessor::LoadFont(const char *name) in LoadFont() argument
63 void* pFontRes = this->GetResource(res::RESOURCETYPE_FONT, name, &size); in LoadFont()
66 NW_WARNING(false, "font resource not found. - %s", name); in LoadFont()
Dlyt_FontContainer.cpp61 const char* name, in Set() argument
66 ut::strcpy(m_FontName, sizeof(m_FontName), name); in Set()
89 const char* name in FindFontByName() argument
94 if (0 == std::strcmp(name, it->GetFontName())) in FindFontByName()
121 FontContainer::RegistFont(const char* name, font::Font* pFont, bool own) in RegistFont() argument
130 pLink->Set(name, pFont, own); in RegistFont()
/NW4C-2.0.3/include/nw/lyt/
Dlyt_ArcResourceAccessor.h88 const char* name,
131 FontKey RegistFont(const char* name, font::Font* pFont);
158 TextureKey RegistTexture(const char* name, const TextureInfo& textureInfo);
189 virtual const TextureInfo GetTexture(const char* name);
208 virtual font::Font* GetFont(const char* name);
456 const char* name,
475 FontKey RegistFont(const char* name, font::Font* pFont);
502 TextureKey RegistTexture(const char* name, const TextureInfo& textureInfo);
533 virtual const TextureInfo GetTexture(const char* name);
552 virtual font::Font* GetFont(const char* name);
Dlyt_ResourceAccessor.h106 const char* name,
130 virtual font::Font* GetFont(const char* name) = 0;
155 virtual const TextureInfo GetTexture(const char* name) = 0;
177 virtual const TextureInfo LoadTexture(const char* name);
195 virtual font::Font* LoadFont(const char* name);
Dlyt_FontContainer.h84 const char* name,
182 FontKey RegistFont(const char* name, font::Font* pFont, bool own);
207 const char* name
Dlyt_TextureContainer.h168 TextureKey RegistTexture(const char* name, const TextureInfo& textureInfo);
193 const TextureInfo FindTextureByName(const char* name);
/NW4C-2.0.3/include/nw/dev/
Ddev_ParticleProfile.h87 static bool Start(const char* name);
140 #define NW_PARTICLE_PROFILE_START(name) bool ret = nw::dev::ParticleProfileCenter::Start(name) argument
145 #define NW_PARTICLE_PROFILE(name) \ argument
146 nw::dev::AutoProfile p(name, nw::dev::ParticleProfileCenter::GetProfileManager())
165 #define NW_PARTICLE_PROFILE_START(name) (void)0 argument
167 #define NW_PARTICLE_PROFILE(name) (void)0 argument
Ddev_Config.h31 #define NW_PROFILE(name) nw::dev::AutoProfile NW_profile(name, nw::dev::ProfileCenter::GetProfileMa… argument
39 #define NW_PROFILE(name) (void)0 argument
/NW4C-2.0.3/tools/CsdrUpdater/
Dreadme.txt16 2010/04/06 Changed the name to CsdrUpdater.
34 python CsdrUpdater.py [option] <input binary file name>
38 …specified by option, the output file name is created by removing the file extension from the input…
41 -i, --intermediate= : Specifies the template NWCS intermediate file name.
51 The shader name.
52 This corresponds to the name displayed on the NWCS Contents manager.
77 The reserved uniform name.
94 Specifies the vertex attribute and name.
99 The vertex attribute name.
/NW4C-2.0.3/demos/snd/demolib/include/
Ddemolib.h109 Param( const char* name ) : m_pName( name ) {} in Param() argument
134 ParamInt( const char* name, int init, int step, int min, int max ) in ParamInt() argument
135 : Param( name ), in ParamInt()
164 ParamF32( const char* name, f32 init, f32 step, f32 min, f32 max ) in ParamF32() argument
165 : Param( name ), in ParamF32()
194 ParamBool( const char* name, int init ) in ParamBool() argument
195 : Param( name ), in ParamBool()
/NW4C-2.0.3/tools/DccPlugin/Maya/scripts/
DNW4C_SetUserData.mel78 is user data name is unique
91 string $name = match("[^\"]*\"", $dataValues[$index]);
92 if (size($name) >= 2)
94 if (substring($name, 1, size($name) - 1) == $checkName)
106 $words[0]: name
113 string $name = match("[^\"]*\"", $userData);
118 int $nameSize = size($name);
121 $name = "error";
125 $name = substring($name, 1, $nameSize - 1);
140 $words[0] = $name;
[all …]
/NW4C-2.0.3/demos/Nw4cDemo/include/
DSmInitialFileParser.h198 std::string name; // 名前 member
219 m_Data[i].name = "null"; in Init()
235 const char* name = m_Data[i].name.c_str(); in GetF32() local
236 if ( strcmp( name, strName ) == 0 ) in GetF32()
DSmLayout.h99 nw::ut::Rect GetOriginalRect( const char* name ) const in GetOriginalRect() argument
103 nw::lyt::Pane* pane = rootPane->FindPaneByName( name ); in GetOriginalRect()
109 nw::ut::Rect GetRect( const char* name );
112 nw::lyt::Pane* GetPane( const char* name ) const in GetPane() argument
116 nw::lyt::Pane* pane = rootPane->FindPaneByName( name ); in GetPane()
/NW4C-2.0.3/include/nw/anim/res/
Danim_ResAnim.h742 #define NW_RESANM_GETCURVE_DECL( type, name, hasNoCurveFlag ) \ argument
743 const type* Get##name() const \
751 return reinterpret_cast<const type*>( ref().to##name.to_ptr() ); \
755 type* Get##name() \
763 return reinterpret_cast<type*>( ref().to##name.to_ptr() ); \
768 #define NW_RESANM_EVALUATE_FLOAT_DECL(name, constantFlag) \ argument
769 f32 Evaluate##name( f32 frame ) const \
773 return ref().constantValue##name; \
778 reinterpret_cast<const ResFloatCurveData*>( ref().to##name.to_ptr() ), \
784 #define NW_RESANM_EVALUATE_INT_DECL(name, constantFlag) \ argument
[all …]
Danim_ResTypeInfo.h30 #define NW_ANIM_RES_TYPE_INFO(name) res::name##_TYPE_INFO argument
/NW4C-2.0.3/SampleData/Graphics/DccPlugin/Maya/ToyBlock/scenes/
DToy_T.ma322 addAttr -ci true -sn "name" -ln "name" -dt "string" -p "stringOptions";
327 setAttr ".stringOptions[0].name" -type "string" "rast motion factor";
330 setAttr ".stringOptions[1].name" -type "string" "rast transparency depth";
333 setAttr ".stringOptions[2].name" -type "string" "raster use opacity";
336 setAttr ".stringOptions[3].name" -type "string" "importon";
339 setAttr ".stringOptions[4].name" -type "string" "importon density";
342 setAttr ".stringOptions[5].name" -type "string" "importon merge";
345 setAttr ".stringOptions[6].name" -type "string" "importon trace depth";
348 setAttr ".stringOptions[7].name" -type "string" "importon traverse";
351 setAttr ".stringOptions[8].name" -type "string" "shadowmap pixel samples";
[all …]
/NW4C-2.0.3/sources/libraries/dev/
Ddev_ParticleProfile.cpp89 bool ParticleProfileCenter::Start(const char* name) in Start() argument
94 m_Instance->m_Report.name = name; in Start()
/NW4C-2.0.3/sources/libraries/demo/
Ddemo_Particle.cpp157 const char** name = nodeNames; in Register() local
159 while (!find && *name != NULL) in Register()
161 if (strcmp(resourceName, *name) == 0) in Register()
166 ++name; in Register()
181 const char** name = nodeNames; in Register() local
183 while (!find && *name != NULL) in Register()
185 if (strcmp(resourceName, *name) == 0) in Register()
190 ++name; in Register()
/NW4C-2.0.3/tools/FontConverter/xggp/
Dglyph-groups.dtd17 <!ATTLIST generator name CDATA #REQUIRED> attribute
22 <!ATTLIST group name CDATA #REQUIRED> attribute
/NW4C-2.0.3/sources/shaders/gfx/ShadowShader/
Dgfx_ShadowShader.vsh22 //! @name ���̓��W�X�^
34 //! @name �R���X�^���g���W�X�^
73 //! @name �������W�X�^
81 //! @name �o�̓��W�X�^

123456