Home
last modified time | relevance | path

Searched refs:aFile (Results 176 – 200 of 263) sorted by last modified time

1234567891011

/trunk/main/qadevOOo/java/OOoRunner/src/main/java/graphical/
H A DImageHelper.java85 File aFile = new File(_sFilename); in createImageHelper() local
90 Object retValue = readMethod.invoke(imageIOClass, new Object[]{aFile}); in createImageHelper()
H A DIniFile.java77 File aFile = new File(m_sFilename); in loadLines() local
79 if (!aFile.exists()) in loadLines()
90 aReader = new RandomAccessFile(aFile, "r"); in loadLines()
404 File aFile = new File(m_sFilename); in store() local
405 if (aFile.exists()) in store()
409 aFile.delete(); in store()
410 if (aFile.exists()) in store()
424 RandomAccessFile aWriter = new RandomAccessFile(aFile, "rw"); in store()
H A DJPEGComparator.java225 File aFile = new File(sJPEGFilename); in checkOneFile() local
226 assure("File '" + sJPEGFilename + "' doesn't exists.", aFile.exists(), true); in checkOneFile()
227 if (aFile.exists()) in checkOneFile()
246 File aFile = new File(sResultIniFile); in evaluateResult() local
247 assure("Result file doesn't exists " + sResultIniFile, aFile.exists()); in evaluateResult()
H A DJPEGCreator.java244 File aFile = new File(_sFile); in createJPEG() local
245 if (aFile.exists()) in createJPEG()
247 String sAbsFile = aFile.getAbsolutePath(); in createJPEG()
H A DOpenOfficePostscriptCreator.java523 File aFile = new File(sOutputPath); in impl_printToFileWithOOo() local
524 aFile.mkdirs(); in impl_printToFileWithOOo()
H A DPerformanceContainer.java181 File aFile = new File(sFilename); in readWordValuesFromFile() local
182 if (! aFile.exists()) in readWordValuesFromFile()
191 aRandomAccessFile = new RandomAccessFile(aFile,"r"); in readWordValuesFromFile()
H A DEnhancedComplexTestCase.java44 File aFile = new File(_aParam.getInputPath()); in callEntry() local
48 if (aFile.isDirectory()) in callEntry()
166 File aFile = new File(sEntry); in foreachPSorPDFinInputPath() local
167 assure("File '" + sEntry + "' doesn't exists.", aFile.exists(), true); in foreachPSorPDFinInputPath()
168 if (aFile.exists()) in foreachPSorPDFinInputPath()
H A DFileHelper.java69 File aFile = new File(_sFile); in exists() local
70 if (aFile.exists()) in exists()
101 File aFile = new File(_sDir); in isDir() local
102 if (aFile.exists() && aFile.isDirectory()) in isDir()
355 File aFile = new File(sName); in isDebugEnabled() local
356 if (aFile.exists()) in isDebugEnabled()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/convwatch/
H A DIniFile.java57 File aFile = new File(m_sFilename); in loadLines() local
59 if (! aFile.exists()) in loadLines()
69 aReader = new RandomAccessFile(aFile,"r"); in loadLines()
292 File aFile = new File(m_sFilename); in store() local
293 if (aFile.exists()) in store()
296 aFile.delete(); in store()
297 if (aFile.exists()) in store()
311 RandomAccessFile aWriter = new RandomAccessFile(aFile, "rw"); in store()
H A DPerformanceContainer.java158 File aFile = new File(sFilename); in readWordValuesFromFile() local
159 if (! aFile.exists()) in readWordValuesFromFile()
168 aRandomAccessFile = new RandomAccessFile(aFile,"r"); in readWordValuesFromFile()
H A DReportDesignerTest.java366 File aFile = new File(_sDocument); in startTestForFile() local
367 assure("Test File '" + _sDocument + "' doesn't exist.", aFile.exists()); in startTestForFile()
H A DImageHelper.java81 File aFile = new File(_sFilename); in createImageHelper() local
86 Object retValue = readMethod.invoke(imageIOClass, new Object[]{aFile}); in createImageHelper()
H A DFileHelper.java61 File aFile = new File(_sFile); in exists()
62 if (aFile.exists()) in exists()
90 File aFile = new File(_sDir); in isDir() local
91 if (aFile.exists() && aFile.isDirectory()) in isDir()
324 File aFile = new File(sName); in isDebugEnabled() local
325 if (aFile.exists()) in isDebugEnabled()
H A DGfxCompare.java104 File aFile = new File(_sFile); in createJPEG() local
105 if (aFile.exists()) in createJPEG()
107 String sAbsFile = aFile.getAbsolutePath(); in createJPEG()
/trunk/main/padmin/source/
H A Dfontentry.cxx275 OString aFile( m_rFontManager.getFontFileSysPath( *font_it ) ); in init() local
276 int nLast = aFile.lastIndexOf( '/' ); in init()
278 aFile = aFile.copy( nLast+1 ); in init()
295 … aEntry = fillFontEntry( aInfos, String( ByteString( aFile ), osl_getThreadTextEncoding() ) ); in init()
298 …aEntry = fillFontEntry( aInfo, String( ByteString( aFile ), osl_getThreadTextEncoding() ), aFamili… in init()
588 OUString aFile( OStringToOUString( aFileName, aEncoding ) ); in fillFontBox() local
591 …aEntry = FontNameDlg::fillFontEntry( it->second.front(), aFile, aFamilies[ it->second.front().m_aF… in fillFontBox()
593 aEntry = FontNameDlg::fillFontEntry( it->second, aFile ); in fillFontBox()
H A Dnewppdlg.cxx172 INetURLObject aFile( *(String*)m_aDriverLB.GetEntryData( in IMPL_LINK() local
175 OUString aFromUni( aFile.GetMainURL(INetURLObject::DECODE_TO_IURI) ); in IMPL_LINK()
180 aToFile.Append( aFile.GetName() ); in IMPL_LINK()
/trunk/main/package/qa/storages/
H A DRegressionTest_i61909.java160 File aFile = new File( aUri ); in test() local
161 FileInputStream aFileStream = new FileInputStream( aFile ); in test()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/misc/
H A DLog.java33 public Log (final File aFile) in Log() argument
38 aOut = new PrintStream(new FileOutputStream(aFile)); in Log()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/
H A DSchemaReader.java304 for (final File aFile : aParser.GetImportedSchemaFilenames()) in ParseSchemaFile()
305 AddSchemaReference(aFile.getAbsolutePath()); in ParseSchemaFile()
364 final File aFile = new File(sFilename); in CreateCheckedOutputFile() local
365 if ( ! aFile.getParentFile().exists()) in CreateCheckedOutputFile()
367 if (aFile.exists() && ! aFile.canWrite()) in CreateCheckedOutputFile()
369 return aFile; in CreateCheckedOutputFile()
/trunk/main/ooxml/source/framework/JavaPartManager/src/org/apache/openoffice/ooxml/framework/part/
H A DPartManager.java37 public PartManager (final File aFile) in PartManager() argument
42 aZipFile = new ZipFile(aFile); in PartManager()
/trunk/main/ooxml/source/framework/JavaOOXMLParser/src/org/apache/openoffice/ooxml/parser/
H A DParseTableReader.java39 public ParseTableReader (final File aFile) in ParseTableReader() argument
45 final BufferedReader aReader = new BufferedReader(new FileReader(aFile)); in ParseTableReader()
H A DLog.java54 public Log (final File aFile) in Log() argument
56 this(CreateFileOutputStream(aFile)); in Log()
62 private static OutputStream CreateFileOutputStream (final File aFile) in CreateFileOutputStream() argument
66 return new FileOutputStream(aFile); in CreateFileOutputStream()
/trunk/main/odk/examples/java/EmbedDocument/Container1/
H A DEmbedContApp.java297 File aFile = new File( aFileName ); in actionPerformed() local
298 if ( aFile != null ) in actionPerformed()
344 File aFile = new File( aFileName ); in actionPerformed() local
345 if ( aFile != null ) in actionPerformed()
348 String aFileURI = aFile.toURI().toASCIIString(); in actionPerformed()
425 File aFile = new File( aFileName ); in actionPerformed() local
426 if ( aFile != null ) in actionPerformed()
531 File aFile = new File( aFileName ); in actionPerformed() local
532 if ( aFile != null ) in actionPerformed()
583 File aFile = new File( aFileName ); in actionPerformed() local
[all …]
/trunk/main/l10ntools/source/help/
H A DHelpIndexerTool.java340 if( aFile.isDirectory() ) in addToZipRecursively()
342 String aDirName = aFile.getName(); in addToZipRecursively()
346 File[] aChildrenFiles = aFile.listFiles(); in addToZipRecursively()
361 int fileLength = (int) aFile.length(); in addToZipRecursively()
362 FileInputStream fis = new FileInputStream( aFile ); in addToZipRecursively()
367 String aFileName = aFile.getName(); in addToZipRecursively()
373 aZipEntry.setTime( aFile.lastModified() ); in addToZipRecursively()
390 static public boolean deleteRecursively( File aFile ) in deleteRecursively() argument
392 if( aFile.isDirectory() ) in deleteRecursively()
394 File[] aChildrenFiles = aFile.listFiles(); in deleteRecursively()
[all …]
H A DHelpFileDocument.java41 private static Reader getReaderForFile( File aFile ) in getReaderForFile() argument
44 if( aFile != null ) { in getReaderForFile()
45 FileInputStream fis = new FileInputStream( aFile ); in getReaderForFile()
62 File aFile = aCaptionFile != null ? aCaptionFile : aContentFile; in Document() local
63 if( aFile != null ) in Document()
65 String aPath = "#HLP#" + aModule + "/" + aFile.getName(); in Document()

Completed in 162 milliseconds

1234567891011