Home | History | Annotate | Download | only in slang

Lines Matching refs:OutputFile

119 OpenOutputFile(const char *OutputFile,
123 slangAssert((OutputFile != NULL) && (Error != NULL) &&
127 llvm::sys::path::parent_path(OutputFile), Error)) {
129 new llvm::tool_output_file(OutputFile, *Error, Flags);
136 << OutputFile << *Error;
336 bool Slang::setOutput(const char *OutputFile) {
344 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_None, &Error,
353 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_Binary,
367 mOutputFileName = OutputFile;
372 bool Slang::setDepOutput(const char *OutputFile) {
376 OpenOutputFile(OutputFile, llvm::sys::fs::F_None, &Error, mDiagEngine));
380 mDepOutputFileName = OutputFile;
394 DepOpts.OutputFile = mDepOutputFileName;