HomeSort by relevance Sort by last modified time
    Searched defs:Filename (Results 51 - 75 of 76) sorted by null

1 23 4

  /external/clang/lib/CodeGen/
CodeGenAction.cpp 448 StringRef Filename;
453 D.getLocation(&Filename, &Line, &Column);
454 const FileEntry *FE = FileMgr.getFile(Filename);
480 << Filename << Line << Column;
    [all...]
CGExpr.cpp     [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 153 auto FileName = llvm::sys::path::filename(ModuleMapPath);
156 llvm::hash_combine(DirName.lower(), FileName.lower(),
242 /// getName - Return the directory or filename corresponding to this lookup
254 StringRef FileName, const DirectoryEntry *Dir, bool IsSystemHeaderDir,
258 const FileEntry *File = getFileMgr().getFile(FileName, /*OpenFile=*/true);
274 StringRef &Filename,
290 llvm::sys::path::append(TmpDir, Filename);
298 RelativePath->append(Filename.begin(), Filename.end())
    [all...]
Pragma.cpp 465 StringRef Filename = getSpelling(FilenameTok, FilenameBuffer, &Invalid);
470 GetIncludeFilenameSpelling(FilenameTok.getLocation(), Filename);
473 if (Filename.empty())
479 LookupFile(FilenameTok.getLocation(), Filename, isAngled, nullptr,
483 Diag(FilenameTok, diag::err_pp_file_not_found) << Filename;
622 // We will either get a quoted filename or a bracketed filename, and we
623 // have to track which we got. The first filename is the source name,
624 // and the second name is the mapped filename. If the first is quoted,
    [all...]
PPDirectives.cpp 605 StringRef Filename,
667 Filename, FilenameLoc, isAngled, TmpFromDir, TmpCurDir,
684 Filename, FilenameLoc, isAngled, FromDir, CurDir, Includers, SearchPath,
689 RequestingModule, FilenameLoc, Filename, FE);
699 if ((FE = HeaderInfo.LookupSubframeworkHeader(Filename, CurFileEnt,
705 RequestingModule, FilenameLoc, Filename, FE);
716 Filename, CurFileEnt, SearchPath, RelativePath,
720 RequestingModule, FilenameLoc, Filename, FE);
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 724 std::string Filename;
731 UbigraphViz(std::unique_ptr<raw_ostream> Out, StringRef Filename);
786 StringRef Filename)
787 : Out(std::move(OutStream)), Filename(Filename), Cntr(0) {
803 args.push_back(Filename.c_str());
812 llvm::sys::fs::remove(Filename);
  /external/llvm/include/llvm/ProfileData/
CoverageMapping.h 279 StringRef Filename;
281 /// \brief Skip records whose primary file is not \c Filename.
286 StringRef Filename = "")
287 : Records(Records_), Current(Records.begin()), Filename(Filename) {
294 return Current == RHS.Current && Filename == RHS.Filename;
369 std::string Filename;
377 CoverageData(StringRef Filename) : Filename(Filename) {
    [all...]
  /external/clang/include/clang/Frontend/
ASTUnit.h 81 std::string Filename;
549 /// \brief If this ASTUnit came from an AST file, returns the filename for it.
703 getBufferForFile(StringRef Filename, std::string *ErrorStr = nullptr);
720 /// \param Filename - The AST file to load.
729 const std::string &Filename, const PCHContainerReader &PCHContainerRdr,
    [all...]
  /external/clang/lib/Driver/
Driver.cpp 67 Name = llvm::sys::path::filename(ClangExecutable);
669 VFS = llvm::sys::path::filename(TempFile);
677 std::string Script = CrashInfo.Filename.rsplit('.').first.str() + ".sh";
    [all...]
  /external/clang/lib/Format/
Format.cpp     [all...]
  /external/llvm/include/llvm/Support/
GCOV.h 271 StringRef getFilename() const { return Filename; }
291 StringRef Filename;
401 void addBlockLine(StringRef Filename, uint32_t Line, const GCOVBlock *Block) {
402 if (Line > LineInfo[Filename].LastLine)
403 LineInfo[Filename].LastLine = Line;
404 LineInfo[Filename].Blocks[Line - 1].push_back(Block);
406 void addFunctionLine(StringRef Filename, uint32_t Line,
408 if (Line > LineInfo[Filename].LastLine)
409 LineInfo[Filename].LastLine = Line;
410 LineInfo[Filename].Functions[Line - 1].push_back(Function)
    [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.h 447 StringRef Filename;
450 MDNodeKeyImpl(StringRef Filename, StringRef Directory)
451 : Filename(Filename), Directory(Directory) {}
453 : Filename(N->getFilename()), Directory(N->getDirectory()) {}
456 return Filename == RHS->getFilename() && Directory == RHS->getDirectory();
458 unsigned getHashValue() const { return hash_combine(Filename, Directory); }
    [all...]
  /external/llvm/lib/Transforms/IPO/
SampleProfile.cpp 61 "sample-profile-file", cl::init(""), cl::value_desc("filename"),
110 Samples(nullptr), Filename(Name), ProfileIsValid(false),
197 StringRef Filename;
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 208 // list of line numbers and a single filename, representing lines that belong
219 return lengthOfGCOVString(Filename) + 2 + Lines.size();
224 writeGCOVString(Filename);
230 : Filename(F) {
235 StringRef Filename;
245 GCOVLines &getFile(StringRef Filename) {
246 GCOVLines *&Lines = LinesByFile[Filename];
248 Lines = new GCOVLines(Filename, os);
433 SmallString<128> Filename = GCovFile->getString();
434 sys::path::replace_extension(Filename, NewStem)
    [all...]
AddressSanitizer.cpp 251 StringRef Filename;
255 LocationMetadata() : Filename(), LineNo(0), ColumnNo(0) {}
257 bool empty() const { return Filename.empty(); }
262 Filename = DIFilename->getString();
804 createPrivateGlobalForString(M, MD.Filename, true),
    [all...]
  /external/llvm/tools/gold/
gold-plugin.cpp 804 SmallString<128> Filename;
806 Filename = options::obj_path;
808 Filename = output_name + ".o";
811 bool TempOutFile = Filename.empty();
826 Filenames[I] = Filename;
843 for (auto &Filename : Filenames) {
844 if (add_input_file(Filename.c_str()) != LDPS_OK)
847 Filename.c_str());
849 Cleanup.push_back(Filename.c_str());
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 245 auto Filename = FileEntry->getName();
247 return RE.match(Filename);
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 225 assert(FilenameID != -1 && "Unspecified filename should use other accessor");
279 /// getLineTableFilenameID - Return the uniqued ID for the specified filename.
311 // If there is no filename and no flags, this is treated just like a #line,
315 "Can't set flags without setting the filename!");
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 137 StringRef fileName(Scope->getFilename());
140 if (!dirName.empty() && !sys::path::is_absolute(fileName)) {
141 sys::path::append(FullPathName, fileName);
142 fileName = FullPathName;
145 if (filenameMap.find(fileName) == filenameMap.end())
150 this->emitSrcInText(fileName, curLoc.getLine());
153 temp << "\t.loc " << filenameMap[fileName] << " " << curLoc.getLine()
776 StringRef Filename = DIUnit->getFilename();
779 if (!Dirname.empty() && !sys::path::is_absolute(Filename)) {
780 sys::path::append(FullPathName, Filename);
    [all...]
  /external/llvm/unittests/IR/
MetadataTest.cpp     [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h 184 virtual void visitModuleFile(StringRef Filename,
199 virtual bool visitInputFile(StringRef Filename, bool isSystem,
209 virtual void visitImport(StringRef Filename) {}
252 void visitModuleFile(StringRef Filename,
254 bool visitInputFile(StringRef Filename, bool isSystem,
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp 142 void ChainedASTReaderListener::visitModuleFile(StringRef Filename,
144 First->visitModuleFile(Filename, Kind);
145 Second->visitModuleFile(Filename, Kind);
147 bool ChainedASTReaderListener::visitInputFile(StringRef Filename,
154 Continue |= First->visitInputFile(Filename, isSystem, isOverridden,
158 Continue |= Second->visitInputFile(Filename, isSystem, isOverridden,
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 307 bool enterIncludeFile(const std::string &Filename);
311 bool processIncbinFile(const std::string &Filename);
575 bool AsmParser::enterIncludeFile(const std::string &Filename) {
578 SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
590 bool AsmParser::processIncbinFile(const std::string &Filename) {
593 SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
    [all...]
  /external/clang/include/clang-c/
Index.h 107 const char *Filename;
506 * \param filename [out] if non-NULL, will be set to the filename of the
521 CXString *filename,
5266 const char *filename; member in struct:__anon7041
    [all...]

Completed in 923 milliseconds

1 23 4