Home
last modified time | relevance | path

Searched refs:path (Results 1 – 20 of 20) sorted by relevance

/NW4C-1.2.23/tools/DccPlugin/Maya/scripts/
DNW4C_CommonProc.mel43 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,
DNW4C_SetAnimRange.mel2270 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 …]
DNW4C_ExpDialog.mel1477 $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/
Dio_RomFileStream.cpp31 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()
Dio_HioFileStream.cpp59 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/
Dlyt_Arc.cpp210 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/
Dgfx_ResUtil.cpp55 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/
Dsnd_RomSoundArchive.cpp54 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 …]
Dsnd_HioSoundArchive.cpp35 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/
Dio_RomFileStream.h31 RomFileStream( const char* path );
40 bool Open( const char* path );
Dio_HioFileStream.h31 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/
Dsnd_HioSoundArchive.h78 HioFileStream( const char* path, u32 uffset, u32 size );
Dsnd_RomSoundArchive.h236 RomFileStream( const char* path, u32 offset, u32 size );
/NW4C-1.2.23/include/nw/lyt/
Dlyt_Arc.h95 bool ARCGetCurrentDir(ARCHandle* handle, wchar_t* path, u32 maxlen);
/NW4C-1.2.23/build/omake/
Dcommondefs.om194 if $(not $(and $(defined-env PWD), $(exists-in-path cygpath)))
/NW4C-1.2.23/documents/CreativeStudio/html/common/
Dibox.js49 setPath: function(path) { argument
50 _pub.base_url = path;
/NW4C-1.2.23/tools/DccPlugin/3dsMax/x86/2010/Scripts/Startup/
DNW4C_menu.ms21 label lbl1 "File path:" pos:[16,66] width:72 height:20
/NW4C-1.2.23/tools/DccPlugin/3dsMax/x64/2009/Scripts/Startup/
DNW4C_menu.ms21 label lbl1 "File path:" pos:[16,66] width:72 height:20
/NW4C-1.2.23/tools/DccPlugin/3dsMax/x86/2009/Scripts/Startup/
DNW4C_menu.ms21 label lbl1 "File path:" pos:[16,66] width:72 height:20
/NW4C-1.2.23/tools/DccPlugin/3dsMax/x64/2010/Scripts/Startup/
DNW4C_menu.ms21 label lbl1 "File path:" pos:[16,66] width:72 height:20