| /NW4C-2.0.3/tools/DccPlugin/Maya/scripts/ |
| D | NW4C_CommonProc.mel | 42 get unix file path 46 global proc string NW4C_GetUnixFilePath(string $path) 48 int $size = size($path); 53 $c = substring($path, $ic, $ic); 68 global proc NW4C_SetCurDirFromFile(string $path) 70 if (size($path) == 0) 76 string $dirPath = dirname($path); 79 $path, 80 $projPath + $path,
|
| D | NW4C_SetAnimRange.mel | 2297 string $path; 2300 $path = `optionVar -q nw4cSetAnimRange_AnimRangeFileFolder`; 2301 if (`filetest -d $path`) 2303 return $path; 2306 $path = `workspace -q -rd`; 2307 if (`filetest -d $path`) 2309 return $path; 2324 string $path = GetAnimRangeFileFolder($wName, true); 2325 if ($path == "") 2330 workspace -dir $path; [all …]
|
| D | NW4C_ExpDialog.mel | 1552 $name = substitute(".*|", $name, ""); // to short path 2387 string $optStr = "", $path; 2411 $path = `textFieldGrp -q -tx nw4cExpDialog_OutFolder`; 2412 $optStr += "OutputFolder=" + NW4C_GetUnixFilePath($path) + ";"; 2416 $path = `textField -q -tx nw4cExpDialog_MergeCmdlPath`; 2417 $optStr += "MergeCmdlPath=" + NW4C_GetUnixFilePath($path) + ";"; 2885 remove no output child (both argments must be long path)
|
| /NW4C-2.0.3/sources/libraries/io/ |
| D | io_RomFileStream.cpp | 33 RomFileStream::RomFileStream( const char* path ) in RomFileStream() argument 36 Open( path ); in RomFileStream() 81 bool RomFileStream::Open( const char* path ) in Open() argument 83 NW_NULL_ASSERT( path ); in Open() 85 if ( nn::fs::OpenFile( &m_File, path ) ) in Open() 119 bool RomFileStream::Open( const char* path ) in Open() argument 121 NW_NULL_ASSERT( path ); in Open() 123 m_FileReader.Initialize( path ); in Open()
|
| D | io_HioFileStream.cpp | 61 HioFileStream::HioFileStream( const char* path, bit32 accessMode, in HioFileStream() argument 65 Open( path, accessMode, disp ); in HioFileStream() 90 bool HioFileStream::Open( const char* path, bit32 accessMode, in Open() argument 103 if ( m_File.Open( path, accessMode, disp ).IsSuccess() ) in Open()
|
| /NW4C-2.0.3/sources/libraries/gfx/res/ |
| D | gfx_ResUtil.cpp | 57 const char* path = referenceLut.GetPath(); in GetReferenceLutTarget() local 61 ResLookupTableSet resLutSet = graphicsFile.GetLutSets(path); in GetReferenceLutTarget() 83 const char* path = referenceTexture.GetPath(); in GetReferenceTextureTarget() local 84 ResTexture resTexture = graphicsFile.GetTextures(path); in GetReferenceTextureTarget() 116 const char* path = referenceShader.GetPath(); in GetReferenceShaderTarget() local 117 ResShader resShader = graphicsFile.GetShaders(path); in GetReferenceShaderTarget()
|
| /NW4C-2.0.3/include/nw/gfx/ |
| D | gfx_AnimEvaluator.h | 381 const char* path = member.GetPath(); in operator() local 382 size_t lenPath = std::strlen(path); in operator() 384 …NW_ASSERTMSG(std::strncmp(path, MATERIAL_PREFIX, MATERIAL_PREFIX_LEN) == 0, "Not material animatio… in operator() 396 path += MATERIAL_PREFIX_LEN; in operator() 400 while ((*path != 0) && (*path != '\"')) in operator() 402 ++path; in operator() 420 ut::strncat(replacedPath, MAX_BUFFER_LENGTH, path, lenPath); in operator()
|
| /NW4C-2.0.3/sources/libraries/lyt/ |
| D | lyt_Arc.cpp | 212 static bool isSame(const wchar_t* path, const wchar_t* string) in isSame() argument 217 if (tolower(*path++) != tolower(*string++)) in isSame() 223 if ( (*path == '/') || (*path == '\0') ) in isSame() 395 static u32 entryToPath(ARCHandle* handle, u32 entry, wchar_t* path, u32 maxlen) in entryToPath() argument 410 loc = entryToPath(handle, parentDir(FSTEntries, entry), path, maxlen); in entryToPath() 417 *(path + loc++) = '/'; in entryToPath() 419 loc += myStrncpy(path + loc, name, maxlen - loc); in entryToPath() 437 static bool ARCConvertEntrynumToPath(ARCHandle* handle, s32 entrynum, wchar_t* path, u32 maxlen) in ARCConvertEntrynumToPath() argument 455 loc = entryToPath(handle, (u32)entrynum, path, maxlen); in ARCConvertEntrynumToPath() 460 path[maxlen - 1] = '\0'; in ARCConvertEntrynumToPath() [all …]
|
| /NW4C-2.0.3/sources/libraries/snd/ |
| D | snd_RomSoundArchive.cpp | 56 bool RomSoundArchive::Open( const char* path ) in Open() argument 61 bool result = nn::fs::OpenFile( &m_FileInfo, path ); in Open() 64 NW_WARNING( false, "Cannot open file(%s)\n", path ); in Open() 72 m_FileReader.Initialize( path ); in Open() 86 std::size_t len = std::strlen( path ); in Open() 89 const char ch = path[ i ] ; in Open() 99 ut::strncpy( dirBuffer, FILE_PATH_MAX, path, static_cast<u32>( i ) ); in Open() 110 bool RomSoundArchive::Open( const wchar_t* path ) 113 m_FileReader.Initialize( path ); 604 RomSoundArchive::RomFileStream::RomFileStream( const char* path, u32 offset, u32 size ) in RomFileStream() argument [all …]
|
| D | snd_HioSoundArchive.cpp | 37 bool HioSoundArchive::Open( const char* path ) in Open() argument 41 path, in Open() 61 std::size_t len = std::strlen( path ); in Open() 64 const char ch = path[i]; in Open() 74 ut::strncpy( dirBuffer, FILE_PATH_MAX, path, static_cast<u32>( i ) ); in Open() 378 HioSoundArchive::HioFileStream::HioFileStream( const char* path, u32 offset, u32 size ) in HioFileStream() argument 380 path, nn::hio::HostFile::ACCESS_MODE_READ, nn::hio::HostFile::OPEN_DISP_OPEN_EXISTING ), in HioFileStream()
|
| /NW4C-2.0.3/include/nw/io/ |
| D | io_RomFileStream.h | 33 RomFileStream( const char* path ); 42 bool Open( const char* path );
|
| D | io_HioFileStream.h | 33 HioFileStream( const char* path, bit32 accessMode, nn::hio::HostFile::OpenDisp ); 42 bool Open( const char* path, bit32 accessMode, nn::hio::HostFile::OpenDisp );
|
| /NW4C-2.0.3/include/nw/snd/ |
| D | snd_HioSoundArchive.h | 224 HioFileStream( const char* path, u32 uffset, u32 size );
|
| D | snd_RomSoundArchive.h | 238 RomFileStream( const char* path, u32 offset, u32 size );
|
| /NW4C-2.0.3/include/nw/lyt/ |
| D | lyt_Arc.h | 441 bool ARCGetCurrentDir(ARCHandle* handle, wchar_t* path, u32 maxlen);
|
| /NW4C-2.0.3/build/omake/ |
| D | commondefs.om | 196 if $(not $(and $(defined-env PWD), $(exists-in-path cygpath)))
|
| /NW4C-2.0.3/documents/CreativeStudio/html/common/ |
| D | ibox.js | 49 setPath: function(path) { argument 50 _pub.base_url = path;
|
| /NW4C-2.0.3/tools/DccPlugin/3dsMax/x64/2009/Scripts/Startup/ |
| D | NW4C_menu.ms | 21 label lbl1 " File path:" width:72 height:20 align:#left across:4
|
| /NW4C-2.0.3/tools/DccPlugin/3dsMax/x86/2011/Scripts/Startup/ |
| D | NW4C_menu.ms | 21 label lbl1 " File path:" width:72 height:20 align:#left across:4
|
| /NW4C-2.0.3/tools/DccPlugin/3dsMax/x64/2011/Scripts/Startup/ |
| D | NW4C_menu.ms | 21 label lbl1 " File path:" width:72 height:20 align:#left across:4
|
| /NW4C-2.0.3/tools/DccPlugin/3dsMax/x86/2010/Scripts/Startup/ |
| D | NW4C_menu.ms | 21 label lbl1 " File path:" width:72 height:20 align:#left across:4
|
| /NW4C-2.0.3/tools/DccPlugin/3dsMax/x64/2010/Scripts/Startup/ |
| D | NW4C_menu.ms | 21 label lbl1 " File path:" width:72 height:20 align:#left across:4
|
| /NW4C-2.0.3/tools/DccPlugin/3dsMax/x86/2009/Scripts/Startup/ |
| D | NW4C_menu.ms | 21 label lbl1 " File path:" width:72 height:20 align:#left across:4
|