HomeSort by relevance Sort by last modified time
    Searched defs:Filename (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /external/llvm/tools/bugpoint/
FindBugs.cpp 65 std::string Filename;
66 if(runPasses(Program, PassesToRun, Filename, false)) {
93 bool Diff = diffProgram(Program, Filename, "", false, &Error);
107 sys::fs::remove(Filename);
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
FindBugs.cpp 64 std::string Filename;
65 if(runPasses(Program, PassesToRun, Filename, false)) {
92 bool Diff = diffProgram(Program, Filename, "", false, &Error);
106 sys::Path(Filename).eraseFromDisk();
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/Pei/
SerialStatusCodeWorker.c 47 CHAR8 *Filename;
59 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
67 Filename,
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/
SerialStatusCodeWorker.c 45 CHAR8 *Filename;
57 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
65 Filename,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/Pei/
SerialStatusCodeWorker.c 50 CHAR8 *Filename;
62 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
70 Filename,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/
SerialStatusCodeWorker.c 46 CHAR8 *Filename;
58 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
66 Filename,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/Smm/
SerialStatusCodeWorker.c 46 CHAR8 *Filename;
58 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
66 Filename,
  /external/llvm/include/llvm/Support/
FileUtilities.h 37 /// If an exception is thrown from a region, the object removes the filename
41 SmallString<128> Filename;
46 explicit FileRemover(const Twine& filename, bool deleteIt = true)
48 filename.toVector(Filename);
54 sys::fs::remove(Filename);
61 void setFile(const Twine& filename, bool deleteIt = true) {
64 sys::fs::remove(Filename);
67 Filename.clear();
68 filename.toVector(Filename)
    [all...]
ToolOutputFile.h 33 std::string Filename;
48 tool_output_file(StringRef Filename, std::error_code &EC,
51 tool_output_file(StringRef Filename, int FD);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
FileUtilities.h 37 /// If an exception is thrown from a region, the object removes the filename
41 SmallString<128> Filename;
46 explicit FileRemover(const Twine& filename, bool deleteIt = true)
48 filename.toVector(Filename);
55 sys::fs::remove(Filename.str(), existed);
62 void setFile(const Twine& filename, bool deleteIt = true) {
66 sys::fs::remove(Filename.str(), existed);
69 Filename.clear();
70 filename.toVector(Filename)
    [all...]
ToolOutputFile.h 32 /// Filename - The name of the file.
33 std::string Filename;
38 explicit CleanupInstaller(const char *filename);
49 tool_output_file(const char *filename, std::string &ErrorInfo,
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/HalRuntimeServicesExampleLib/
ReportStatusCode.c 35 CHAR8 *Filename;
62 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
70 Filename,
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/PrePiLib/
ReportStatusCode.c 45 arguments specified by Filename, Description, and LineNumber. If CodeType is
48 Filename, Description, and LineNumber from the optional data area of the
50 a Null-terminated ASCII string for the FileName, followed by a Null-terminated
56 If Filename is NULL, then ASSERT().
63 @param Filename Pointer to the source file name that generated the ASSERT().
68 converted ASSERT() arguments specified by Filename, Description,
80 OUT CHAR8 **Filename,
88 ASSERT (Filename != NULL);
96 *Filename = (CHAR8 *)(AssertData + 1);
97 *Description = *Filename + AsciiStrLen (*Filename) + 1;
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/
Nt32OemHookStatusCodeLib.c 117 CHAR8 *Filename;
129 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
137 Filename,
  /device/linaro/bootloader/edk2/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/
Nt32OemHookStatusCodeLib.c 126 CHAR8 *Filename;
138 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
146 Filename,
  /external/clang/include/clang/Tooling/
CompilationDatabase.h 45 CompileCommand(Twine Directory, Twine Filename,
48 Filename(Filename.str()),
55 std::string Filename;
  /external/clang/lib/AST/
InheritViz.cpp 141 SmallString<128> Filename;
143 Self.getAsString(), "dot", FD, Filename)) {
148 llvm::errs() << "Writing '" << Filename << "'... ";
159 DisplayGraph(Filename);
  /external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 98 std::string Filename = Name + "." + F.getName().str() + ".dot";
101 errs() << "Writing '" << Filename << "'...";
103 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
161 std::string Filename = Name + ".dot";
164 errs() << "Writing '" << Filename << "'...";
166 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
  /external/llvm/lib/Analysis/
CFGPrinter.cpp 80 std::string Filename = ("cfg." + F.getName() + ".dot").str();
81 errs() << "Writing '" << Filename << "'...";
84 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
114 std::string Filename = ("cfg." + F.getName() + ".dot").str();
115 errs() << "Writing '" << Filename << "'...";
118 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
ModuleDebugInfoPrinter.cpp 58 static void printFile(raw_ostream &O, StringRef Filename, StringRef Directory,
60 if (Filename.empty())
66 O << Filename;
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DOTGraphTraitsPass.h 58 std::string Filename = Name + "." + F.getNameStr() + ".dot";
59 errs() << "Writing '" << Filename << "'...";
62 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
CFGPrinter.cpp 80 std::string Filename = "cfg." + F.getNameStr() + ".dot";
81 errs() << "Writing '" << Filename << "'...";
84 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
114 std::string Filename = "cfg." + F.getNameStr() + ".dot";
115 errs() << "Writing '" << Filename << "'...";
118 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
ProfileInfoLoader.cpp 86 const std::string &Filename,
88 Filename(Filename),
90 FILE *F = fopen(Filename.c_str(), "rb");
92 errs() << ToolName << ": Error opening '" << Filename << "': ";
  /external/swiftshader/third_party/LLVM/tools/llvm-link/
llvm-link.cpp 36 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
37 cl::value_desc("filename"));
58 sys::Path Filename;
59 if (!Filename.set(FN)) {
65 if (Verbose) errs() << "Loading '" << Filename.c_str() << "'\n";
68 const std::string &FNStr = Filename.str();
  /external/swiftshader/third_party/LLVM/tools/opt/
GraphPrinters.cpp 28 std::string Filename = GraphName + ".dot";
29 O << "Writing '" << Filename << "'...";
31 tool_output_file F(Filename.c_str(), ErrInfo);

Completed in 821 milliseconds

1 2 3 4 5