Searched defs:inPath (Results 1 - 6 of 6) sorted by relevance
/vbox/src/libs/xpcom18a4/xpcom/obsolete/ |
H A D | nsFileSpecOS2.cpp | 210 nsFileSpec::nsFileSpec(const nsFilePath& inPath) argument 214 *this = inPath; 218 void nsFileSpec::operator = (const nsFilePath& inPath) argument 221 mPath = (const char*)inPath;
|
H A D | nsFileSpecWin.cpp | 178 nsFileSpec::nsFileSpec(const nsFilePath& inPath) argument 182 *this = inPath; 186 void nsFileSpec::operator = (const nsFilePath& inPath) argument 189 mPath = (const char*)inPath;
|
H A D | nsFileSpec.cpp | 319 NS_NAMESPACE_PROTOTYPE void MakeAllDirectories(const char* inPath, int mode); 425 void nsFileSpecHelpers::MakeAllDirectories(const char* inPath, int mode) argument 430 if (!inPath) 433 char* pathCopy = nsCRT::strdup( inPath ); 689 nsFilePath::nsFilePath(const nsFilePath& inPath) argument 691 : mPath(inPath.mPath) 693 , mFileSpec(inPath.mFileSpec) 995 nsFileSpec::nsFileSpec(const nsFilePath& inPath) argument 997 : mPath((const char*)inPath) 1004 void nsFileSpec::operator = (const nsFilePath& inPath) argument [all...] |
H A D | nsFileSpecMac.cpp | 89 char* inPath, // NOT const - gets clobbered 160 char* inPath, // NOT const, gets clobbered 167 if (inPath == nsnull) 169 int pathSize = strlen(inPath); 174 char* c = inPath + pathSize - 1; 188 memcpy(&newPath[1], inPath, pathSize + 1); 193 strcpy(newPath, inPath); 206 delete [] inPath; 653 nsFileSpec::nsFileSpec(const nsFilePath& inPath) argument 657 *this = inPath 159 EncodeMacPath( char* inPath, Boolean prependSlash, Boolean doEscape ) argument 691 operator =(const nsFilePath& inPath) argument [all...] |
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsLocalFileUnix.cpp | 1376 nsCAutoString inPath; local 1378 if (NS_FAILED(rv = inFile->GetNativePath(inPath))) 1381 *_retval = !FILE_STRCMP(inPath.get(), mPath.get()); 1392 nsCAutoString inPath; local 1395 if (NS_FAILED(rv = inFile->GetNativePath(inPath))) 1401 if (FILE_STRNCMP(mPath.get(), inPath.get(), len) == 0) { 1404 if (inPath[len] == '/')
|
H A D | nsLocalFileMac.cpp | 141 nsPathParser::nsPathParser(const nsACString &inPath) : argument 144 PRUint32 inPathLen = inPath.Length(); 152 // copy inPath into mBuffer 154 inPath.BeginReading(start); 155 inPath.EndReading(end);
|
Completed in 555 milliseconds