Home
last modified time | relevance | path

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

/NW4C-2.0.3/tools/DccPlugin/Maya/scripts/
DNW4C_CommonProc.mel42 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,
DNW4C_SetAnimRange.mel2297 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 …]
DNW4C_ExpDialog.mel1552 $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/
Dio_RomFileStream.cpp33 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()
Dio_HioFileStream.cpp61 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/
Dgfx_ResUtil.cpp57 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/
Dgfx_AnimEvaluator.h381 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/
Dlyt_Arc.cpp212 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/
Dsnd_RomSoundArchive.cpp56 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 …]
Dsnd_HioSoundArchive.cpp37 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/
Dio_RomFileStream.h33 RomFileStream( const char* path );
42 bool Open( const char* path );
Dio_HioFileStream.h33 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/
Dsnd_HioSoundArchive.h224 HioFileStream( const char* path, u32 uffset, u32 size );
Dsnd_RomSoundArchive.h238 RomFileStream( const char* path, u32 offset, u32 size );
/NW4C-2.0.3/include/nw/lyt/
Dlyt_Arc.h441 bool ARCGetCurrentDir(ARCHandle* handle, wchar_t* path, u32 maxlen);
/NW4C-2.0.3/build/omake/
Dcommondefs.om196 if $(not $(and $(defined-env PWD), $(exists-in-path cygpath)))
/NW4C-2.0.3/documents/CreativeStudio/html/common/
Dibox.js49 setPath: function(path) { argument
50 _pub.base_url = path;
/NW4C-2.0.3/tools/DccPlugin/3dsMax/x64/2009/Scripts/Startup/
DNW4C_menu.ms21 label lbl1 " File path:" width:72 height:20 align:#left across:4
/NW4C-2.0.3/tools/DccPlugin/3dsMax/x86/2011/Scripts/Startup/
DNW4C_menu.ms21 label lbl1 " File path:" width:72 height:20 align:#left across:4
/NW4C-2.0.3/tools/DccPlugin/3dsMax/x64/2011/Scripts/Startup/
DNW4C_menu.ms21 label lbl1 " File path:" width:72 height:20 align:#left across:4
/NW4C-2.0.3/tools/DccPlugin/3dsMax/x86/2010/Scripts/Startup/
DNW4C_menu.ms21 label lbl1 " File path:" width:72 height:20 align:#left across:4
/NW4C-2.0.3/tools/DccPlugin/3dsMax/x64/2010/Scripts/Startup/
DNW4C_menu.ms21 label lbl1 " File path:" width:72 height:20 align:#left across:4
/NW4C-2.0.3/tools/DccPlugin/3dsMax/x86/2009/Scripts/Startup/
DNW4C_menu.ms21 label lbl1 " File path:" width:72 height:20 align:#left across:4