| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | PPCallbacks.cpp | 18 bool IsAngled, OptionalFileEntryRef File, in HasInclude() argument 25 bool IsAngled, OptionalFileEntryRef File, in HasInclude() argument 27 First->HasInclude(Loc, FileName, IsAngled, File, FileType); in HasInclude() 28 Second->HasInclude(Loc, FileName, IsAngled, File, FileType); in HasInclude()
|
| H A D | PreprocessingRecord.cpp | 474 bool IsAngled, CharSourceRange FilenameRange, OptionalFileEntryRef File, in InclusionDirective() argument 501 if (!IsAngled) { in InclusionDirective() 510 *this, Kind, FileName, !IsAngled, ModuleImported, File, in InclusionDirective()
|
| H A D | HeaderSearch.cpp | 2038 FileEntryRef File, llvm::StringRef MainFile, bool *IsAngled) const { in suggestPathToFileForDiagnostics() 2040 MainFile, IsAngled); in suggestPathToFileForDiagnostics() 2045 bool *IsAngled) const { in suggestPathToFileForDiagnostics() 2105 if (IsAngled) in suggestPathToFileForDiagnostics() 2106 *IsAngled = BestPrefixLength && isSystem(DL.getDirCharacteristic()); in suggestPathToFileForDiagnostics() 2113 if (IsAngled) in suggestPathToFileForDiagnostics() 2114 *IsAngled = BestPrefixLength; in suggestPathToFileForDiagnostics() 2123 if (IsAngled) in suggestPathToFileForDiagnostics() 2124 *IsAngled = false; in suggestPathToFileForDiagnostics()
|
| H A D | Preprocessor.cpp | 454 bool IsAngled) { in CodeCompleteIncludedFile() argument 457 CodeComplete->CodeCompleteIncludedFile(Dir, IsAngled); in CodeCompleteIncludedFile()
|
| H A D | Lexer.cpp | 2387 bool IsAngled) { in codeCompleteIncludedFile() argument 2406 if (Next == (IsAngled ? '>' : '"')) in codeCompleteIncludedFile() 2415 PP->CodeCompleteIncludedFile(Dir, IsAngled); in codeCompleteIncludedFile()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | PPCallbacks.h | 112 bool IsAngled, OptionalFileEntryRef File, in EmbedDirective() argument 170 bool IsAngled, CharSourceRange FilenameRange, in InclusionDirective() argument 366 virtual void HasEmbed(SourceLocation Loc, StringRef FileName, bool IsAngled, in HasEmbed() argument 371 virtual void HasInclude(SourceLocation Loc, StringRef FileName, bool IsAngled, 508 void EmbedDirective(SourceLocation HashLoc, StringRef FileName, bool IsAngled, in EmbedDirective() argument 511 First->EmbedDirective(HashLoc, FileName, IsAngled, File, Params); in EmbedDirective() 512 Second->EmbedDirective(HashLoc, FileName, IsAngled, File, Params); in EmbedDirective() 524 StringRef FileName, bool IsAngled, in InclusionDirective() argument 530 First->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled, in InclusionDirective() 533 Second->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled, in InclusionDirective() [all …]
|
| H A D | CodeCompletionHandler.h | 67 virtual void CodeCompleteIncludedFile(llvm::StringRef Dir, bool IsAngled) {} in CodeCompleteIncludedFile() argument
|
| H A D | HeaderSearch.h | 909 bool *IsAngled = nullptr) const; 923 bool *IsAngled = nullptr) const;
|
| H A D | PreprocessingRecord.h | 532 StringRef FileName, bool IsAngled,
|
| H A D | Preprocessor.h | 1591 void CodeCompleteIncludedFile(llvm::StringRef Dir, bool IsAngled);
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/ |
| H A D | HeaderIncludes.cpp | 360 HeaderIncludes::insert(llvm::StringRef IncludeName, bool IsAngled, in insert() argument 370 ((IsAngled && StringRef(Inc.Name).starts_with("<")) || in insert() 371 (!IsAngled && StringRef(Inc.Name).starts_with("\"")))) in insert() 375 std::string(llvm::formatv(IsAngled ? "<{0}>" : "\"{0}\"", IncludeName)); in insert() 406 bool IsAngled) const { in remove() 413 if ((IsAngled && StringRef(Inc.Name).starts_with("\"")) || in remove() 414 (!IsAngled && StringRef(Inc.Name).starts_with("<"))) in remove()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | DependencyGraph.cpp | 49 StringRef FileName, bool IsAngled, 56 void EmbedDirective(SourceLocation HashLoc, StringRef FileName, bool IsAngled, 75 bool IsAngled, CharSourceRange FilenameRange, OptionalFileEntryRef File, in InclusionDirective() argument
|
| H A D | PrintPreprocessedOutput.cpp | 160 void EmbedDirective(SourceLocation HashLoc, StringRef FileName, bool IsAngled, 164 StringRef FileName, bool IsAngled, 417 SourceLocation HashLoc, StringRef FileName, bool IsAngled, in EmbedDirective() argument 433 *OS << "#embed " << (IsAngled ? '<' : '"') << FileName in EmbedDirective() 434 << (IsAngled ? '>' : '"'); in EmbedDirective() 486 bool IsAngled, CharSourceRange FilenameRange, OptionalFileEntryRef File, in InclusionDirective() argument 496 << (IsAngled ? '<' : '"') << FileName << (IsAngled ? '>' : '"') in InclusionDirective() 514 << (IsAngled ? '<' : '"') << FileName << (IsAngled ? '>' : '"') in InclusionDirective()
|
| H A D | DependencyFile.cpp | 79 StringRef FileName, bool IsAngled, in InclusionDirective() 105 void HasInclude(SourceLocation Loc, StringRef SpelledFilename, bool IsAngled, in HasInclude()
|
| H A D | ModuleDependencyCollector.cpp | 55 StringRef FileName, bool IsAngled, in InclusionDirective()
|
| H A D | PrecompiledPreamble.cpp | 99 StringRef FileName, bool IsAngled, in InclusionDirective() argument 125 if (!IsAngled) { in InclusionDirective() 133 IsAngled ? Search.angled_dir_begin() : Search.search_dir_begin(), in InclusionDirective()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/ |
| H A D | HeaderIncludes.h | 77 bool IsAngled, 84 tooling::Replacements remove(llvm::StringRef Header, bool IsAngled) const;
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | MacroPPCallbacks.h | 102 StringRef FileName, bool IsAngled,
|
| H A D | MacroPPCallbacks.cpp | 170 bool IsAngled, CharSourceRange FilenameRange, OptionalFileEntryRef File, in InclusionDirective() argument
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaCodeCompletion.h | 226 void CodeCompleteIncludedFile(llvm::StringRef Dir, bool IsAngled);
|
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ |
| H A D | ModuleDepCollector.h | 173 StringRef FileName, bool IsAngled,
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | InclusionRewriter.cpp | 75 StringRef FileName, bool IsAngled,
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
| H A D | ModuleDepCollector.cpp | 467 bool IsAngled, CharSourceRange FilenameRange, OptionalFileEntryRef File, in InclusionDirective() argument
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaLookup.cpp | 5570 bool IsAngled = false; in getHeaderNameForHeader() local 5572 E, IncludingFile, &IsAngled); in getHeaderNameForHeader() 5573 return (IsAngled ? '<' : '"') + Path + (IsAngled ? '>' : '"'); in getHeaderNameForHeader()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | Parser.cpp | 2341 void Parser::CodeCompleteIncludedFile(llvm::StringRef Dir, bool IsAngled) { in CodeCompleteIncludedFile() argument 2342 Actions.CodeCompletion().CodeCompleteIncludedFile(Dir, IsAngled); in CodeCompleteIncludedFile()
|