HomeSort by: relevance | last modified time | path
    Searched defs:Filename (Results 1 - 25 of 113) sorted by relevancy

1 2 3 4 5

  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
FindBugs.cpp 54 std::string Filename;
55 if (runPasses(*Program, PassesToRun, Filename, false)) {
79 Expected<bool> Diff = diffProgram(*Program, Filename, "", false);
92 sys::fs::remove(Filename);
BugDriver.h 110 /// ReferenceOutput contains the filename of the file containing the output we
153 /// A recommended filename may be optionally specified.
170 Error createReferenceFile(Module &M, const std::string &Filename =
223 /// file and writting the filename into OutputFile if successful. If the
226 /// deleted on success, and the filename string is undefined. This prints to
241 std::string Filename;
242 return runPasses(M, PassesToRun, Filename, true);
255 bool writeProgramToFile(const std::string &Filename, const Module &M) const;
256 bool writeProgramToFile(const std::string &Filename, int FD,
272 /// Given a bitcode or assembly input filename, parse and return it, or retur
    [all...]
OptimizerDriver.cpp 63 bool BugDriver::writeProgramToFile(const std::string &Filename, int FD,
65 ToolOutputFile Out(Filename, FD);
79 bool BugDriver::writeProgramToFile(const std::string &Filename,
82 ToolOutputFile Out(Filename, EC, sys::fs::OF_None);
95 std::string Filename = OutputPrefix + "-" + ID + ".bc";
96 if (writeProgramToFile(Filename, M)) {
97 errs() << "Error opening file '" << Filename << "' for writing!\n";
101 outs() << "Emitted bitcode to '" << Filename << "'\n";
107 outs() << "opt " << Filename;
123 /// and writing the filename into OutputFile if successful. If th
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpixtract/
axmain.c 96 char *Filename;
173 /* Input filename is always required */
175 Filename = argv[AcpiGbl_Optind];
176 if (!Filename)
178 printf ("Missing required input filename\n");
188 Status = AxExtractTables (Filename, NULL, AX_OPTIONAL_TABLES);
193 Status = AxExtractToMultiAmlFile (Filename);
198 Status = AxListAllTables (Filename);
203 Status = AxExtractTables (Filename, AcpiGbl_Optarg, AX_REQUIRED_TABLE);
211 Status = AxExtractTables (Filename, "DSDT", AX_REQUIRED_TABLE)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/DirectoryWatcher/
DirectoryWatcher.h 94 /// Filename that this event is related to or an empty string in
96 std::string Filename;
98 Event(EventKind Kind, llvm::StringRef Filename)
99 : Kind(Kind), Filename(Filename) {}
  /src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/
RemarkStreamer.h 47 /// The filename that the remark diagnostics are emitted to.
48 const Optional<std::string> Filename;
52 Optional<StringRef> Filename = None);
54 /// Return the filename that the remark diagnostics are emitted to.
56 return Filename ? Optional<StringRef>(*Filename) : None;
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
CompilationDatabase.h 46 CompileCommand(const Twine &Directory, const Twine &Filename,
48 : Directory(Directory.str()), Filename(Filename.str()),
55 std::string Filename;
69 return LHS.Directory == RHS.Directory && LHS.Filename == RHS.Filename &&
220 StringRef Filename);
  /src/external/apache2/llvm/dist/clang/lib/AST/
InheritViz.cpp 140 SmallString<128> Filename;
142 Self.getAsString(), "dot", FD, Filename)) {
147 llvm::errs() << "Writing '" << Filename << "'... ";
158 DisplayGraph(Filename);
  /src/external/apache2/llvm/dist/clang/tools/clang-refactor/
TestSupport.h 54 std::string Filename;
70 /// the -selection=test:<filename> option.
98 Optional<TestSelectionRangesInFile> findTestSelectionRanges(StringRef Filename);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 95 std::string Filename = Name + "." + F.getName().str() + ".dot";
98 errs() << "Writing '" << Filename << "'...";
100 raw_fd_ostream File(Filename, EC, sys::fs::OF_TextWithCRLF);
158 std::string Filename = Name + ".dot";
161 errs() << "Writing '" << Filename << "'...";
163 raw_fd_ostream File(Filename, EC, sys::fs::OF_TextWithCRLF);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
FileUtilities.h 39 /// If an exception is thrown from a region, the object removes the filename
43 SmallString<128> Filename;
48 explicit FileRemover(const Twine& filename, bool deleteIt = true)
50 filename.toVector(Filename);
56 sys::fs::remove(Filename);
63 void setFile(const Twine& filename, bool deleteIt = true) {
66 sys::fs::remove(Filename);
69 Filename.clear();
70 filename.toVector(Filename)
    [all...]
ToolOutputFile.h 33 std::string Filename;
38 StringRef getFilename() { return Filename; }
39 explicit CleanupInstaller(StringRef Filename);
53 ToolOutputFile(StringRef Filename, std::error_code &EC,
56 ToolOutputFile(StringRef Filename, int FD);
61 /// Return the filename initialized with.
  /src/sys/external/bsd/acpica/dist/compiler/
cvdisasm.c 370 FNode->Filename, FNode->Parent->Filename);
375 AcpiOsPrintf ("Include (\"%s\")\n", FNode->Filename);
377 FNode->Filename);
402 char *Filename = Op->Common.CvFilename;
408 Filename);
409 FNode = CvFilenameExists (Filename, AcpiGbl_FileTreeRoot);
413 * At this point, each Filename should exist in AcpiGbl_FileTreeRoot
418 Filename, strerror (errno));
433 AcpiUtStricmp (Current->Filename, AcpiGbl_CurrentFilename)
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpidump/
apfiles.c 58 * PARAMETERS: Pathname - Output filename
100 * PARAMETERS: Pathname - Output filename
150 * filename from the table signature.
159 char Filename[ACPI_NAMESEG_SIZE + 16];
170 /* Construct lower-case filename from the table local signature */
174 ACPI_COPY_NAMESEG (Filename, ACPI_RSDP_NAME);
178 ACPI_COPY_NAMESEG (Filename, Table->Signature);
181 Filename[0] = (char) tolower ((int) Filename[0]);
182 Filename[1] = (char) tolower ((int) Filename[1])
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
FixItRewriter.cpp 98 std::string Filename =
105 OS.reset(new llvm::raw_fd_ostream(Filename, EC, llvm::sys::fs::OF_None));
108 Diags.Report(clang::diag::err_fe_unable_to_open_output) << Filename
118 std::make_pair(std::string(Entry->getName()), Filename));
  /src/external/apache2/llvm/dist/llvm/include/llvm/Passes/
PassPlugin.h 67 static Expected<PassPlugin> Load(const std::string &Filename);
69 /// Get the filename of the loaded plugin.
70 StringRef getFilename() const { return Filename; }
87 PassPlugin(const std::string &Filename, const sys::DynamicLibrary &Library)
88 : Filename(Filename), Library(Library), Info() {}
90 std::string Filename;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
CFGPrinter.cpp 36 "cfg-dot-filename-prefix", cl::Hidden,
61 std::string Filename =
63 errs() << "Writing '" << Filename << "'...";
66 raw_fd_ostream File(Filename, EC, sys::fs::OF_Text);
DDGPrinter.cpp 24 "dot-ddg-filename-prefix", cl::init("ddg"), cl::Hidden,
40 std::string Filename =
42 errs() << "Writing '" << Filename << "'...";
45 raw_fd_ostream File(Filename, EC, sys::fs::OF_Text);
ModuleDebugInfoPrinter.cpp 61 static void printFile(raw_ostream &O, StringRef Filename, StringRef Directory,
63 if (Filename.empty())
69 O << Filename;
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
LogDiagnosticPrinter.h 27 std::string Filename;
  /src/external/apache2/llvm/dist/clang/lib/Driver/
InputInfo.h 31 Filename,
37 const char *Filename;
55 : Kind(Filename), Act(nullptr), Type(_Type), BaseInput(_BaseInput) {
56 Data.Filename = _Filename;
59 : Kind(Filename), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) {
60 Data.Filename = _Filename;
75 bool isFilename() const { return Kind == Filename; }
85 return Data.Filename;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
ClangSrcLocDump.cpp 66 static const char Filename[] = "ASTTU.cpp";
88 Args.push_back(Filename);
113 MemFS->addFile(Filename, 0,
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Instrumentation/
AddressSanitizer.h 26 StringRef Filename;
32 bool empty() const { return Filename.empty(); }
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
CoverageMappingWriter.cpp 35 assert(NameSet.insert(Name).second && "Duplicate filename");
43 for (const auto &Filename : Filenames) {
44 encodeULEB128(Filename.size(), FilenamesOS);
45 FilenamesOS << Filename;
174 // Write out the fileid -> filename mapping.
  /src/sys/external/bsd/acpica/dist/common/
adfile.c 59 char *Filename,
75 * DESCRIPTION: Build an output filename from an ACPI table ID string
111 * PARAMETERS: Filename - name of file
123 char *Filename,
131 File = fopen (Filename, "wb");
134 printf ("Could not open file %s\n", Filename);
141 printf ("Could not write to file %s\n", Filename);
171 char *Filename;
174 Filename = AdGenerateFilename (TableName, OemTableId);
175 AdWriteBuffer (Filename, (char *) Table, Length)
    [all...]

Completed in 79 milliseconds

1 2 3 4 5