/aoo41x/main/soltools/cpp/ |
H A D | _include.c | 54 char fname[PATH_MAX], iname[PATH_MAX]; in doinclude() local 71 if (len > sizeof(fname) - 1) in doinclude() 72 len = sizeof(fname) - 1; in doinclude() 98 fname[len] = '\0'; in doinclude() 99 if (fname[0] == '/') in doinclude() 101 fd = open(fname, O_RDONLY); in doinclude() 102 strcpy(iname, fname); in doinclude() 115 strcat(iname, fname); in doinclude() 126 genimport(fname, angled, iname, import); in doinclude() 207 strcpy((char *) p, fname); in genimport() [all …]
|
/aoo41x/main/solenv/bin/ |
H A D | oochkpatch.pl | 195 my $fname; 199 $fname = $_; 200 if( !exists $pack_files{$fname} ) 202 print " File $fname is not packed.\n" if $verbose; 204 elsif( $pack_files{$fname} == 0 ) 206 if( !$hardcoded_exceptions{ $fname } ) 209 …print " File $fname is packed, but NOT included in patch set and part of delivered output\n" if $v… 210 print "$fname\n" if !$verbose; 214 …print " File $fname is NOT included in patch set, but member of hardcoded exception list\n" if $ve… 217 elsif( $pack_files{$fname} == 1 ) [all …]
|
H A D | image-sort.pl | 29 my $fname = shift; 32 open ($fileh, "$base_path/$fname") || die "Can't open $base_path/$fname: $!"; 45 my $fname = shift; 47 my @images = read_icons ($fname); 101 my $fname = shift; 104 open ($fileh, $fname) || die "Can't open $fname: $!";
|
H A D | relocate | 36 my ($dirhandle, $fname); 39 while ($fname = readdir ($dirhandle)) { 40 $fname =~ /[Ss]et.sh$/ && last; 44 return $fname; 113 my $fname = "$new_root/$set"; 117 open ($file, $fname) || die "Can't open $fname: $!"; 130 close ($file) || die "Failed to close $fname: $!";
|
H A D | linkoo | 70 my ($dirhandle, $fname); 74 while ($fname = readdir ($dirhandle)) { 75 $fname =~ /Set.sh$/ || next; 78 open ($file, "$build_dir/$fname") || die "Can't open $build_dir/$fname"; 108 while (my $fname = readdir ($dirhandle)) { 109 $fname =~ m/$pattern/ || next; 113 $fname =~ /$pattern/ || next; 116 $files{$fname} = $dirname if !$skip;
|
/aoo41x/main/odk/source/unoapploader/win/ |
H A D | unoapploader.c | 243 char fname[ _MAX_PATH ]; in getErrorFile() local 253 if ( GetModuleFileName( NULL, fname, sizeof( fname ) ) ) in getErrorFile() 256 _splitpath( fname, drive, dir, base, ext ); in getErrorFile() 259 _makepath( fname, drive, dir, newbase, EXTENSION ); in getErrorFile() 260 ferr = fopen( fname, MODE ); in getErrorFile() 265 GetTempPath( sizeof( fname ), fname ); in getErrorFile() 266 strcat( fname, newbase ); in getErrorFile() 267 strcat( fname, EXTENSION ); in getErrorFile() 268 ferr = fopen( fname, MODE ); in getErrorFile()
|
/aoo41x/main/postprocess/rebase/ |
H A D | rebase.pl | 200 my $fname = $misc_dir . "rebase_again.txt"; 201 open ( FILES, "> $fname") or die "Error: cannot open file $fname"; 205 $command .= "\@$fname"; 263 my $fname = $misc_dir . "rebase_new.txt"; 264 open ( FILES, "> $fname") or die "Error: cannot open file $fname"; 268 $command .= "\@$fname";
|
/aoo41x/main/sc/source/ui/vba/testvba/ |
H A D | testResults.pl | 122 my ($dirhandle, $fname); 126 while ($fname = readdir ($dirhandle)) { 127 $fname = filter_crud($fname); 128 defined $fname || next; 133 push @files, "$dir/$fname";
|
H A D | testResult.pl | 122 my ($dirhandle, $fname); 126 while ($fname = readdir ($dirhandle)) { 127 $fname = filter_crud($fname); 128 defined $fname || next; 133 push @files, "$dir/$fname";
|
/aoo41x/main/shell/source/win32/shlxthandler/infotips/ |
H A D | infotips.cxx | 344 std::wstring fname = pszFileName; in Load() local 348 std::wstring::iterator begin = fname.begin() + fname.find_last_of(L"\\") + 1; in Load() 349 std::wstring::iterator end = fname.end(); in Load() 353 fname = getShortPathName( fname ); in Load() 355 std::string fnameA = WStringToString(fname); in Load()
|
/aoo41x/main/sal/osl/os2/ |
H A D | module.c | 72 char fname[_MAX_FNAME], ext[_MAX_EXT]; in osl_loadAsciiModule() local 83 _splitpath (pszModuleName, drive, dir, fname, ext); in osl_loadAsciiModule() 84 if (strlen(fname)>8) in osl_loadAsciiModule() 85 fname[8] = 0; // truncate to 8.3 in osl_loadAsciiModule() 86 dot = strchr( fname, '.'); in osl_loadAsciiModule() 96 _makepath( buffer, drive, dir, fname, ext); in osl_loadAsciiModule()
|
/aoo41x/main/xmerge/source/palmtests/qa/comparator/ |
H A D | XmlZipExtract.java | 65 public void getContentXml(String fname) throws IOException in getContentXml() argument 69 getContentXmlInt(fname, XmlZipExtract.CONTENT); in getContentXml() 79 getContentXmlInt(fname, XmlZipExtract.OLDCONTENT); in getContentXml() 89 public void getContentXmlInt(String fname, String cname) throws IOException in getContentXmlInt() argument 94 raf = new RandomAccessFile(fname, "rw"); in getContentXmlInt()
|
/aoo41x/main/vcl/source/fontsubset/ |
H A D | sft.cxx | 1130 if ( t->fname ) in GetNames() 1132 char* pReverse = t->fname + strlen(t->fname); in GetNames() 1643 (*ttf)->fname = 0; in allocTrueTypeFont() 1660 if (!fname || !*fname) return SF_BADFILE; in OpenTTFontFile() 1666 (*ttf)->fname = strdup(fname); in OpenTTFontFile() 1667 if( ! (*ttf)->fname ) in OpenTTFontFile() 1707 free((*ttf)->fname); in OpenTTFontFile() 1720 (*ttf)->fname = NULL; in OpenTTFontBuffer() 1923 if( ttf->fname ) in CloseTTFont() 1926 free(ttf->fname); in CloseTTFont() [all …]
|
/aoo41x/main/ |
H A D | oowintool | 301 my ($src, $fname, $dest) = @_; 303 -f "$src/$fname" || die "can't find $src"; 306 print STDERR "Copying $src/$fname to $dest\n"; 307 copy ("$src/$fname", $dest) || die "copy failed: $!"; 308 chmod (0755, "$dest/$fname") || die "failed to set dll executable: $!";
|
/aoo41x/main/cosv/source/unittest/ |
H A D | ut.hxx | 28 #define UT_CHECK( fname, cond ) \ argument 29 if ( NOT (cond) ) { std::cerr << "ftest_" << #fname << " " << #cond << endl; \ 34 #define FUT_DECL( cname, fname ) \ argument 35 bool ftest_##fname( cname & r##cname )
|
/aoo41x/main/vcl/inc/ |
H A D | sft.hxx | 276 int CountTTCFonts(const char* fname); 298 int VCL_DLLPUBLIC OpenTTFontFile(const char *fname, sal_uInt32 facenum, TrueTypeFont** ttf); 395 …int CreateT3FromTTGlyphs(TrueTypeFont *ttf, FILE *outf, const char *fname, sal_uInt16 *glyphArray… 420 const char *fname, 578 char *fname; member
|
/aoo41x/main/helpcontent2/helpers/ |
H A D | update_tree.pl | 334 for my $fname (@files) { 337 open(LOCALIZE_SDF, $fname) || die 'Cannot open "localize.sdf".'."$fname"; 365 …terminate( "\n\nERROR: Bad string in file '$fname' will cause invalid xml tree file \n---\n'$sdf_l… 377 …terminate( "\n\nERROR: Bad string in '$fname' will cause invalid xml tree file \n---\n'$sdf_line'\…
|
/aoo41x/main/dtrans/source/cnttype/wbench/ |
H A D | testcnttype.cxx | 130 sal_Bool readCntTypesFromFileIntoVector( char* fname, vector< string >& vecData ) in readCntTypesFromFileIntoVector() argument 134 fstream = fopen( fname, "r+" ); in readCntTypesFromFileIntoVector() 157 sal_Bool processCntTypesAndWriteResultIntoFile( char* fname, vector< string >& vecData, Reference< … in processCntTypesAndWriteResultIntoFile() argument 161 fstream = fopen( fname, "w" ); in processCntTypesAndWriteResultIntoFile()
|
/aoo41x/main/sal/osl/unx/ |
H A D | diagnose.c | 85 const char *fname = 0, *sname = 0; in osl_diagnose_frame_Impl() local 94 fname = dli.dli_fname; in osl_diagnose_frame_Impl() 111 fname ? fname : "<unknown>", in osl_diagnose_frame_Impl()
|
/aoo41x/main/xmlscript/test/ |
H A D | imexp.cxx | 103 char const * fname, in importFile() argument 107 FILE *f = ::fopen( fname, "rb" ); in importFile() 132 char const * fname, in exportToFile() argument 154 FILE * f = ::fopen( fname, "w" ); in exportToFile()
|
/aoo41x/main/qadevOOo/tests/java/ifc/ui/dialogs/ |
H A D | _XFilePicker.java | 51 private String fname = "space-metal.jpg" ; field in _XFilePicker 100 oObj.setDefaultName(fname) ; in _setDefaultName() 146 tRes.tested("getFiles()", (dir + fname).equals(files[0])) ; in _getFiles()
|
/aoo41x/main/oovbaapi/genconstidl/ |
H A D | api-to-idl.pl | 123 my $fname = $path . "/" . $type . ".idl"; 124 open( IDL, ">$fname" ) || die "Cannot write $fname.";
|
/aoo41x/main/vcl/aqua/source/dtrans/ |
H A D | DataFlavorMapping.cxx | 476 NSString* fname = [mSystemData objectAtIndex: i]; in getOOoData() local 477 …lenSeqRequired += [fname maximumLengthOfBytesUsingEncoding: NSUnicodeStringEncoding] + sizeof(unic… in getOOoData() 486 NSString* fname = [mSystemData objectAtIndex: i]; in getOOoData() local 487 [fname getCharacters: pBuffer]; in getOOoData() 488 size_t l = [fname length]; in getOOoData()
|
/aoo41x/main/scripting/source/pyprov/ |
H A D | mailmerge.py | 244 fname = attachment.ReadableName 246 fname.encode('ascii') 248 fname = ('utf-8','',fname.encode('utf-8')) 250 filename=fname)
|
/aoo41x/main/writerfilter/qa/cppunittests/doctok/ |
H A D | testdoctok.cxx | 127 rtl_uString *fname=NULL; in testOpenFile() local 129 rtl_uString_newFromAscii(&fname, "/test.doc"); in testOpenFile() 132 rtl_uString_newConcat(&absfile, dir, fname); in testOpenFile()
|