HomeSort by relevance Sort by last modified time
    Searched full:outputfilename (Results 176 - 200 of 252) sorted by null

1 2 3 4 5 6 78 91011

  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 41 OutputFilename("o", cl::desc("Override output filename"),
702 if (OutputFilename.empty())
703 OutputFilename = "-";
706 Out.reset(new tool_output_file(OutputFilename, EC, sys::fs::F_None));
  /external/swiftshader/third_party/LLVM/tools/llvm-mc/
llvm-mc.cpp 50 OutputFilename("o", cl::desc("Output filename"),
218 if (OutputFilename == "")
219 OutputFilename = "-";
222 tool_output_file *Out = new tool_output_file(OutputFilename.c_str(), Err,
  /device/linaro/bootloader/edk2/BaseTools/Scripts/
ConvertMasmToNasm.py 233 self.outputFilename = outputFile
244 self.outputFileBase = os.path.basename(self.outputFilename)
249 dst = os.path.basename(self.outputFilename)
253 if self.outputFilename == '-' and not self.diff:
260 f = io.open(self.outputFilename, 'wb')
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
binhex.py 4 binhex(inputfilename, outputfilename)
5 hexbin(inputfilename, outputfilename)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
binhex.py 4 binhex(inputfilename, outputfilename)
5 hexbin(inputfilename, outputfilename)
  /external/llvm/tools/bugpoint/
BugDriver.h 168 std::string OutputFilename,
256 std::string &OutputFilename, bool DeleteOutput = false,
  /external/llvm/tools/llvm-link/
llvm-link.cpp 68 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
378 tool_output_file Out(OutputFilename, EC, sys::fs::F_None);
  /external/python/cpython2/Lib/
binhex.py 4 binhex(inputfilename, outputfilename)
5 hexbin(inputfilename, outputfilename)
  /external/python/cpython3/Lib/
binhex.py 4 binhex(inputfilename, outputfilename)
5 hexbin(inputfilename, outputfilename)
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
BugDriver.h 173 std::string OutputFilename,
260 std::string &OutputFilename, bool DeleteOutput = false,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
binhex.py 4 binhex(inputfilename, outputfilename)
5 hexbin(inputfilename, outputfilename)
  /prebuilts/gdb/linux-x86/lib/python2.7/
binhex.py 4 binhex(inputfilename, outputfilename)
5 hexbin(inputfilename, outputfilename)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
binhex.py 4 binhex(inputfilename, outputfilename)
5 hexbin(inputfilename, outputfilename)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
binhex.py 4 binhex(inputfilename, outputfilename)
5 hexbin(inputfilename, outputfilename)
  /external/clang/lib/Frontend/
FrontendActions.cpp 598 StringRef OutputFileName = getCompilerInstance().getFrontendOpts().OutputFile;
599 if (!OutputFileName.empty() && OutputFileName != "-") {
601 OutFile.reset(new llvm::raw_fd_ostream(OutputFileName.str(), EC,
  /external/python/cpython2/Modules/
ld_so_aix.in 18 # (*) -o [OutputFileName] -o shr.o
  /external/python/cpython3/Modules/
ld_so_aix.in 18 # (*) -o [OutputFileName] -o shr.o
  /external/llvm/tools/llvm-dwp/
llvm-dwp.cpp 54 static opt<std::string> OutputFilename(Required, "o",
665 raw_fd_ostream OutFile(OutputFilename, EC, sys::fs::F_None);
667 return error(Twine(OutputFilename) + ": " + EC.message(), Context);
  /external/testng/src/main/java/org/testng/reporters/
SuiteHTMLReporter.java 348 String outputFileName, boolean alphabetical)
350 try (BufferedWriter bw = Utils.openWriter(getOutputDirectory(xmlSuite), outputFileName)) {
440 Utils.log("[SuiteHTMLReporter]", 1, "Error writing to " + outputFileName + ": " + e.getMessage());
  /external/ltp/pan/
ltp-pan.c 157 char *outputfilename = NULL; local
244 outputfilename = strdup(optarg);
441 if (outputfilename) {
442 if (!freopen(outputfilename, "a+", stdout)) {
446 outputfilename);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/
TianoCompress.c     [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 502 bool init(Triple TheTriple, StringRef OutputFilename);
575 bool DwarfStreamer::init(Triple TheTriple, StringRef OutputFilename) {
619 llvm::make_unique<raw_fd_ostream>(OutputFilename, EC, sys::fs::F_None);
621 return error(Twine(OutputFilename) + ": " + EC.message(), Context);
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionImport.cpp 461 /// Emit the files \p ModulePath will import from into \p OutputFilename.
463 StringRef ModulePath, StringRef OutputFilename,
467 raw_fd_ostream ImportsOS(OutputFilename, EC, sys::fs::OpenFlags::F_None);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
XLIFF2ICUConverter.java 516 String outputFileName = null;
518 outputFileName = destDir+File.separator+targetFilename+".txt";
520 outputFileName = destDir+File.separator+set.name+".txt";
522 FileOutputStream file = new FileOutputStream(outputFileName);
    [all...]
  /external/jdiff/src/jdiff/
RootDocToXML.java 32 String tempFileName = outputFileName;
37 tempFileName += outputFileName;
69 String xsdFileName = outputFileName;
    [all...]

Completed in 991 milliseconds

1 2 3 4 5 6 78 91011