Searched defs:OutputFile (Results 1 - 1 of 1) sorted by relevance

/gdk/sources/llvm-ndk-cc/
H A DCompiler.cpp50 static inline llvm::tool_output_file *openOutputFile(const char *OutputFile, argument
54 assert((OutputFile != NULL) && (Error != NULL) && (Diag != NULL) &&
58 new llvm::tool_output_file(OutputFile, *Error, Flags);
63 Diag->Report(clang::diag::err_fe_error_opening) << OutputFile << *Error;
236 bool Compiler::setOutput(const char *OutputFile) { argument
237 llvm::sys::Path OutputFilePath(OutputFile);
245 OS = openOutputFile(OutputFile, 0, &Error, mDiagnostics.getPtr());
253 OS = openOutputFile(OutputFile,
269 mOutputFileName = OutputFile;

Completed in 75 milliseconds