Lines Matching refs:sDocumentSuffix
175 String sDocumentSuffix = FileHelper.getSuffix(_sFile); in isMSOfficeDocumentFormat() local
176 if (isWordDocument(sDocumentSuffix)) {return true;} in isMSOfficeDocumentFormat()
177 if (isExcelDocument(sDocumentSuffix)) {return true;} in isMSOfficeDocumentFormat()
178 if (isPowerPointDocument(sDocumentSuffix)) {return true;} in isMSOfficeDocumentFormat()
180 if (sDocumentSuffix.toLowerCase().endsWith(".xml")) {return true;} in isMSOfficeDocumentFormat()
188 String sDocumentSuffix = FileHelper.getSuffix(_sInputFile); in storeToFileWithMSOffice() local
191 if (isWordDocument(sDocumentSuffix)) in storeToFileWithMSOffice()
195 else if (isExcelDocument(sDocumentSuffix)) in storeToFileWithMSOffice()
199 else if (isPowerPointDocument(sDocumentSuffix)) in storeToFileWithMSOffice()
202 else if (sDocumentSuffix.toLowerCase().equals(".xml")) in storeToFileWithMSOffice()
258 String sDocumentSuffix = FileHelper.getSuffix(_sInputFile); in printToFileWithMSOffice() local
263 if (isWordDocument(sDocumentSuffix)) in printToFileWithMSOffice()
267 else if (isExcelDocument(sDocumentSuffix)) in printToFileWithMSOffice()
271 else if (isPowerPointDocument(sDocumentSuffix)) in printToFileWithMSOffice()
275 else if (sDocumentSuffix.toLowerCase().equals(".xml")) in printToFileWithMSOffice()