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

1 2 3 4 5 6 7 8 91011

  /external/swiftshader/third_party/LLVM/utils/FileUpdate/
FileUpdate.cpp 34 OutputFilename(cl::Positional, cl::desc("<output-file>"), cl::Required);
41 if (OutputFilename == "-") {
56 MemoryBuffer::getFile(OutputFilename.c_str(), Out);
63 errs() << argv[0] << ": Not updating '" << OutputFilename
70 errs() << argv[0] << ": Updating '" << OutputFilename
73 tool_output_file OutStream(OutputFilename.c_str(), ErrorStr,
77 << OutputFilename << "': " << ErrorStr << '\n';
  /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
FileName.c 433 the trimmed filename is stored in OutputFileName
436 @param OutputFileName - The output file name.
445 OUT CHAR16 *OutputFileName
457 TempNamePointer = OutputFileName;
464 while (TempNamePointer > OutputFileName) {
481 if (TempNamePointer - OutputFileName > EFI_FILE_STRING_LENGTH) {
488 if (*OutputFileName < 0x20 ||
489 *OutputFileName == '\"' ||
490 *OutputFileName == '*' ||
491 *OutputFileName == '/' ||
    [all...]
  /external/skia/tools/
get_current_monitor_profile.cpp 31 SkString outputFilename;
48 outputFilename = SkStringPrintf("monitor_%d.icc", i);
49 CopyFile(icmPath, outputFilename.c_str(), FALSE);
  /external/skqp/tools/
get_current_monitor_profile.cpp 31 SkString outputFilename;
48 outputFilename = SkStringPrintf("monitor_%d.icc", i);
49 CopyFile(icmPath, outputFilename.c_str(), FALSE);
  /art/tools/checker/
checker.py 47 def ListPasses(outputFilename):
48 c1File = ParseC1visualizerStream(os.path.basename(outputFilename), open(outputFilename, "r"))
53 def DumpPass(outputFilename, passName):
54 c1File = ParseC1visualizerStream(os.path.basename(outputFilename), open(outputFilename, "r"))
88 def RunTests(checkPrefix, checkPath, outputFilename, targetArch, debuggableMode):
89 c1File = ParseC1visualizerStream(os.path.basename(outputFilename), open(outputFilename, "r"))
  /tools/tradefederation/core/src/com/android/tradefed/device/metric/
IonHeapInfoMetricCollector.java 46 String outputFileName =
48 File outputFile = saveProcessOutput(device, "cat /d/ion/heaps/audio", outputFileName);
64 String outputFileName =
66 File outputFile = saveProcessOutput(device, "cat /d/ion/heaps/system", outputFileName);
BuddyInfoMetricCollector.java 38 String outputFileName =
41 saveProcessOutput(device, "cat /d/extfrag/unusable_index", outputFileName);
GraphicsStatsMetricCollector.java 38 String outputFileName =
40 File outputFile = saveProcessOutput(device, "dumpsys graphicsstats", outputFileName);
MemInfoMetricCollector.java 38 String outputFileName =
40 File outputFile = saveProcessOutput(device, "dumpsys meminfo -c -S", outputFileName);
PagetypeInfoMetricCollector.java 38 String outputFileName =
40 File outputFile = saveProcessOutput(device, "cat /proc/pagetypeinfo", outputFileName);
TraceMetricCollector.java 38 String outputFileName = String.format("%s/trace-%s", createTempDir(), getFileSuffix());
41 device, "cat /sys/kernel/debug/tracing/trace", outputFileName);
  /external/swiftshader/third_party/LLVM/tools/llvm-as/
llvm-as.cpp 37 OutputFilename("o", cl::desc("Override output filename"),
55 if (OutputFilename.empty()) {
57 OutputFilename = "-";
63 OutputFilename = std::string(IFN.begin(), IFN.end()-3);
65 OutputFilename = IFN; // Append a .bc to it
67 OutputFilename += ".bc";
73 (new tool_output_file(OutputFilename.c_str(), ErrorInfo,
  /external/swiftshader/third_party/LLVM/tools/llvm-dis/
llvm-dis.cpp 40 OutputFilename("o", cl::desc("Override output filename"),
148 OutputFilename = "-";
150 if (OutputFilename.empty()) { // Unspecified output, infer it.
152 OutputFilename = "-";
158 OutputFilename = std::string(IFN.begin(), IFN.end()-3)+".ll";
160 OutputFilename = IFN+".ll";
166 Out(new tool_output_file(OutputFilename.c_str(), ErrorInfo,
  /frameworks/compile/slang/
llvm-rs-as.cpp 44 OutputFilename("o", cl::desc("Override output filename"),
72 if (OutputFilename.empty()) {
74 OutputFilename = "-";
80 OutputFilename = std::string(IFN.begin(), IFN.end()-3);
82 OutputFilename = IFN; // Append a .bc to it
84 OutputFilename += ".bc";
90 (new tool_output_file(OutputFilename.c_str(), EC, llvm::sys::fs::F_None));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
gprof2html.py 30 outputfilename = filename + ".html"
32 output = file(outputfilename, "w")
76 webbrowser.open("file:" + os.path.abspath(outputfilename))
  /external/python/cpython2/Tools/scripts/
gprof2html.py 30 outputfilename = filename + ".html"
32 output = file(outputfilename, "w")
76 webbrowser.open("file:" + os.path.abspath(outputfilename))
  /external/python/cpython3/Tools/scripts/
gprof2html.py 36 outputfilename = filename + ".html"
38 output = open(outputfilename, "w")
82 webbrowser.open("file:" + os.path.abspath(outputfilename))
  /frameworks/support/graphics/drawable/animated/src/androidTest/java/androidx/vectordrawable/graphics/drawable/tests/
DrawableUtils.java 55 String outputFilename = outputFolder + fileTitle + "_golden.png";
56 File outputFile = new File(outputFilename);
63 Log.v(LOGTAG, "Write test No." + outputFilename + " to file successfully.");
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ModuleWriter.java 36 public void openFile(String outputFileName) {
40 new FileOutputStream(BUILDER_FILE_PATH+outputFileName));
42 System.out.println("? Could not open " + outputFileName + " for writing.");
47 System.out.println("Writing module " + outputFileName + "...");
  /external/llvm/tools/yaml2obj/
yaml2obj.cpp 40 static cl::opt<std::string> OutputFilename("o", cl::desc("Output filename"),
76 if (OutputFilename.empty())
77 OutputFilename = "-";
81 new tool_output_file(OutputFilename, EC, sys::fs::F_None));
  /external/swiftshader/third_party/LLVM/tools/llc/
llc.cpp 50 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
145 std::string outputFilename;
151 outputFilename = std::string(IFN.begin(), IFN.end()-3); // s/.bc/.s/
153 outputFilename = IFN;
155 return outputFilename;
162 if (OutputFilename.empty()) {
164 OutputFilename = "-";
166 OutputFilename = GetFileNameRoot(InputFilename);
173 OutputFilename += ".cbe.c";
175 OutputFilename += ".cpp";
    [all...]
  /external/webrtc/webrtc/tools/rtcbot/
test.js 72 createStatisticsReport: function (outputFileName) {
73 return new StatisticsReport(outputFileName);
97 StatisticsReport = function (outputFileName) {
100 this.outputFileName_ = outputFileName;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/StrGather/
StringDB.h 89 INT8 *OutputFileName,
138 INT8 *OutputFileName,
  /frameworks/av/cmds/stagefright/
muxer.cpp 59 const char *outputFileName,
71 if (outputFileName == NULL) {
72 outputFileName = "/sdcard/muxeroutput.mp4";
75 ALOGV("input file %s, output file %s", path, outputFileName);
78 int fd = open(outputFileName, O_CREAT | O_LARGEFILE | O_TRUNC | O_RDWR, S_IRUSR | S_IWUSR);
233 char *outputFileName = NULL;
265 outputFileName = optarg;
324 int result = muxing(argv[0], useAudio, useVideo, outputFileName,
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
Vtf.py 185 OutputFileName = ''
191 OutputFileName = 'Vtf%d.raw' % Index
192 OutputFileName = os.path.join(GenFdsGlobalVariable.FvDir, OutputFileName)
193 Arg += ('-o', OutputFileName)
194 FvVtfDict[FvObj.upper()] = OutputFileName

Completed in 358 milliseconds

1 2 3 4 5 6 7 8 91011