| /NW4C-1.2.23/sources/libraries/snd/ |
| D | snd_DriverCommand.cpp | 38 DriverCommandReply* c = reinterpret_cast<DriverCommandReply*>(command); in ProcessCommandList() local 39 *(c->ptr) = true; in ProcessCommandList() 45 DriverCommandPlayerInit* c = reinterpret_cast<DriverCommandPlayerInit*>(command); in ProcessCommandList() local 46 c->player->Initialize(); in ProcessCommandList() 47 *(c->availableFlagPtr) = true; in ProcessCommandList() 53 DriverCommandPlayer* c = reinterpret_cast<DriverCommandPlayer*>(command); in ProcessCommandList() local 54 c->player->Finalize(); in ProcessCommandList() 60 DriverCommandPlayer* c = reinterpret_cast<DriverCommandPlayer*>(command); in ProcessCommandList() local 61 c->player->Start(); in ProcessCommandList() 67 DriverCommandPlayer* c = reinterpret_cast<DriverCommandPlayer*>(command); in ProcessCommandList() local [all …]
|
| /NW4C-1.2.23/sources/libraries/font/ |
| D | font_PairFont.cpp | 145 PairFont::SetAlternateChar(CharCode c) in SetAlternateChar() argument 147 bool bPrimary = m_Primary->SetAlternateChar(c); in SetAlternateChar() 148 bool bSecondary = m_Secondary->SetAlternateChar(c); in SetAlternateChar() 182 PairFont::GetCharWidth(CharCode c) const in GetCharWidth() 184 if (m_Primary->HasGlyph(c)) in GetCharWidth() 186 return m_Primary->GetCharWidth(c); in GetCharWidth() 188 else if (m_Secondary->HasGlyph(c)) in GetCharWidth() 190 return m_Secondary->GetCharWidth(c); in GetCharWidth() 194 return m_Primary->GetCharWidth(c); in GetCharWidth() 198 return m_Secondary->GetCharWidth(c); in GetCharWidth() [all …]
|
| D | font_ResFontBase.cpp | 203 ResFontBase::SetAlternateChar( CharCode c ) in SetAlternateChar() argument 206 GlyphIndex index = FindGlyphIndex(c); in SetAlternateChar() 233 ResFontBase::GetCharWidth( CharCode c ) const in GetCharWidth() 235 return GetCharWidths(c).charWidth; in GetCharWidth() 239 ResFontBase::GetCharWidths( CharCode c ) const in GetCharWidths() 241 GlyphIndex index = GetGlyphIndex(c); in GetCharWidths() 246 ResFontBase::GetGlyph( Glyph* glyph, CharCode c ) const in GetGlyph() 248 GlyphIndex index = GetGlyphIndex(c); in GetGlyph() 253 ResFontBase::HasGlyph( CharCode c ) const in HasGlyph() 255 return ( GLYPH_INDEX_NOT_FOUND != FindGlyphIndex(c) ); in HasGlyph() [all …]
|
| D | font_CharStrmReader.cpp | 55 IsSJISLeadByte(u8 c) in IsSJISLeadByte() argument 57 return ((SJIS_HIGH0_ST <= c) && (c < SJIS_HIGH2_ED)) in IsSJISLeadByte() 58 || (SJIS_HIGH3_ST <= c); in IsSJISLeadByte()
|
| D | font_PackedFont.cpp | 317 CharCode c in GetGlyph() 322 GlyphIndex index = GetGlyphIndex(c); in GetGlyph() 359 PackedFont::PreloadSheet(CharCode c) in PreloadSheet() argument 364 int compIndex = GetSheetIndex(c); in PreloadSheet() 379 PackedFont::LockSheet(CharCode c) in LockSheet() argument 382 int compIndex = GetSheetIndex(c); in LockSheet() 403 CharCode c, in UnlockSheet() argument 407 int compIndex = GetSheetIndex(c); in UnlockSheet() 701 PackedFont::GetSheetIndex(CharCode c) const in GetSheetIndex() 704 GlyphIndex index = GetGlyphIndex(c); in GetSheetIndex()
|
| /NW4C-1.2.23/demos/Nw4cDemo/resource/ |
| D | res_conv_lyt.bat | 4 %LYT_ARCV% -c ../romfiles/menu_btn.arc -a 128 -f ToyLytMenu ./blyt ./anim ./font ./timg 6 %LYT_ARCV% -c ../romfiles/tab.arc -a 128 -f ToyLytTab ./blyt ./anim ./timg 8 %LYT_ARCV% -c ../romfiles/slider.arc -a 128 -f ToyLytSlider ./blyt ./timg 10 %LYT_ARCV% -c ../romfiles/button.arc -a 128 -f ToyLytBtn ./blyt ./anim ./timg 12 %LYT_ARCV% -c ../romfiles/pierrot_btn.arc -a 128 -f ToyPierrotLytBtn ./blyt ./anim ./timg 13 %LYT_ARCV% -c ../romfiles/robot_btn.arc -a 128 -f ToyRobotLytBtn ./blyt ./anim ./timg 14 %LYT_ARCV% -c ../romfiles/stage_btn.arc -a 128 -f ToyStageLytBtn ./blyt ./anim ./timg 15 %LYT_ARCV% -c ../romfiles/audience_btn.arc -a 128 -f ToyAudienceLytBtn ./blyt ./anim ./timg 16 %LYT_ARCV% -c ../romfiles/particle_btn.arc -a 128 -f ToyParticleLytBtn ./blyt ./anim ./timg
|
| /NW4C-1.2.23/tools/DccPlugin/Maya/scripts/ |
| D | NW4C_CreateMenu.mel | 73 -c "NW4C_ExpDirect"; 77 -c "NW4C_ExpDialog"; 85 -c "NW4C_SetMaterialAttr"; 91 -c "NW4C_SetRenderPriority"; 97 // -c "NW4C_SetNormalMappingAttr"; 105 -c "NW4C_SetNoCompressNode"; 111 -c "NW4C_SetBillboard"; 117 -c "NW4C_SetCombineGroup"; 123 // -c "NW4C_SetPrimitiveType"; 131 -c "NW4C_SetAnimRange"; [all …]
|
| D | NW4C_CommonProc.mel | 54 $c = substring($path, $ic, $ic); 55 if ($c == "\\") 57 $c = "/"; 59 $dst += $c;
|
| /NW4C-1.2.23/include/nw/font/ |
| D | font_ResFontBase.h | 77 virtual bool SetAlternateChar(CharCode c); 84 virtual int GetCharWidth(CharCode c) const; 87 GetCharWidths(CharCode c) const; 91 CharCode c 94 virtual bool HasGlyph(CharCode c) const; 189 GlyphIndex GetGlyphIndex(CharCode c) const; 199 GlyphIndex FindGlyphIndex(CharCode c) const; 212 CharCode c
|
| D | font_PairFont.h | 85 virtual bool SetAlternateChar(CharCode c); 96 CharCode c // 幅を求める文字 100 CharCode c // 幅を求める文字 105 CharCode c // グリフ情報を取得する文字 108 CharCode c // グリフ情報の有無を取得する文字
|
| D | font_Font.h | 265 virtual bool SetAlternateChar(CharCode c) = 0; 279 virtual int GetCharWidth(CharCode c) const = 0; 288 GetCharWidths(CharCode c) const = 0; 297 CharCode c 307 CharCode c
|
| D | font_PackedFont.h | 202 bool PreloadSheet(CharCode c); 212 bool LockSheet(CharCode c); 222 CharCode c, 243 CharCode c 408 int GetSheetIndex(CharCode c) const;
|
| D | font_RectDrawerCommand.h | 115 #define NW_FONT_CMD_SCISSOR_VAL( s, c ) \ argument 116 static_cast<u16>( (s) >= (c) ? (c) - 1: ((s) < 0 ? 0: (s)) )
|
| /NW4C-1.2.23/include/nw/ut/ |
| D | ut_BinaryFileFormat.h | 32 #define NW_UT_MAKE_SIGWORD(a,b,c,d) \ argument 36 | (static_cast<u8>(c) << 16) \ 43 #define NW_UT_MAKE_SIGWORD(a,b,c,d) \ argument 47 | (static_cast<u8>(c) << 8) \
|
| /NW4C-1.2.23/include/nw/gfx/ |
| D | gfx_ShaderBinaryInfo.h | 539 u32 c = 0; in GetShaderOutputRegisterMap() local 551 value = 0x00 + c++; in GetShaderOutputRegisterMap() 552 if (c == 2) { clock |= 1 << 0; } in GetShaderOutputRegisterMap() 557 value = 0x04 + c++; in GetShaderOutputRegisterMap() 563 value = 0x08 + c++; in GetShaderOutputRegisterMap() 569 if (c < 2) { value = 0x0c + c++; } in GetShaderOutputRegisterMap() 583 if (c < 2) { value = 0x0e + c++; } in GetShaderOutputRegisterMap() 590 if (c < 2) { value = 0x16 + c++; } in GetShaderOutputRegisterMap() 597 if (c < 3) { value = 0x12 + c++; } in GetShaderOutputRegisterMap()
|
| /NW4C-1.2.23/demos/lyt/multiArc/ |
| D | setup.bat | 21 %ARCH% -r *.bclim 128 -r *.bcfnt 128 -r *.bcfna 128 -a 4 -c romfiles\layout1.arc -f objects\brsrc1 . 22 %ARCH% -r *.bclim 128 -r *.bcfnt 128 -r *.bcfna 128 -a 4 -c romfiles\layout2.arc -f objects\brsrc2 . 23 %ARCH% -r *.bclim 128 -r *.bcfnt 128 -r *.bcfna 128 -a 4 -c romfiles\layout3.arc -f objects\brsrc3 .
|
| /NW4C-1.2.23/sources/libraries/dev/ |
| D | dev_DirectPrint.cpp | 482 char c; // カレント文字 in DrawLine() local 489 while ((c = *str) != '\0') in DrawLine() 492 if (c == '\n' || c == '\0') in DrawLine() 498 code = sAsciiTable[c & 0x7f]; in DrawLine() 593 char c; in StrLineWidth() local 599 c = *str++; in StrLineWidth() 600 if (c == '\0' || c == '\n') in StrLineWidth() 604 if (c == '\t') in StrLineWidth()
|
| /NW4C-1.2.23/documents/License/IronRuby/ |
| D | LICENSE.Ruby.txt | 20 c) rename any non-standard executables so the names do not conflict 35 c) give non-standard executables non-standard names, with 44 They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
|
| /NW4C-1.2.23/documents/API/css/ |
| D | document.css | 250 border-right : solid 1px #00c; 251 border-bottom : solid 1px #00c; 278 border-right : solid 1px #00c; 279 border-bottom : solid 1px #00c;
|
| /NW4C-1.2.23/demos/lyt/orthoStereo/ |
| D | setup.bat | 6 …ter\NW4C_LayoutArchiver" -r *.bclim 128 -r *.bcfnt 128 -r *.bcfna 128 -a 4 -c ..\..\romfiles\layou…
|
| /NW4C-1.2.23/demos/lyt/simple/ |
| D | setup.bat | 6 …ter\NW4C_LayoutArchiver" -r *.bclim 128 -r *.bcfnt 128 -r *.bcfna 128 -a 4 -c ..\..\romfiles\layou…
|
| /NW4C-1.2.23/demos/lyt/locationAdjust/ |
| D | setup.bat | 6 …ter\NW4C_LayoutArchiver" -r *.bclim 128 -r *.bcfnt 128 -r *.bcfna 128 -a 4 -c ..\..\romfiles\layou…
|
| /NW4C-1.2.23/demos/lyt/simple2/ |
| D | setup.bat | 6 …ter\NW4C_LayoutArchiver" -r *.bclim 128 -r *.bcfnt 128 -r *.bcfna 128 -a 4 -c ..\..\romfiles\layou…
|
| /NW4C-1.2.23/demos/lyt/perspective/ |
| D | setup.bat | 6 …ter\NW4C_LayoutArchiver" -r *.bclim 128 -r *.bcfnt 128 -r *.bcfna 128 -a 4 -c ..\..\romfiles\layou…
|
| /NW4C-1.2.23/demos/lyt/tagGroupBind/ |
| D | setup.bat | 6 …ter\NW4C_LayoutArchiver" -r *.bclim 128 -r *.bcfnt 128 -r *.bcfna 128 -a 4 -c ..\..\romfiles\layou…
|