Searched defs:inNewName (Results 1 - 5 of 5) sorted by relevance
/vbox/src/libs/xpcom18a4/xpcom/obsolete/ |
H A D | nsFileSpecBeOS.cpp | 321 nsresult nsFileSpec::Rename(const char* inNewName) argument 325 if (mPath.IsEmpty() || strchr(inNewName, '/')) 330 SetLeafName(inNewName);
|
H A D | nsFileSpecOS2.cpp | 654 nsresult nsFileSpec::Rename(const char* inNewName) argument 657 NS_ASSERTION(inNewName, "Attempt to Rename with a null string"); 660 if (strchr(inNewName, '/')) 665 SetLeafName(inNewName);
|
H A D | nsFileSpecUnix.cpp | 392 nsresult nsFileSpec::Rename(const char* inNewName) argument 395 NS_ASSERTION(inNewName, "Attempt to Rename with a null string"); 398 if (mPath.IsEmpty() || strchr(inNewName, '/')) 403 SetLeafName(inNewName);
|
H A D | nsFileSpecWin.cpp | 555 nsresult nsFileSpec::Rename(const char* inNewName) argument 558 NS_ASSERTION(inNewName, "Attempt to Rename with a null string"); 561 if (strchr(inNewName, '/')) 566 SetLeafName(inNewName);
|
H A D | nsFileSpecMac.cpp | 1021 nsresult nsFileSpec::Rename(const char* inNewName) argument 1024 NS_ASSERTION(inNewName, "Attempt to rename with null new name"); 1026 if (strchr(inNewName, '/')) 1030 MacFileHelpers::PLstrcpy(pName, inNewName); 1033 SetLeafName(inNewName);
|
Completed in 281 milliseconds