Lines Matching refs:sDocumentSuffix
98 String sDocumentSuffix = FileHelper.getSuffix(_sFile); in isMSOfficeDocumentFormat() local
99 if (isWordDocument(sDocumentSuffix)) return true; in isMSOfficeDocumentFormat()
100 if (isExcelDocument(sDocumentSuffix)) return true; in isMSOfficeDocumentFormat()
101 if (isPowerPointDocument(sDocumentSuffix)) return true; in isMSOfficeDocumentFormat()
103 if (sDocumentSuffix.toLowerCase().endsWith(".xml")) return true; in isMSOfficeDocumentFormat()
111 String sDocumentSuffix = FileHelper.getSuffix(_sInputFile); in storeToFileWithMSOffice() local
114 if (isWordDocument(sDocumentSuffix)) in storeToFileWithMSOffice()
118 else if (isExcelDocument(sDocumentSuffix)) in storeToFileWithMSOffice()
122 else if (isPowerPointDocument(sDocumentSuffix)) in storeToFileWithMSOffice()
125 else if (sDocumentSuffix.toLowerCase().equals(".xml")) in storeToFileWithMSOffice()
170 String sDocumentSuffix = FileHelper.getSuffix(_sInputFile); in printToFileWithMSOffice() local
175 if (isWordDocument(sDocumentSuffix)) in printToFileWithMSOffice()
179 else if (isExcelDocument(sDocumentSuffix)) in printToFileWithMSOffice()
183 else if (isPowerPointDocument(sDocumentSuffix)) in printToFileWithMSOffice()
187 else if (sDocumentSuffix.toLowerCase().equals(".xml")) in printToFileWithMSOffice()