| /NW4C-1.2.23/tools/DccPlugin/Maya/scripts/ |
| D | NW4C_CommonProc.mel | 43 get unix file path 47 global proc string NW4C_GetUnixFilePath(string $path) 49 int $size = size($path); 54 $c = substring($path, $ic, $ic); 69 global proc NW4C_SetCurDirFromFile(string $path) 71 if (size($path) == 0) 77 string $dirPath = dirname($path); 80 $path, 81 $projPath + $path,
|
| D | NW4C_SetAnimRange.mel | 2270 string $path; 2273 $path = `optionVar -q nw4cSetAnimRange_AnimRangeFileFolder`; 2274 if (`filetest -d $path`) 2276 return $path; 2279 $path = `workspace -q -rd`; 2280 if (`filetest -d $path`) 2282 return $path; 2297 string $path = GetAnimRangeFileFolder($wName, true); 2298 if ($path == "") 2303 workspace -dir $path; [all …]
|
| D | NW4C_ExpDialog.mel | 1477 $name = substitute(".*|", $name, ""); // to short path 2268 string $optStr = "", $path; 2288 $path = `textFieldGrp -q -tx nw4cExpDialog_OutFolder`; 2289 $optStr += "OutputFolder=" + NW4C_GetUnixFilePath($path) + ";"; 2293 $path = `textField -q -tx nw4cExpDialog_MergeCmdlPath`; 2294 $optStr += "MergeCmdlPath=" + NW4C_GetUnixFilePath($path) + ";"; 2770 remove no output child (both argments must be long path)
|
| /NW4C-1.2.23/sources/libraries/io/ |
| D | io_RomFileStream.cpp | 31 RomFileStream::RomFileStream( const char* path ) in RomFileStream() argument 34 Open( path ); in RomFileStream() 79 bool RomFileStream::Open( const char* path ) in Open() argument 81 NW_NULL_ASSERT( path ); in Open() 83 if ( nn::fs::OpenFile( &m_File, path ) ) in Open() 117 bool RomFileStream::Open( const char* path ) in Open() argument 119 NW_NULL_ASSERT( path ); in Open() 121 m_FileReader.Initialize( path ); in Open()
|
| D | io_HioFileStream.cpp | 59 HioFileStream::HioFileStream( const char* path, bit32 accessMode, in HioFileStream() argument 63 Open( path, accessMode, disp ); in HioFileStream() 88 bool HioFileStream::Open( const char* path, bit32 accessMode, in Open() argument 101 if ( m_File.Open( path, accessMode, disp ).IsSuccess() ) in Open()
|
| /NW4C-1.2.23/sources/libraries/lyt/ |
| D | lyt_Arc.cpp | 210 static bool isSame(const wchar_t* path, const wchar_t* string) in isSame() argument 215 if (tolower(*path++) != tolower(*string++)) in isSame() 221 if ( (*path == '/') || (*path == '\0') ) in isSame() 393 static u32 entryToPath(ARCHandle* handle, u32 entry, wchar_t* path, u32 maxlen) in entryToPath() argument 408 loc = entryToPath(handle, parentDir(FSTEntries, entry), path, maxlen); in entryToPath() 415 *(path + loc++) = '/'; in entryToPath() 417 loc += myStrncpy(path + loc, name, maxlen - loc); in entryToPath() 435 static bool ARCConvertEntrynumToPath(ARCHandle* handle, s32 entrynum, wchar_t* path, u32 maxlen) in ARCConvertEntrynumToPath() argument 453 loc = entryToPath(handle, (u32)entrynum, path, maxlen); in ARCConvertEntrynumToPath() 458 path[maxlen - 1] = '\0'; in ARCConvertEntrynumToPath() [all …]
|
| /NW4C-1.2.23/sources/libraries/gfx/res/ |
| D | gfx_ResUtil.cpp | 55 const char* path = referenceLut.GetPath(); in GetReferenceLutTarget() local 59 ResLookupTableSet resLutSet = graphicsFile.GetLutSets(path); in GetReferenceLutTarget() 81 const char* path = referenceTexture.GetPath(); in GetReferenceTextureTarget() local 82 ResTexture resTexture = graphicsFile.GetTextures(path); in GetReferenceTextureTarget() 114 const char* path = referenceShader.GetPath(); in GetReferenceShaderTarget() local 115 ResShader resShader = graphicsFile.GetShaders(path); in GetReferenceShaderTarget()
|
| /NW4C-1.2.23/sources/libraries/snd/ |
| D | snd_RomSoundArchive.cpp | 54 bool RomSoundArchive::Open( const char* path ) in Open() argument 59 bool result = nn::fs::OpenFile( &m_FileInfo, path ); in Open() 62 NW_WARNING( false, "Cannot open file(%s)\n", path ); in Open() 70 m_FileReader.Initialize( path ); in Open() 84 std::size_t len = std::strlen( path ); in Open() 87 const char ch = path[ i ] ; in Open() 97 ut::strncpy( dirBuffer, FILE_PATH_MAX, path, static_cast<u32>( i ) ); in Open() 108 bool RomSoundArchive::Open( const wchar_t* path ) 111 m_FileReader.Initialize( path ); 602 RomSoundArchive::RomFileStream::RomFileStream( const char* path, u32 offset, u32 size ) in RomFileStream() argument [all …]
|
| D | snd_HioSoundArchive.cpp | 35 bool HioSoundArchive::Open( const char* path ) in Open() argument 39 path, in Open() 59 std::size_t len = std::strlen( path ); in Open() 62 const char ch = path[i]; in Open() 72 ut::strncpy( dirBuffer, FILE_PATH_MAX, path, static_cast<u32>( i ) ); in Open() 376 HioSoundArchive::HioFileStream::HioFileStream( const char* path, u32 offset, u32 size ) in HioFileStream() argument 378 path, nn::hio::HostFile::ACCESS_MODE_READ, nn::hio::HostFile::OPEN_DISP_OPEN_EXISTING ), in HioFileStream()
|
| /NW4C-1.2.23/include/nw/io/ |
| D | io_RomFileStream.h | 31 RomFileStream( const char* path ); 40 bool Open( const char* path );
|
| D | io_HioFileStream.h | 31 HioFileStream( const char* path, bit32 accessMode, nn::hio::HostFile::OpenDisp ); 40 bool Open( const char* path, bit32 accessMode, nn::hio::HostFile::OpenDisp );
|
| /NW4C-1.2.23/include/nw/snd/ |
| D | snd_HioSoundArchive.h | 78 HioFileStream( const char* path, u32 uffset, u32 size );
|
| D | snd_RomSoundArchive.h | 236 RomFileStream( const char* path, u32 offset, u32 size );
|
| /NW4C-1.2.23/include/nw/lyt/ |
| D | lyt_Arc.h | 95 bool ARCGetCurrentDir(ARCHandle* handle, wchar_t* path, u32 maxlen);
|
| /NW4C-1.2.23/build/omake/ |
| D | commondefs.om | 194 if $(not $(and $(defined-env PWD), $(exists-in-path cygpath)))
|
| /NW4C-1.2.23/documents/CreativeStudio/html/common/ |
| D | ibox.js | 49 setPath: function(path) { argument 50 _pub.base_url = path;
|
| /NW4C-1.2.23/tools/DccPlugin/3dsMax/x86/2010/Scripts/Startup/ |
| D | NW4C_menu.ms | 21 label lbl1 "File path:" pos:[16,66] width:72 height:20
|
| /NW4C-1.2.23/tools/DccPlugin/3dsMax/x64/2009/Scripts/Startup/ |
| D | NW4C_menu.ms | 21 label lbl1 "File path:" pos:[16,66] width:72 height:20
|
| /NW4C-1.2.23/tools/DccPlugin/3dsMax/x86/2009/Scripts/Startup/ |
| D | NW4C_menu.ms | 21 label lbl1 "File path:" pos:[16,66] width:72 height:20
|
| /NW4C-1.2.23/tools/DccPlugin/3dsMax/x64/2010/Scripts/Startup/ |
| D | NW4C_menu.ms | 21 label lbl1 "File path:" pos:[16,66] width:72 height:20
|