/external/clang/include/clang/Frontend/ |
D | FrontendOptions.h | 91 bool IsSystem; variable 95 FrontendInputFile(StringRef File, InputKind Kind, bool IsSystem = false) 96 : File(File.str()), Buffer(nullptr), Kind(Kind), IsSystem(IsSystem) { } 98 bool IsSystem = false) 99 : Buffer(buffer), Kind(Kind), IsSystem(IsSystem) { } in Buffer() 102 bool isSystem() const { return IsSystem; } in isSystem()
|
D | FrontendActions.h | 97 bool IsSystem; variable 111 bool IsSystem = false) 112 : ASTFrontendAction(), ModuleMapForUniquing(ModuleMap), IsSystem(IsSystem) in ASTFrontendAction()
|
D | Utils.h | 88 bool IsSystem, bool IsModuleFile, bool IsMissing); 98 void maybeAddDependency(StringRef Filename, bool FromModule, bool IsSystem,
|
/external/clang/lib/Lex/ |
D | HeaderSearch.cpp | 173 bool IsSystem in lookupModule() local 175 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem); in lookupModule() 187 bool IsSystem = SearchDirs[Idx].isSystemHeaderDirectory(); in lookupModule() local 189 if (loadModuleMapFile(SearchDirs[Idx].getDir(), IsSystem, in lookupModule() 203 if (loadModuleMapFile(NestedModuleMapDirName, IsSystem, in lookupModule() 528 bool IsSystem = getDirCharacteristic() != SrcMgr::C_User; in DoFrameworkLookup() local 529 if (HS.loadFrameworkModule(ModuleName, TopFrameworkDir, IsSystem)) { in DoFrameworkLookup() 930 bool IsSystem = false; in LookupSubframeworkHeader() local 931 if (loadFrameworkModule(ModuleName, TopFrameworkDir, IsSystem)) { in LookupSubframeworkHeader() 1069 bool IsSystem) { in hasModuleMap() argument [all …]
|
D | ModuleMap.cpp | 601 bool IsSystem, in inferFrameworkModule() argument 604 Attrs.IsSystem = IsSystem; in inferFrameworkModule() 652 parseModuleMapFile(ModMapFile, Attrs.IsSystem, ParentDir); in inferFrameworkModule() 669 Attrs.IsSystem |= inferred->second.Attrs.IsSystem; in inferFrameworkModule() 704 Result->IsSystem |= Attrs.IsSystem; in inferFrameworkModule() 1023 bool IsSystem; member in clang::ModuleMapParser 1071 bool IsSystem) in ModuleMapParser() argument 1074 BuiltinIncludeDir(BuiltinIncludeDir), IsSystem(IsSystem), in ModuleMapParser() 1439 if (Attrs.IsSystem || IsSystem) in parseModuleDecl() 1440 ActiveModule->IsSystem = true; in parseModuleDecl() [all …]
|
/external/clang/lib/Frontend/ |
D | DependencyFile.cpp | 97 bool visitInputFile(StringRef Filename, bool IsSystem, in visitInputFile() 102 DepCollector.maybeAddDependency(Filename, /*FromModule*/true, IsSystem, in visitInputFile() 110 bool IsSystem, bool IsModuleFile, in maybeAddDependency() argument 113 sawDependency(Filename, FromModule, IsSystem, IsModuleFile, IsMissing)) in maybeAddDependency() 125 bool IsSystem, bool IsModuleFile, in sawDependency() argument 128 (needSystemDependencies() || !IsSystem); in sawDependency() 375 bool IsSystem, bool IsOverridden) { in visitInputFile() argument 376 assert(!IsSystem || needsSystemInputFileVisitation()); in visitInputFile()
|
D | ModuleDependencyCollector.cpp | 35 bool visitInputFile(StringRef Filename, bool IsSystem, 87 bool ModuleDependencyListener::visitInputFile(StringRef Filename, bool IsSystem, in visitInputFile() argument
|
D | FrontendActions.cpp | 269 if (HS.loadModuleMapFile(ModuleMap, IsSystem)) in BeginSourceFileAction() 355 Module->IsSystem)); in BeginSourceFileAction()
|
D | CompilerInstance.cpp | 968 ModMap.getModuleMapFileForUniquing(Module), Module->IsSystem); in compileModuleImpl()
|
/external/clang/include/clang/Lex/ |
D | HeaderSearch.h | 535 bool IsSystem); 548 bool loadModuleMapFile(const FileEntry *File, bool IsSystem); 572 bool IsSystem); 643 bool IsSystem, 655 LoadModuleMapResult loadModuleMapFile(StringRef DirName, bool IsSystem, 667 bool IsSystem, bool IsFramework);
|
D | ModuleMap.h | 132 Attributes() : IsSystem(), IsExternC(), IsExhaustive() {} in Attributes() 135 unsigned IsSystem : 1; member 356 bool IsSystem, Module *Parent); 463 bool parseModuleMapFile(const FileEntry *File, bool IsSystem,
|
/external/clang/lib/Basic/ |
D | Module.cpp | 32 IsExplicit(IsExplicit), IsSystem(false), IsExternC(false), in Module() 39 if (Parent->IsSystem) in Module() 40 IsSystem = true; in Module() 314 if (IsSystem || IsExternC) { in print() 316 if (IsSystem) in print()
|
/external/lzma/CPP/Windows/ |
D | FileFind.h | 19 inline bool IsSystem(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_SYSTEM) != 0; } in IsSystem() function 57 bool IsSystem() const { return MatchesMask(FILE_ATTRIBUTE_SYSTEM); } in IsSystem() function
|
/external/clang/include/clang/Basic/ |
D | Module.h | 150 unsigned IsSystem : 1; variable
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 360 bool IsSystem, bool Complain) { in checkDiagnosticMappings() argument 362 if (IsSystem) { in checkDiagnosticMappings() 430 return checkDiagnosticMappings(*Diags, ExistingDiags, M->IsSystem, Complain); in ReadDiagnosticOptions() 1956 bool PrevInSystem = (PrevOwner && PrevOwner->IsSystem) || in areDefinedInSystemModules() 1958 bool NewInSystem = (NewOwner && NewOwner->IsSystem) || in areDefinedInSystemModules() 2360 bool IsSystem = I >= NumUserInputs; in ReadControlBlock() local 2362 Listener->visitInputFile(FI.Filename, IsSystem, FI.Overridden); in ReadControlBlock() 4522 bool IsSystem = Record[Idx++]; in ReadSubmoduleBlock() local 4565 CurrentModule->IsSystem = IsSystem || CurrentModule->IsSystem; in ReadSubmoduleBlock()
|
D | ASTWriter.cpp | 2475 Record.push_back(Mod->IsSystem); in WriteSubmodules()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 6759 return Mod->IsSystem; in clang_Module_isSystem()
|