Home
last modified time | relevance | path

Searched refs:key (Results 1 – 25 of 32) sorted by relevance

12

/NW4C-1.2.23/include/nw/ut/
Dut_ResDictionary.h42 virtual void* operator[](const char* key) const = 0;
43 virtual void* operator[](const ResName key) const = 0;
47 virtual s32 GetIndex(const char* key) const = 0;
69 void* operator[](const char* key) const { return m_Dic[ key ]; }
70 void* operator[](const ResName key) const { return m_Dic[ key ]; }
74 s32 GetIndex(const char* key) const { return m_Dic.GetIndex( key ); }
120 void* operator[](const char* key) const
122 s32 idx = this->GetIndex(key);
127 void* operator[](const ResName key) const
129 s32 idx = this->GetIndex(key);
[all …]
Dut_ResDeclMacros.h239 type Get##name(const char* key) \
242 return type( dic[ key ] ); \
250 const type Get##name(const char* key) const \
253 return type( dic[ key ] ); \
255 s32 Get##name##Index(const char* key) const \
258 return dic.GetIndex( key ); \
/NW4C-1.2.23/sources/libraries/gfx/
Dgfx_SortingMaterialIdGenerator.cpp72 return lhs.key < rhs.key; in operator ()()
105 materialKeyValue.key = reinterpret_cast<u32>(material->GetOriginal().ptr()); in Accept()
128 if (lastPtrKey != (*iter).key) in Generate()
136 u32 key = reinterpret_cast<u32>(resDescription.GetOwnerShaderData()); in Generate() local
140 materialKeyValue.key = key; in Generate()
144 lastPtrKey = (*iter).key; in Generate()
160 if (lastShaderKey != m_MaterialsWorkSpace[index].key || in Generate()
175 lastShaderKey = m_MaterialsWorkSpace[index].key; in Generate()
/NW4C-1.2.23/sources/libraries/snd/
Dsnd_MidiSequencePlayer.cpp129 void MidiSequencePlayer::NoteOn( u8 channelIndex, u8 key, u8 velocity ) in NoteOn() argument
136 key = static_cast<u8>( ut::Clamp( key + trackParam.transpose, 0, 127 ) ); in NoteOn()
146 channel->SetKey( key ); in NoteOn()
149 noteInfo->key = key; in NoteOn()
157 Channel* channel = track->NoteOn( key, velocity, -1, false ); in NoteOn()
165 noteInfo->key = key; in NoteOn()
168 void MidiSequencePlayer::NoteOff( u8 channelIndex, u8 key, u8 velocity ) in NoteOff() argument
176 key = static_cast<u8>( ut::Clamp( key + param.transpose, 0, 127 ) ); in NoteOff()
180 NoteInfo* noteInfo = FindNoteInfo( channelIndex, key ); in NoteOff()
518 MidiSequencePlayer::NoteInfo* MidiSequencePlayer::FindNoteInfo( int channelIndex, int key ) in FindNoteInfo() argument
[all …]
Dsnd_SequenceTrack.cpp678 int key, in NoteOn() argument
684 NW_MINMAX_ASSERT( key, 0, 127 ); in NoteOn()
700 channel->SetKey( static_cast<u8>( key ) ); in NoteOn()
720 channel->SetKey( static_cast<u8>( key ) ); in NoteOn()
732 key, in NoteOn()
796 sweepPitch += m_ParserTrackParam.portaKey - key; in NoteOn()
816 m_ParserTrackParam.portaKey = static_cast<u8>( key ); in NoteOn()
Dsnd_Bank.cpp78 noteOnInfo.key, in NoteOn()
115 pChannel->SetKey( noteOnInfo.key, regionInfo.originalKey ); in NoteOn()
Dsnd_BankFileReader.cpp84 int key, in ReadVelocityRegionInfo() argument
101 const BankFile::KeyRegion* keyRegion = instrument->GetKeyRegion( key ); in ReadVelocityRegionInfo()
Dsnd_MmlParser.cpp109 int key = static_cast<int>( cmd ) + trackParam.transpose; in Parse() local
112 key = ut::Clamp( key, 0, 127 ); in Parse()
118 key, in Parse()
891 int key, in NoteOnCommandProc() argument
897 track->NoteOn( key, velocity, length, tieFlag ); in NoteOnCommandProc()
/NW4C-1.2.23/include/nw/lyt/
Dlyt_ArcResourceAccessor.h139 void UnregistFont(FontKey key);
166 void UnregistTexture(TextureKey key);
420 void UnregistFont(FontKey key);
447 void UnregistTexture(TextureKey key);
Dlyt_TextureContainer.h171 void UnregistTexture(TextureKey key);
Dlyt_FontContainer.h183 void UnregistFont(FontKey key);
/NW4C-1.2.23/sources/libraries/lyt/
Dlyt_TextureContainer.cpp102 TextureContainer::UnregistTexture(TextureKey key) in UnregistTexture() argument
104 NW_NULL_ASSERT(key); in UnregistTexture()
106 TextureRefLink* pLink = (TextureRefLink*)(key); in UnregistTexture()
Dlyt_ArcResourceAccessor.cpp315 ArcResourceAccessor::UnregistFont(FontKey key) in UnregistFont() argument
317 m_FontList.UnregistFont(key); in UnregistFont()
348 ArcResourceAccessor::UnregistTexture(TextureKey key) in UnregistTexture() argument
350 m_TextureList.UnregistTexture(key); in UnregistTexture()
449 MultiArcResourceAccessor::UnregistFont(FontKey key) in UnregistFont() argument
451 m_FontList.UnregistFont(key); in UnregistFont()
482 MultiArcResourceAccessor::UnregistTexture(TextureKey key) in UnregistTexture() argument
484 m_TextureList.UnregistTexture(key); in UnregistTexture()
Dlyt_FontContainer.cpp119 FontContainer::UnregistFont(FontKey key) in UnregistFont() argument
121 NW_NULL_ASSERT(key); in UnregistFont()
123 FontRefLink* pLink = (FontRefLink*)(key); in UnregistFont()
/NW4C-1.2.23/include/nw/snd/
Dsnd_MidiSequencePlayer.h125 int key; member
165 void NoteOn( u8 channelIndex, u8 key, u8 velocity );
166 void NoteOff( u8 channelIndex, u8 key, u8 velocity );
180 NoteInfo* FindNoteInfo( int channelIndex, int key );
Dsnd_Channel.h132 void SetKey( u8 key ) { m_Key = key; } in SetKey() argument
133 void SetKey( u8 key, u8 originalKey ) { m_Key = key; m_OriginalKey = originalKey; } in SetKey() argument
Dsnd_NoteOnCallback.h31 int key; member
Dsnd_BankFileReader.h55 int key,
Dsnd_MmlParser.h74 int key,
/NW4C-1.2.23/tools/DccPlugin/3dsMax/x86/2010/Scripts/Startup/
DNW4C_utils.ms.inc19 fn outValue fs key v =
21 format "%=\"%\"\n" key (v as string) to:fs
24 fn outVersion fs key v =
34 outValue fs key str
37 fn outQuantValue fs key v =
46 outValue fs key str
73 local str, key, val
82 key = elem[1]
84 --format "\"%\"=\"%\"\n" key val
85 case key of
[all …]
/NW4C-1.2.23/tools/DccPlugin/3dsMax/x86/2009/Scripts/Startup/
DNW4C_utils.ms.inc19 fn outValue fs key v =
21 format "%=\"%\"\n" key (v as string) to:fs
24 fn outVersion fs key v =
34 outValue fs key str
37 fn outQuantValue fs key v =
46 outValue fs key str
73 local str, key, val
82 key = elem[1]
84 --format "\"%\"=\"%\"\n" key val
85 case key of
[all …]
/NW4C-1.2.23/tools/DccPlugin/3dsMax/x64/2009/Scripts/Startup/
DNW4C_utils.ms.inc19 fn outValue fs key v =
21 format "%=\"%\"\n" key (v as string) to:fs
24 fn outVersion fs key v =
34 outValue fs key str
37 fn outQuantValue fs key v =
46 outValue fs key str
73 local str, key, val
82 key = elem[1]
84 --format "\"%\"=\"%\"\n" key val
85 case key of
[all …]
/NW4C-1.2.23/tools/DccPlugin/3dsMax/x64/2010/Scripts/Startup/
DNW4C_utils.ms.inc19 fn outValue fs key v =
21 format "%=\"%\"\n" key (v as string) to:fs
24 fn outVersion fs key v =
34 outValue fs key str
37 fn outQuantValue fs key v =
46 outValue fs key str
73 local str, key, val
82 key = elem[1]
84 --format "\"%\"=\"%\"\n" key val
85 case key of
[all …]
/NW4C-1.2.23/sources/libraries/ut/
Dut_ResDictionary.cpp25 ResDicLinear::GetIndex(const char* key) const in GetIndex()
27 if ( (! this->IsValid()) || (! key) ) { return -1; } in GetIndex()
33 if ( x->toName.offset != 0 && std::strcmp(key, x->toName.to_ptr()) == 0 ) in GetIndex()
/NW4C-1.2.23/include/nw/gfx/
Dgfx_SortingMaterialIdGenerator.h34 u32 key; member

12