| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Frontend/ |
| H A D | FrontendOptions.h | 212 bool IsSystem = false; variable 216 FrontendInputFile(StringRef File, InputKind Kind, bool IsSystem = false) 217 : File(File.str()), Kind(Kind), IsSystem(IsSystem) {} 219 bool IsSystem = false) 220 : Buffer(Buffer), Kind(Kind), IsSystem(IsSystem) {} in Buffer() 223 bool isSystem() const { return IsSystem; } in isSystem()
|
| H A D | Utils.h | 96 bool IsSystem, bool IsModuleFile, bool IsMissing); 107 void maybeAddDependency(StringRef Filename, bool FromModule, bool IsSystem,
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/ |
| H A D | DependencyFile.cpp | 84 bool IsSystem) override { in moduleMapFileRead() 87 /*IsSystem*/IsSystem, in moduleMapFileRead() 106 bool visitInputFile(StringRef Filename, bool IsSystem, in visitInputFile() 111 DepCollector.maybeAddDependency(Filename, /*FromModule*/true, IsSystem, in visitInputFile() 119 bool IsSystem, bool IsModuleFile, in maybeAddDependency() argument 122 sawDependency(Filename, FromModule, IsSystem, IsModuleFile, IsMissing)) in maybeAddDependency() 134 bool IsSystem, bool IsModuleFile, in sawDependency() argument 137 (needSystemDependencies() || !IsSystem); in sawDependency() 220 bool IsSystem) override { in moduleMapFileRead() argument 221 if (!IsSystem || Parent.includeSystemHeaders()) in moduleMapFileRead() [all …]
|
| H A D | ModuleDependencyCollector.cpp | 35 bool visitInputFile(StringRef Filename, bool IsSystem, bool IsOverridden, in visitInputFile() argument
|
| H A D | FrontendAction.cpp | 415 static bool loadModuleMapForModuleBuild(CompilerInstance &CI, bool IsSystem, in loadModuleMapForModuleBuild() argument 437 if (HS.loadModuleMapFile(ModuleMap, IsSystem, ModuleMapID, &Offset, in loadModuleMapForModuleBuild() 782 auto Kind = CurrentModule->IsSystem ? SrcMgr::C_System : SrcMgr::C_User; in BeginSourceFile()
|
| H A D | CompilerInstance.cpp | 1195 FrontendInputFile(ModuleMapFile->getName(), IK, +Module->IsSystem), in compileModuleImpl() 1213 FrontendInputFile(FakeModuleMapFile, IK, +Module->IsSystem), in compileModuleImpl()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/ |
| H A D | HeaderSearch.cpp | 236 bool IsSystem in lookupModule() local 250 bool IsSystem = SearchDirs[Idx].isSystemHeaderDirectory(); in lookupModule() local 252 if (loadModuleMapFile(SearchDirs[Idx].getDir(), IsSystem, in lookupModule() 266 if (loadModuleMapFile(NestedModuleMapDirName, IsSystem, in lookupModule() 1284 bool IsSystem) { in hasModuleMap() argument 1303 switch (loadModuleMapFile(Dir, IsSystem, in hasModuleMap() 1506 bool IsSystem) { in loadFrameworkModule() argument 1533 return loadModuleMapFile(Dir, IsSystem, IsFramework); in loadModuleMapFile() 1588 IsSystem); in collectAllModules() 1663 IsSystem); in suggestPathToFileForDiagnostics() [all …]
|
| H A D | ModuleMap.cpp | 294 Mod->isPartOfFramework() || !Mod->IsSystem || Header.IsUmbrella || in resolveAsBuiltinHeader() 897 Attrs.IsSystem = IsSystem; in inferFrameworkModule() 960 Attrs.IsSystem |= inferred->second.Attrs.IsSystem; in inferFrameworkModule() 1000 Result->IsSystem |= Attrs.IsSystem; in inferFrameworkModule() 1384 bool IsSystem; member in clang::ModuleMapParser 1450 IsSystem(IsSystem) { in ModuleMapParser() 1953 if (Attrs.IsSystem || IsSystem) in parseModuleDecl() 1954 ActiveModule->IsSystem = true; in parseModuleDecl() 2864 Attrs.IsSystem = true; in parseOptionalAttributes() 2975 IsSystem); in parseModuleMapFile() [all …]
|
| H A D | PPMacroExpansion.cpp | 250 IsSystemMacro &= Active->getOwningModule()->IsSystem || in updateModuleMacroInfo()
|
| H A D | PPDirectives.cpp | 691 BuildSystemModule = getCurrentModule()->IsSystem; in LookupFile()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/ |
| H A D | HeaderSearch.h | 556 bool IsSystem); 578 bool loadModuleMapFile(const FileEntry *File, bool IsSystem, 620 bool IsSystem); 711 bool *IsSystem = nullptr); 720 bool *IsSystem = nullptr); 744 bool IsSystem, 758 LoadModuleMapResult loadModuleMapFile(StringRef DirName, bool IsSystem, 770 bool IsSystem, bool IsFramework);
|
| H A D | ModuleMap.h | 60 const FileEntry &File, bool IsSystem) {} in moduleMapFileRead() argument 228 unsigned IsSystem : 1; member 241 : IsSystem(false), IsExternC(false), IsExhaustive(false), in Attributes() 547 bool IsSystem, Module *Parent); 672 bool parseModuleMapFile(const FileEntry *File, bool IsSystem,
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/ |
| H A D | Module.cpp | 44 IsSystem(false), IsExternC(false), IsInferred(false), in Module() 52 if (Parent->IsSystem) in Module() 53 IsSystem = true; in Module() 414 if (IsSystem || IsExternC) { in print() 416 if (IsSystem) in print()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | Module.h | 226 unsigned IsSystem : 1; variable
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaLookup.cpp | 5063 bool IsSystem; in getIncludeStringForHeader() local 5065 PP.getHeaderSearchInfo().suggestPathToFileForDiagnostics(E, &IsSystem); in getIncludeStringForHeader() 5066 return (IsSystem ? '<' : '"') + Path + (IsSystem ? '>' : '"'); in getIncludeStringForHeader()
|
| H A D | SemaCodeComplete.cpp | 8288 auto AddFilesFromIncludeDir = [&](StringRef IncludeDir, bool IsSystem) { in CodeCompleteIncludedFile() argument 8306 if (!IsSystem) { in CodeCompleteIncludedFile() 8324 bool IsSystem) { in CodeCompleteIncludedFile() argument 8330 AddFilesFromIncludeDir(IncludeDir.getDir()->getName(), IsSystem); in CodeCompleteIncludedFile() 8333 AddFilesFromIncludeDir(IncludeDir.getFrameworkDir()->getName(), IsSystem); in CodeCompleteIncludedFile()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 495 bool IsSystem, bool Complain) { in checkDiagnosticMappings() argument 497 if (IsSystem) { in checkDiagnosticMappings() 574 return checkDiagnosticMappings(*Diags, ExistingDiags, TopM->IsSystem, in ReadDiagnosticOptions() 2412 bool IsSystem = I >= NumUserInputs; in ReadControlBlock() local 2414 Listener->visitInputFile(FI.Filename, IsSystem, FI.Overridden, in ReadControlBlock() 5008 bool IsSystem = Record[Idx++]; in ReadSubmoduleBlock() local 5058 CurrentModule->IsSystem = IsSystem || CurrentModule->IsSystem; in ReadSubmoduleBlock() 9211 bool IsSystem = I >= NumUserInputs; in visitInputFiles() local 9213 Visitor(IF, IsSystem); in visitInputFiles()
|
| H A D | ASTWriter.cpp | 2922 Mod->IsSystem, in WriteSubmodules()
|