Searched refs:IsSystem (Results 1 - 12 of 12) sorted by relevance

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DFrontendOptions.h89 bool IsSystem; member in class:clang::FrontendInputFile
93 FrontendInputFile(StringRef File, InputKind Kind, bool IsSystem = false)
94 : File(File.str()), Buffer(0), Kind(Kind), IsSystem(IsSystem) { }
96 bool IsSystem = false)
97 : Buffer(buffer), Kind(Kind), IsSystem(IsSystem) { }
100 bool isSystem() const { return IsSystem; }
H A DFrontendActions.h96 bool IsSystem; member in class:clang::GenerateModuleAction
109 explicit GenerateModuleAction(bool IsSystem = false)
110 : ASTFrontendAction(), IsSystem(IsSystem) { }
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DHeaderSearch.cpp151 bool IsSystem local
153 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem);
165 bool IsSystem = SearchDirs[Idx].isSystemHeaderDirectory(); local
167 if (loadModuleMapFile(SearchDirs[Idx].getDir(), IsSystem)
181 if (loadModuleMapFile(NestedModuleMapDirName, IsSystem) == LMM_NewlyLoaded){
471 bool IsSystem = getDirCharacteristic() != SrcMgr::C_User; local
472 if (HS.loadFrameworkModule(ModuleName, TopFrameworkDir, IsSystem)) {
521 loadModuleMapFile(File, /*IsSystem=*/false);
806 bool IsSystem = false; local
807 if (loadFrameworkModule(ModuleName, TopFrameworkDir, IsSystem)) {
953 hasModuleMap(StringRef FileName, const DirectoryEntry *Root, bool IsSystem) argument
1005 loadModuleMapFile(const FileEntry *File, bool IsSystem) argument
1027 loadFrameworkModule(StringRef Name, const DirectoryEntry *Dir, bool IsSystem) argument
1074 loadModuleMapFile(StringRef DirName, bool IsSystem) argument
1082 loadModuleMapFile(const DirectoryEntry *Dir, bool IsSystem) argument
1129 bool IsSystem = SearchDirs[Idx].isSystemHeaderDirectory(); local
[all...]
H A DModuleMap.cpp432 StringRef Name, bool &IsSystem) const {
450 IsSystem = true;
475 bool IsSystem,
510 parseModuleMapFile(ModMapFile, IsSystem);
528 IsSystem = true;
556 if (IsSystem)
557 Result->IsSystem = IsSystem;
614 SubframeworkDir, IsSystem, Result);
821 Attributes() : IsSystem(), IsExhaustiv
473 inferFrameworkModule(StringRef ModuleName, const DirectoryEntry *FrameworkDir, bool IsSystem, Module *Parent) argument
824 unsigned IsSystem : 1; member in struct:clang::Attributes
849 bool IsSystem; member in class:clang::ModuleMapParser
890 ModuleMapParser(Lexer &L, SourceManager &SourceMgr, const TargetInfo *Target, DiagnosticsEngine &Diags, ModuleMap &Map, const DirectoryEntry *Directory, const DirectoryEntry *BuiltinIncludeDir, bool IsSystem) argument
2120 parseModuleMapFile(const FileEntry *File, bool IsSystem) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DModuleMap.h281 /// \param IsSystem Will be set to 'true' if the inferred module must be a
287 StringRef Name, bool &IsSystem) const;
293 bool IsSystem, Module *Parent);
362 /// \param IsSystem Whether this module map file is in a system header
366 bool parseModuleMapFile(const FileEntry *File, bool IsSystem);
H A DHeaderSearch.h500 /// \param IsSystem Whether the directories we're looking at are system
503 bool IsSystem);
513 /// \param IsSystem Whether this file is in a system header directory.
516 bool loadModuleMapFile(const FileEntry *File, bool IsSystem);
534 /// \param IsSystem Whether the framework directory is part of the system
540 bool IsSystem);
610 /// \param IsSystem Whether this is a system header directory.
614 LoadModuleMapResult loadModuleMapFile(StringRef DirName, bool IsSystem);
619 /// \param IsSystem Whether this is a system header directory.
624 bool IsSystem);
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Basic/
H A DModule.cpp31 IsFramework(IsFramework), IsExplicit(IsExplicit), IsSystem(false),
39 if (Parent->IsSystem)
40 IsSystem = true;
284 if (IsSystem) {
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DModule.h118 unsigned IsSystem : 1;
251 IsExplicit(false), IsSystem(false),
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DFrontendActions.cpp225 if (HS.loadModuleMapFile(ModuleMap, IsSystem))
273 Module->IsSystem));
H A DCompilerInstance.cpp902 GenerateModuleAction CreateModuleAction(Module->IsSystem);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp1599 = PrevOwner? PrevOwner->IsSystem
1602 = NewOwner? NewOwner->IsSystem
3670 bool IsSystem = Record[4]; local
3709 CurrentModule->IsSystem = IsSystem || CurrentModule->IsSystem;
H A DASTWriter.cpp2251 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsSystem
2338 Record.push_back(Mod->IsSystem);

Completed in 310 milliseconds