HomeSort by relevance Sort by last modified time
    Searched refs:OutputFile (Results 1 - 25 of 200) sorted by null

1 2 3 4 5 6 7 8

  /external/opencv3/3rdparty/openexr/IlmImf/
ImfOutputFile.h 42 // class OutputFile
56 class OutputFile
62 // The file header is also copied into the OutputFile object,
64 // Destroying this OutputFile object automatically closes
71 OutputFile (const char fileName[], const Header &header,
76 // Constructor -- attaches the new OutputFile object to a file
78 // The file header is also copied into the OutputFile object,
80 // Destroying this OutputFile object does not automatically
87 OutputFile (OStream &os, const Header &header,
94 // Destroying the OutputFile object before writin
    [all...]
ImfOutputFile.cpp 38 // class OutputFile
170 struct OutputFile::Data: public Mutex
212 OutputFile::Data::Data (bool deleteStream, int numThreads):
226 OutputFile::Data::~Data ()
237 OutputFile::Data::getLineBuffer (int number)
262 writePixelData (OutputFile::Data *ofd,
300 writePixelData (OutputFile::Data *ofd, const LineBuffer *lineBuffer)
310 convertToXdr (OutputFile::Data *ofd,
408 OutputFile::Data *ofd,
419 OutputFile::Data * _ofd
    [all...]
ImfRgbaFile.h 62 class OutputFile;
152 // Write pixel data (see class Imf::OutputFile)
176 // Update the preview image (see Imf::OutputFile::updatePreviewImage())
202 // (see Imf::OutputFile::updatePreviewImage()
221 OutputFile * _outputFile;
  /frameworks/compile/libbcc/include/bcc/Support/
OutputFile.h 29 class OutputFile : public File<FileBase::kWriteMode> {
32 OutputFile(const std::string &pFilename, unsigned pFlags = 0);
Disassembler.h 29 class OutputFile;
46 DisassembleResult Disassemble(OutputFile &pOutput, const char *pTriple,
  /frameworks/compile/libbcc/lib/Support/
OutputFile.cpp 17 #include "bcc/Support/OutputFile.h"
27 OutputFile::OutputFile(const std::string &pFilename, unsigned pFlags)
30 ssize_t OutputFile::write(const void *pBuf, size_t count) {
37 ALOGW("OutputFile::write: count = %zu, buffer = %p", count, pBuf);
59 void OutputFile::truncate() {
74 llvm::raw_fd_ostream *OutputFile::dup() {
Android.mk 30 OutputFile.cpp \
  /external/llvm/utils/
llvm-native-gxx 36 $OutputFile = $ARGV[$i + 1];
108 my ($BCFile, $Backend, $OutputFile) = @_;
113 $GeneratedCode = "${OutputFile}.c";
120 $GeneratedCode = "${OutputFile}.s";
128 run "gcc $GCCOptions $GeneratedCode -o $OutputFile $LibDirs $Libs";
134 my ($LLVMGCCCommand, $Backend, $OutputFile) = @_;
139 my $BCFile = "${OutputFile}.llvm.bc";
141 run "mv ${OutputFile} $BCFile";
143 run "mv ${OutputFile}.bc $BCFile";
147 $GeneratedCode = "${OutputFile}.cbe.c"
    [all...]
  /external/clang/include/clang/Frontend/
SerializedDiagnosticPrinter.h 36 std::unique_ptr<DiagnosticConsumer> create(StringRef OutputFile,
DependencyOutputOptions.h 38 std::string OutputFile;
CompilerInstance.h 155 struct OutputFile {
160 OutputFile(std::string filename, std::string tempFilename,
164 OutputFile(OutputFile &&O)
175 std::list<OutputFile> OutputFiles;
578 void addOutputFile(OutputFile &&OutFile);
  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 21 raw_ostream *OutputFile;
33 : SM(PP->getSourceManager()), OutputFile(OutputFile_),
40 delete OutputFile;
49 static void PrintHeaderInfo(raw_ostream *OutputFile, const char* Filename,
72 OutputFile->write(Msg.data(), Msg.size());
73 OutputFile->flush();
81 raw_ostream *OutputFile = MSStyle ? &llvm::outs() : &llvm::errs();
95 OutputFile = OS;
106 PrintHeaderInfo(OutputFile, Header.c_str(), ShowDepth, 2, MSStyle);
110 OutputFile,
    [all...]
DependencyGraph.cpp 31 std::string OutputFile;
45 DependencyGraphCallback(const Preprocessor *_PP, StringRef OutputFile,
47 : PP(_PP), OutputFile(OutputFile.str()), SysRoot(SysRoot.str()) { }
62 void clang::AttachDependencyGraphGen(Preprocessor &PP, StringRef OutputFile,
64 PP.addPPCallbacks(llvm::make_unique<DependencyGraphCallback>(&PP, OutputFile,
101 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::F_Text);
103 PP->getDiagnostics().Report(diag::err_fe_error_opening) << OutputFile
FrontendActions.cpp 82 std::string OutputFile;
84 ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile);
94 CI.getPreprocessor(), OutputFile, nullptr, Sysroot,
97 CI, InFile, OutputFile, OS, Buffer));
104 std::string &OutputFile) {
115 CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true,
121 OutputFile = CI.getFrontendOpts().OutputFile;
129 std::string OutputFile;
131 ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile);
    [all...]
DependencyFile.cpp 157 std::string OutputFile;
173 : PP(_PP), OutputFile(Opts.OutputFile), Targets(Opts.Targets),
393 llvm::sys::fs::remove(OutputFile);
398 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::F_Text);
400 PP->getDiagnostics().Report(diag::err_fe_error_opening) << OutputFile
  /frameworks/compile/slang/
llvm-rs-cc.cpp 74 std::string OutputFile(OutputDir);
77 if (!OutputFile.empty() &&
78 (OutputFile[OutputFile.size() - 1]) != OS_PATH_SEPARATOR)
79 OutputFile.append(1, OS_PATH_SEPARATOR);
82 OutputFile.append(PathSuffix);
83 OutputFile.append(1, OS_PATH_SEPARATOR);
89 OutputFile.append(slang::RSSlangReflectUtils::GetFileNameStem(InputFile));
91 OutputFile.append(
97 OutputFile.append(".d")
    [all...]
slang.cpp 128 OpenOutputFile(const char *OutputFile,
132 slangAssert((OutputFile != nullptr) &&
136 llvm::sys::path::parent_path(OutputFile));
139 new llvm::tool_output_file(OutputFile, EC, Flags);
146 << OutputFile << EC.message();
312 bool Slang::setOutput(const char *OutputFile) {
320 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_Text, EC, mDiagEngine);
328 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_None, EC, mDiagEngine);
341 mOutputFileName = OutputFile;
346 bool Slang::setDepOutput(const char *OutputFile) {
    [all...]
  /external/clang/lib/Serialization/
GeneratePCH.cpp 27 const Preprocessor &PP, StringRef OutputFile,
32 : PP(PP), OutputFile(OutputFile), Module(Module), isysroot(isysroot.str()),
54 Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot, hasErrors);
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 303 std::string OutputFile,
337 if (OutputFile.empty()) OutputFile = OutputPrefix + "-execution-output-%%%%%%%";
341 std::error_code EC = sys::fs::createUniqueFile(OutputFile, UniqueFile);
347 OutputFile = UniqueFile.str();
354 int RetVal = AI->ExecuteProgram(BitcodeFile, InputArgv, InputFile, OutputFile,
358 return OutputFile;
374 std::ofstream outFile(OutputFile.c_str(), std::ios_base::app);
380 return OutputFile;
387 std::string OutputFile,
    [all...]
ToolRunner.cpp 166 const std::string &OutputFile,
179 const std::string &OutputFile,
212 InputFile, OutputFile, OutputFile,
287 const std::string &OutputFile,
343 const std::string &OutputFile,
356 const std::string &OutputFile,
377 &ProgramArgs[0], InputFile, OutputFile,
378 OutputFile, Timeout, MemoryLimit, Error);
511 const std::string &OutputFile,
    [all...]
ToolRunner.h 57 /// Output is captured to the specified OutputFile location. The SharedLibs
65 const std::string &OutputFile,
76 std::string &OutputFile,
141 const std::string &OutputFile,
179 const std::string &OutputFile,
  /frameworks/compile/libbcc/include/bcc/
Compiler.h 38 class OutputFile;
106 enum ErrorCode compile(Script &pScript, OutputFile &pResult,
  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 44 FILE *OutputFile;
49 OutputFile = fopen(OutputName, "ab");
50 if (!OutputFile)
53 RetVal = writeFile(OutputFile);
55 fclose(OutputFile);
  /external/llvm/lib/Support/
Signals.cpp 95 SmallString<32> InputFile, OutputFile;
97 sys::fs::createTemporaryFile("symbolizer-output", "", OutputFile);
99 FileRemover OutputRemover(OutputFile.c_str());
110 StringRef OutputFileStr(OutputFile);
129 auto OutputBuf = MemoryBuffer::getFile(OutputFile.c_str());
  /external/llvm/tools/dsymutil/
dsymutil.cpp 181 llvm::Twine OutputFile = Basename + ".tmp%%%%%%.dwarf";
184 if (auto EC = getUniqueFile(OutputFile, FD, UniqueFile)) {
186 << OutputFile << "': " << EC.message() << '\n';
326 std::string OutputFile = getOutputFileName(InputFile, NeedsTempFiles);
327 if (OutputFile.empty() || !linkDwarf(OutputFile, *Map, Options))
332 OutputFile);

Completed in 756 milliseconds

1 2 3 4 5 6 7 8