Home
last modified time | relevance | path

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

/external/clang/include/clang/Frontend/
DFrontendOptions.h94 bool IsSystem; variable
97 FrontendInputFile() : Buffer(nullptr), Kind(IK_None), IsSystem(false) { } in FrontendInputFile()
98 FrontendInputFile(StringRef File, InputKind Kind, bool IsSystem = false)
99 : File(File.str()), Buffer(nullptr), Kind(Kind), IsSystem(IsSystem) { }
101 bool IsSystem = false)
102 : Buffer(buffer), Kind(Kind), IsSystem(IsSystem) { } in Buffer()
105 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.h90 bool IsSystem, bool IsModuleFile, bool IsMissing);
100 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, in visitInputFile() argument
DFrontendActions.cpp293 if (HS.loadModuleMapFile(ModuleMap, IsSystem)) in BeginSourceFileAction()
377 Module->IsSystem)); in BeginSourceFileAction()
DCompilerInstance.cpp1035 ModMap.getModuleMapFileForUniquing(Module), Module->IsSystem); in compileModuleImpl()
/external/clang/lib/Lex/
DHeaderSearch.cpp181 bool IsSystem in lookupModule() local
183 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem); in lookupModule()
195 bool IsSystem = SearchDirs[Idx].isSystemHeaderDirectory(); in lookupModule() local
197 if (loadModuleMapFile(SearchDirs[Idx].getDir(), IsSystem, in lookupModule()
211 if (loadModuleMapFile(NestedModuleMapDirName, IsSystem, in lookupModule()
517 bool IsSystem = getDirCharacteristic() != SrcMgr::C_User; in DoFrameworkLookup() local
520 FE, FrameworkPath, RequestingModule, SuggestedModule, IsSystem)) in DoFrameworkLookup()
524 SuggestedModule, IsSystem)) in DoFrameworkLookup()
1096 bool IsSystem) { in hasModuleMap() argument
1115 switch (loadModuleMapFile(Dir, IsSystem, in hasModuleMap()
[all …]
DModuleMap.cpp588 bool IsSystem, Module *Parent) { in inferFrameworkModule() argument
590 Attrs.IsSystem = IsSystem; in inferFrameworkModule()
636 parseModuleMapFile(ModMapFile, Attrs.IsSystem, ParentDir); in inferFrameworkModule()
653 Attrs.IsSystem |= inferred->second.Attrs.IsSystem; in inferFrameworkModule()
690 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()
1457 if (Attrs.IsSystem || IsSystem) in parseModuleDecl()
1458 ActiveModule->IsSystem = true; in parseModuleDecl()
[all …]
DPPMacroExpansion.cpp204 IsSystemMacro &= Active->getOwningModule()->IsSystem || in updateModuleMacroInfo()
DPPDirectives.cpp776 BuildSystemModule = getCurrentModule()->IsSystem; in LookupFile()
/external/clang/include/clang/Lex/
DHeaderSearch.h518 bool IsSystem);
531 bool loadModuleMapFile(const FileEntry *File, bool IsSystem);
555 bool IsSystem);
642 bool *IsSystem = nullptr);
663 bool IsSystem,
675 LoadModuleMapResult loadModuleMapFile(StringRef DirName, bool IsSystem,
687 bool IsSystem, bool IsFramework);
DModuleMap.h52 const FileEntry &File, bool IsSystem) {} in moduleMapFileRead() argument
173 Attributes() : IsSystem(), IsExternC(), IsExhaustive() {} in Attributes()
176 unsigned IsSystem : 1; member
408 bool IsSystem, Module *Parent);
520 bool parseModuleMapFile(const FileEntry *File, bool IsSystem,
/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.h173 unsigned IsSystem : 1; variable
/external/clang/lib/Serialization/
DASTReader.cpp384 bool IsSystem, bool Complain) { in checkDiagnosticMappings() argument
386 if (IsSystem) { in checkDiagnosticMappings()
454 return checkDiagnosticMappings(*Diags, ExistingDiags, M->IsSystem, Complain); in ReadDiagnosticOptions()
2224 bool IsSystem = I >= NumUserInputs; in ReadControlBlock() local
2226 Listener->visitInputFile(FI.Filename, IsSystem, FI.Overridden, in ReadControlBlock()
4474 bool IsSystem = Record[Idx++]; in ReadSubmoduleBlock() local
4518 CurrentModule->IsSystem = IsSystem || CurrentModule->IsSystem; in ReadSubmoduleBlock()
DASTWriter.cpp2557 Mod->IsSystem, Mod->IsExternC, Mod->InferSubmodules, in WriteSubmodules()
/external/clang/lib/Sema/
DSemaLookup.cpp4978 bool IsSystem; in getIncludeStringForHeader() local
4980 PP.getHeaderSearchInfo().suggestPathToFileForDiagnostics(E, &IsSystem); in getIncludeStringForHeader()
4981 return (IsSystem ? '<' : '"') + Path + (IsSystem ? '>' : '"'); in getIncludeStringForHeader()
/external/clang/tools/libclang/
DCIndex.cpp7394 return Mod->IsSystem; in clang_Module_isSystem()