Searched defs:recursive (Results 1 - 10 of 10) sorted by relevance
/vbox/src/libs/xpcom18a4/xpcom/tests/ |
H A D | nsIFileTest.cpp | 260 DeletionTest(const char* creationPath, const char* appendPath, PRBool recursive) argument 292 rv = file->Remove(recursive);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/ |
H A D | macdll.c | 92 Boolean recursive; local 118 // see if path should be recursive 125 recursive = true; 130 recursive = false; 142 filterData.inRecursive = recursive; 143 FSpIterateDirectory(&curFolder, recursive ? 0 : 1, &GetSharedLibraryFilterProc, &filterData);
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsLocalFileOS2.cpp | 746 // note, we don't need to do a recursive delete. 747 // MoveTo() is recursive. At this point, 826 nsLocalFile::Remove(PRBool recursive) argument 838 if (recursive) 857 file->Remove(recursive);
|
H A D | nsLocalFileUnix.cpp | 893 nsLocalFile::Remove(PRBool recursive) argument 904 if (!recursive && isSymLink) 910 if (recursive) { 931 if (NS_FAILED(rv = file->Remove(recursive)))
|
H A D | nsLocalFileWin.cpp | 1268 // note, we don't need to do a recursive delete. 1269 // MoveTo() is recursive. At this point, 1274 rv = Remove(PR_FALSE /* recursive */); 1351 nsLocalFile::Remove(PRBool recursive) argument 1389 if (recursive) 1404 file->Remove(recursive);
|
H A D | nsLocalFileOSX.cpp | 713 /* void remove (in boolean recursive); */ 714 NS_IMETHODIMP nsLocalFile::Remove(PRBool recursive) argument 727 if (recursive && isDirectory) { 733 // Call MoreFilesX to do a recursive removal.
|
H A D | nsLocalFileMac.cpp | 1794 nsLocalFile::Remove(PRBool recursive) argument 1810 if (isDir && recursive)
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | tree.c | 1656 * -> we recursive call xmlNodeListGetString() 1738 * -> we recursive call xmlNodeListGetRawString() 3355 * Free a node and all its siblings, this is a recursive behaviour, all 3425 * Free a node, this is a recursive behaviour, all the children are freed too. 3818 * The argument "recursive" normally indicates a recursive copy 4015 * @extended: if 1 do a recursive copy (properties, namespaces and children 4035 * @extended: if 1 do a recursive copy (properties, namespaces and children 4056 * Do a recursive copy of the node list. 4069 * Do a recursive cop 4178 xmlCopyDoc(xmlDocPtr doc, int recursive) argument [all...] |
H A D | testapi.c | 18987 int recursive; /* if not zero do a recursive copy. */ local 18994 recursive = gen_int(n_recursive, 1); 18996 ret_val = xmlCopyDoc(doc, recursive); 19000 des_int(n_recursive, recursive, 1); 19127 int extended; /* if 1 do a recursive copy (properties, namespaces and children when applicable) if 2 copy properties and namespaces (when applicable) */ 19596 int extended; /* if 1 do a recursive copy (properties, namespaces and children when applicable) if 2 copy properties and namespaces (when applicable) */ [all...] |
/vbox/src/libs/libxml2-2.6.31/python/ |
H A D | libxml2-py.c | 12228 int recursive; local 12230 if (!PyArg_ParseTuple(args, (char *)"Oi:xmlCopyDoc", &pyobj_doc, &recursive)) 12234 c_retval = xmlCopyDoc(doc, recursive);
|
Completed in 449 milliseconds