Home
last modified time | relevance | path

Searched refs:fullpath (Results 1 – 5 of 5) sorted by relevance

/trunk/main/dtrans/source/os2/dnd/ !
H A DOTransferable.cxx51 strcpy( fullpath, ""); in OTransferable()
118 rc = unlink( fullpath); in ~OTransferable()
179 strcpy( fullpath, tempnam( NULL, "AOO")); in RenderToOS2File()
180 debug_printf("OTransferable::RenderToOS2File to %s", fullpath); in RenderToOS2File()
182 rv = RequestFileRendering( pditem, hwnd, pszRMF, fullpath); in RenderToOS2File()
271 sprintf( fullpath, "%s%s", path, file); in requestRendering()
272 debug_printf("OTransferable::getTransferData fullpath %s", fullpath); in requestRendering()
283 DrgQueryStrName(dragItem->ulItemID, sizeof(fullpath), fullpath); in requestRendering()
284 debug_printf("OTransferable::requestRendering DRM_ATOM '%s'", fullpath); in requestRendering()
334 DrgQueryStrName( pdxfer->hstrRenderToName, sizeof(fullpath), fullpath); in renderComplete()
[all …]
H A DOTransferable.hxx66 char fullpath[CCHMAXPATH]; member in OTransferable
/trunk/main/filter/source/flash/ !
H A Dswffilter.cxx212 OUString fullpath = sPath + STR("/") + filename; in exportBackground() local
215 Reference<XOutputStream> xOutputStreamWrap(*(new OslOutputStreamWrapper(fullpath)), UNO_QUERY); in exportBackground()
222 osl_removeFile(fullpath.pData); in exportBackground()
380 OUString fullpath, swfdirpath, backgroundfilename, objectsfilename; in ExportAsMultipleFiles() local
387 fullpath = swfdirpath + STR("/backgroundconfig.txt"); in ExportAsMultipleFiles()
396 osl_removeFile(fullpath.pData); in ExportAsMultipleFiles()
397 …osl_openFile( fullpath.pData, &xBackgroundConfig, osl_File_OpenFlag_Create | osl_File_OpenFlag_Wri… in ExportAsMultipleFiles()
437 fullpath = swfdirpath + STR("/slide") + VAL(nPage+1) + STR("p.swf"); in ExportAsMultipleFiles()
439 … Reference<XOutputStream> xOutputStreamWrap(*(new OslOutputStreamWrapper(fullpath)), UNO_QUERY); in ExportAsMultipleFiles()
445 osl_removeFile(fullpath.pData); in ExportAsMultipleFiles()
[all …]
/trunk/main/icu/ !
H A Dcreatemak.pl134 my $fullpath = $sourcePath . "\\" . $dir;
138 $vcproj_file = $fullpath ."\\$2.vcproj";
141 $vcproj_file = $fullpath ."\\$dir.vcproj";
145 $vcproj_file = $fullpath . "\\" . $extra_mak . ".vcproj";
171 getAllFilesDeps($fullpath,\%deps,\%files);
213 $mak_file = $fullpath . "\\$extra_mak" . "\.mak";
221 print_all_target($fullpath, \%all_target_hash);
460 my $fullpath = $path . $sep . $cfile;
462 open(IN, "<$fullpath") || die "can't open $fullpath\n";
/trunk/main/toolkit/src2xml/source/ !
H A Dsrc2xml.py139 fullpath = os.path.abspath(file_name)
140 if not os.path.isfile(fullpath):
145 input = file (fullpath, 'r').read()
146 lexer = SrcLexer(input, fullpath)