Home
last modified time | relevance | path

Searched refs:IsSystem (Results 1 – 18 of 18) sorted by relevance

/external/clang/include/clang/Frontend/
DFrontendOptions.h92 bool IsSystem; variable
95 FrontendInputFile() : Buffer(nullptr), Kind(IK_None), IsSystem(false) { } in FrontendInputFile()
96 FrontendInputFile(StringRef File, InputKind Kind, bool IsSystem = false)
97 : File(File.str()), Buffer(nullptr), Kind(Kind), IsSystem(IsSystem) { }
99 bool IsSystem = false)
100 : Buffer(buffer), Kind(Kind), IsSystem(IsSystem) { } in Buffer()
103 bool isSystem() const { return IsSystem; } in isSystem()
DFrontendActions.h96 bool IsSystem; variable
110 bool IsSystem = false)
111 : ASTFrontendAction(), ModuleMapForUniquing(ModuleMap), IsSystem(IsSystem) in ASTFrontendAction()
DUtils.h89 bool IsSystem, bool IsModuleFile, bool IsMissing);
99 void maybeAddDependency(StringRef Filename, bool FromModule, bool IsSystem,
/external/clang/lib/Frontend/
DDependencyFile.cpp84 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()
208 bool IsSystem) override { in moduleMapFileRead() argument
209 if (!IsSystem || Parent.includeSystemHeaders()) in moduleMapFileRead()
[all …]
DModuleDependencyCollector.cpp35 bool visitInputFile(StringRef Filename, bool IsSystem, bool IsOverridden,
87 bool ModuleDependencyListener::visitInputFile(StringRef Filename, bool IsSystem, in visitInputFile() argument
DFrontendActions.cpp293 if (HS.loadModuleMapFile(ModuleMap, IsSystem)) in BeginSourceFileAction()
378 Module->IsSystem)); in BeginSourceFileAction()
DCompilerInstance.cpp999 ModMap.getModuleMapFileForUniquing(Module), Module->IsSystem); in compileModuleImpl()
/external/clang/lib/Lex/
DHeaderSearch.cpp182 bool IsSystem in lookupModule() local
184 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem); in lookupModule()
196 bool IsSystem = SearchDirs[Idx].isSystemHeaderDirectory(); in lookupModule() local
198 if (loadModuleMapFile(SearchDirs[Idx].getDir(), IsSystem, in lookupModule()
212 if (loadModuleMapFile(NestedModuleMapDirName, IsSystem, in lookupModule()
516 bool IsSystem = getDirCharacteristic() != SrcMgr::C_User; in DoFrameworkLookup() local
519 FE, FrameworkPath, RequestingModule, SuggestedModule, IsSystem)) in DoFrameworkLookup()
523 SuggestedModule, IsSystem)) in DoFrameworkLookup()
1094 bool IsSystem) { in hasModuleMap() argument
1113 switch (loadModuleMapFile(Dir, IsSystem, in hasModuleMap()
[all …]
DModuleMap.cpp600 bool IsSystem, Module *Parent) { in inferFrameworkModule() argument
602 Attrs.IsSystem = IsSystem; in inferFrameworkModule()
648 parseModuleMapFile(ModMapFile, Attrs.IsSystem, ParentDir); in inferFrameworkModule()
665 Attrs.IsSystem |= inferred->second.Attrs.IsSystem; in inferFrameworkModule()
701 Result->IsSystem |= Attrs.IsSystem; in inferFrameworkModule()
1029 bool IsSystem; member in clang::ModuleMapParser
1087 bool IsSystem) in ModuleMapParser() argument
1090 BuiltinIncludeDir(BuiltinIncludeDir), IsSystem(IsSystem), in ModuleMapParser()
1455 if (Attrs.IsSystem || IsSystem) in parseModuleDecl()
1456 ActiveModule->IsSystem = true; in parseModuleDecl()
[all …]
DPPMacroExpansion.cpp197 IsSystemMacro &= Active->getOwningModule()->IsSystem || in updateModuleMacroInfo()
/external/clang/include/clang/Lex/
DModuleMap.h52 const FileEntry &File, bool IsSystem) {} in moduleMapFileRead() argument
160 Attributes() : IsSystem(), IsExternC(), IsExhaustive() {} in Attributes()
163 unsigned IsSystem : 1; member
389 bool IsSystem, Module *Parent);
501 bool parseModuleMapFile(const FileEntry *File, bool IsSystem,
DHeaderSearch.h520 bool IsSystem);
533 bool loadModuleMapFile(const FileEntry *File, bool IsSystem);
557 bool IsSystem);
659 bool IsSystem,
671 LoadModuleMapResult loadModuleMapFile(StringRef DirName, bool IsSystem,
683 bool IsSystem, bool IsFramework);
/external/clang/lib/Basic/
DModule.cpp33 IsExplicit(IsExplicit), IsSystem(false), IsExternC(false), in Module()
40 if (Parent->IsSystem) in Module()
41 IsSystem = true; in Module()
329 if (IsSystem || IsExternC) { in print()
331 if (IsSystem) in print()
/external/lzma/CPP/Windows/
DFileFind.h17 inline bool IsSystem(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_SYSTEM) != 0; } in IsSystem() function
59 bool IsSystem() const { return MatchesMask(FILE_ATTRIBUTE_SYSTEM); } in IsSystem() function
/external/clang/include/clang/Basic/
DModule.h175 unsigned IsSystem : 1; variable
/external/clang/lib/Serialization/
DASTReader.cpp378 bool IsSystem, bool Complain) { in checkDiagnosticMappings() argument
380 if (IsSystem) { in checkDiagnosticMappings()
448 return checkDiagnosticMappings(*Diags, ExistingDiags, M->IsSystem, Complain); in ReadDiagnosticOptions()
2210 bool IsSystem = I >= NumUserInputs; in ReadControlBlock() local
2212 Listener->visitInputFile(FI.Filename, IsSystem, FI.Overridden, in ReadControlBlock()
4469 bool IsSystem = Record[Idx++]; in ReadSubmoduleBlock() local
4513 CurrentModule->IsSystem = IsSystem || CurrentModule->IsSystem; in ReadSubmoduleBlock()
DASTWriter.cpp2479 Mod->IsSystem, Mod->IsExternC, Mod->InferSubmodules, in WriteSubmodules()
/external/clang/tools/libclang/
DCIndex.cpp7022 return Mod->IsSystem; in clang_Module_isSystem()