Searched defs:leafName (Results 1 - 9 of 9) sorted by relevance
/vbox/src/libs/xpcom18a4/xpcom/tests/ |
H A D | nsIFileTest.cpp | 87 nsCAutoString leafName; local 96 rv = file->GetNativeLeafName(leafName); 97 printf(" %s\n", leafName.get()); 105 rv = file->GetNativeLeafName(leafName); 106 printf(" %s\n", leafName.get());
|
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/ |
H A D | xptiManifest.cpp | 139 nsCAutoString leafName; local 140 leafName.Assign(originalLeafName + NS_LITERAL_CSTRING(".tmp")); 142 tempFile->SetNativeLeafName(leafName);
|
/vbox/src/libs/xpcom18a4/xpcom/components/ |
H A D | nsNativeComponentLoader.cpp | 239 nsCAutoString leafName; local 240 rv = dirEntry->GetNativeLeafName(leafName); 242 || leafName.Length() < sizeof(".dSYM") 243 || PL_strcasecmp(leafName.get() + (leafName.Length() - sizeof(".dSYM") + 1), ".dSYM")) 730 nsCAutoString leafName; local 731 rv = component->GetNativeLeafName(leafName); 733 int flen = leafName.Length(); 740 !PL_strcasecmp(leafName.get() + (flen - extlen), ValidDllExtensions[i])
|
H A D | nsComponentManager.cpp | 1417 nsCAutoString leafName; local 1418 leafName.Assign(originalLeafName + NS_LITERAL_CSTRING(".tmp")); 1420 localFile->SetNativeLeafName(leafName);
|
/vbox/src/libs/xpcom18a4/xpcom/obsolete/ |
H A D | nsFileSpec.cpp | 915 char* leafName = GetLeafName(); local 916 if (!leafName) 919 char* lastDot = strrchr(leafName, '.'); 928 if ((int)strlen(leafName) > (int)kMaxRootLength) 929 leafName[kMaxRootLength] = '\0'; 934 sprintf(newName, "%s-%d%s", leafName, indx, suffix); 939 nsCRT::free(leafName);
|
H A D | nsFileSpecMac.cpp | 1072 char* leafName = GetLeafName(); local 1073 *this = newParentDir + leafName; 1074 nsCRT::free(leafName);
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsLocalFileUnix.cpp | 655 nsCAutoString leafName; local 656 if (NS_FAILED(rv = GetNativeLeafName(leafName))) 658 if (NS_FAILED(rv = newParent->AppendNative(leafName)))
|
H A D | nsLocalFileOSX.cpp | 541 /* attribute AString leafName; */ 677 nsCAutoString leafName; local 678 rv = GetNativeLeafName(leafName); 681 destPath.Append(NS_LITERAL_CSTRING("/") + leafName); 1070 HFSUniStr255 leafName; local 1072 &leafName, nsnull, nsnull); 1082 if (leafName.length >= 1 && leafName.unicode[0] == UniChar('.')) 1816 nsAutoString leafName; local 1817 if (NS_SUCCEEDED(GetLeafName(leafName))) { [all...] |
H A D | nsLocalFileMac.cpp | 1456 char* leafName = (char *)malloc(len + 1); local 1457 if (!leafName) return NS_ERROR_OUT_OF_MEMORY; 1458 ::BlockMoveData(&mSpec.name[1], leafName, len); 1459 leafName[len] = '\0'; 1460 aLeafName = leafName; 1461 free(leafName); 1487 const char *leafName = NS_TruncNodeName(PromiseFlatCString(aLeafName).get(), truncBuffer); local 1496 mAppendedPath.Append(leafName); 1501 myPLstrcpy(mSpec.name, leafName);
|
Completed in 278 milliseconds