HomeSort by relevance Sort by last modified time
    Searched defs:OutFile (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/chrome/tools/build/win/
version.bat 13 set OutFile=%~4
62 | sed "s/@LASTCHANGE@/%LASTCHANGE%/" > %OutFile%
  /external/llvm/runtime/libprofile/
CommonProfiling.c 118 static int OutFile = -1;
123 if (OutFile == -1) {
124 OutFile = open(OutputFilename, O_CREAT | O_WRONLY, 0666);
125 lseek(OutFile, 0, SEEK_END); /* O_APPEND prevents seeking */
126 if (OutFile == -1) {
130 return(OutFile);
137 if (write(OutFile, &PTy, sizeof(int)) < 0 ||
138 write(OutFile, &SavedArgsLength, sizeof(unsigned)) < 0 ||
139 write(OutFile, SavedArgs, SavedArgsLength) < 0 ) {
145 if (write(OutFile, &Zeros, 4-(SavedArgsLength&3)) < 0)
    [all...]
  /external/clang/lib/Frontend/
FrontendActions.cpp 430 llvm::OwningPtr<llvm::raw_fd_ostream> OutFile;
434 OutFile.reset(new llvm::raw_fd_ostream(OutputFileName.str().c_str(),
437 llvm::raw_ostream &Out = OutFile.get()? *OutFile.get() : llvm::outs();
CompilerInstance.cpp 419 void CompilerInstance::addOutputFile(const OutputFile &OutFile) {
420 assert(OutFile.OS && "Attempt to add empty stream to output list!");
421 OutputFiles.push_back(OutFile);
506 std::string OutFile, TempFile;
508 OutFile = OutputPath;
510 OutFile = "-";
514 OutFile = Path.str();
516 OutFile = "-";
523 if (OutFile == "-")
544 TempPath = OutFile;
    [all...]
  /external/lzma/Java/SevenZip/
LzmaAlone.java 30 public String OutFile;
134 OutFile = s;
193 java.io.File outFile = new java.io.File(params.OutFile);
196 java.io.BufferedOutputStream outStream = new java.io.BufferedOutputStream(new java.io.FileOutputStream(outFile));
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 271 raw_ostream *OutFile = 0;
274 OutFile = new raw_fd_ostream(OutFileName, ErrorInfo, sys::fs::F_Append);
280 OS = OutFile;
355 if (OutFile)
356 delete OutFile;
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 73 raw_ostream* OutFile;
583 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS),
    [all...]
RewriteModernObjC.cpp 74 raw_ostream* OutFile;
639 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS),
    [all...]

Completed in 215 milliseconds