Home | History | Annotate | Download | only in slang

Lines Matching refs:OutputFile

117 OpenOutputFile(const char *OutputFile,
121 slangAssert((OutputFile != NULL) && (Error != NULL) &&
125 llvm::sys::path::parent_path(OutputFile), Error)) {
127 new llvm::tool_output_file(OutputFile, *Error, Flags);
134 << OutputFile << *Error;
325 bool Slang::setOutput(const char *OutputFile) {
326 llvm::sys::Path OutputFilePath(OutputFile);
334 OS = OpenOutputFile(OutputFile, 0, &Error, mDiagEngine);
342 OS = OpenOutputFile(OutputFile, llvm::raw_fd_ostream::F_Binary,
356 mOutputFileName = OutputFile;
361 bool Slang::setDepOutput(const char *OutputFile) {
362 llvm::sys::Path OutputFilePath(OutputFile);
365 mDOS.reset(OpenOutputFile(OutputFile, 0, &Error, mDiagEngine));
369 mDepOutputFileName = OutputFile;
383 DepOpts.OutputFile = mDepOutputFileName;