/external/clang/include/clang/Frontend/ |
D | FrontendOptions.h | 92 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()
|
D | FrontendActions.h | 96 bool IsSystem; variable 110 bool IsSystem = false) 111 : ASTFrontendAction(), ModuleMapForUniquing(ModuleMap), IsSystem(IsSystem) in ASTFrontendAction()
|
D | Utils.h | 89 bool IsSystem, bool IsModuleFile, bool IsMissing); 99 void maybeAddDependency(StringRef Filename, bool FromModule, bool IsSystem,
|
/external/clang/lib/Frontend/ |
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() 208 bool IsSystem) override { in moduleMapFileRead() argument 209 if (!IsSystem || Parent.includeSystemHeaders()) in moduleMapFileRead() [all …]
|
D | ModuleDependencyCollector.cpp | 35 bool visitInputFile(StringRef Filename, bool IsSystem, bool IsOverridden, 87 bool ModuleDependencyListener::visitInputFile(StringRef Filename, bool IsSystem, in visitInputFile() argument
|
D | FrontendActions.cpp | 293 if (HS.loadModuleMapFile(ModuleMap, IsSystem)) in BeginSourceFileAction() 378 Module->IsSystem)); in BeginSourceFileAction()
|
D | CompilerInstance.cpp | 999 ModMap.getModuleMapFileForUniquing(Module), Module->IsSystem); in compileModuleImpl()
|
/external/clang/lib/Lex/ |
D | HeaderSearch.cpp | 182 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 …]
|
D | ModuleMap.cpp | 600 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 …]
|
D | PPMacroExpansion.cpp | 197 IsSystemMacro &= Active->getOwningModule()->IsSystem || in updateModuleMacroInfo()
|
/external/clang/include/clang/Lex/ |
D | ModuleMap.h | 52 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,
|
D | HeaderSearch.h | 520 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/ |
D | Module.cpp | 33 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/ |
D | FileFind.h | 17 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/ |
D | Module.h | 175 unsigned IsSystem : 1; variable
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 378 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()
|
D | ASTWriter.cpp | 2479 Mod->IsSystem, Mod->IsExternC, Mod->InferSubmodules, in WriteSubmodules()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 7022 return Mod->IsSystem; in clang_Module_isSystem()
|