HomeSort by relevance Sort by last modified time
    Searched refs:IsSystem (Results 1 - 18 of 18) sorted by null

  /external/clang/include/clang/Frontend/
FrontendOptions.h 92 bool IsSystem;
95 FrontendInputFile() : Buffer(nullptr), Kind(IK_None), IsSystem(false) { }
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) { }
103 bool isSystem() const { return IsSystem; }
    [all...]
FrontendActions.h 96 bool IsSystem;
110 bool IsSystem = false)
111 : ASTFrontendAction(), ModuleMapForUniquing(ModuleMap), IsSystem(IsSystem)
Utils.h 89 bool IsSystem, bool IsModuleFile, bool IsMissing);
99 void maybeAddDependency(StringRef Filename, bool FromModule, bool IsSystem,
  /external/clang/lib/Frontend/
DependencyFile.cpp 69 /*IsSystem*/false, /*IsModuleFile*/false,
84 bool IsSystem) override {
87 /*IsSystem*/IsSystem,
103 /*IsSystem*/false, /*IsModuleFile*/true,
106 bool visitInputFile(StringRef Filename, bool IsSystem,
111 DepCollector.maybeAddDependency(Filename, /*FromModule*/true, IsSystem,
119 bool IsSystem, bool IsModuleFile,
122 sawDependency(Filename, FromModule, IsSystem, IsModuleFile, IsMissing))
134 bool IsSystem, bool IsModuleFile
    [all...]
ModuleDependencyCollector.cpp 35 bool visitInputFile(StringRef Filename, bool IsSystem, bool IsOverridden,
87 bool ModuleDependencyListener::visitInputFile(StringRef Filename, bool IsSystem,
FrontendActions.cpp 293 if (HS.loadModuleMapFile(ModuleMap, IsSystem))
378 Module->IsSystem));
CompilerInstance.cpp 726 Kind = Input.isSystem() ? SrcMgr::C_System : SrcMgr::C_User;
    [all...]
  /external/clang/include/clang/Lex/
ModuleMap.h 50 /// \param IsSystem Whether this is a module map from a system include path.
52 const FileEntry &File, bool IsSystem) {}
160 Attributes() : IsSystem(), IsExternC(), IsExhaustive() {}
163 unsigned IsSystem : 1;
389 bool IsSystem, Module *Parent);
491 /// \param IsSystem Whether this module map file is in a system header
501 bool parseModuleMapFile(const FileEntry *File, bool IsSystem,
HeaderSearch.h 517 /// \param IsSystem Whether the directories we're looking at are system
520 bool IsSystem);
530 /// \param IsSystem Whether this file is in a system header directory.
533 bool loadModuleMapFile(const FileEntry *File, bool IsSystem);
551 /// \param IsSystem Whether the framework directory is part of the system
557 bool IsSystem);
659 bool IsSystem,
666 /// \param IsSystem Whether this is a system header directory.
671 LoadModuleMapResult loadModuleMapFile(StringRef DirName, bool IsSystem,
677 /// \param IsSystem Whether this is a system header directory
    [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 182 bool IsSystem
184 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem);
196 bool IsSystem = SearchDirs[Idx].isSystemHeaderDirectory();
198 if (loadModuleMapFile(SearchDirs[Idx].getDir(), IsSystem,
212 if (loadModuleMapFile(NestedModuleMapDirName, IsSystem,
516 bool IsSystem = getDirCharacteristic() != SrcMgr::C_User;
519 FE, FrameworkPath, RequestingModule, SuggestedModule, IsSystem))
523 SuggestedModule, IsSystem))
    [all...]
ModuleMap.cpp 600 bool IsSystem, Module *Parent) {
602 Attrs.IsSystem = IsSystem;
648 parseModuleMapFile(ModMapFile, Attrs.IsSystem, ParentDir);
665 Attrs.IsSystem |= inferred->second.Attrs.IsSystem;
701 Result->IsSystem |= Attrs.IsSystem;
    [all...]
PPMacroExpansion.cpp 197 IsSystemMacro &= Active->getOwningModule()->IsSystem ||
    [all...]
  /external/lzma/CPP/Windows/
FileFind.h 17 inline bool IsSystem(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_SYSTEM) != 0; }
59 bool IsSystem() const { return MatchesMask(FILE_ATTRIBUTE_SYSTEM); }
  /external/clang/lib/Basic/
Module.cpp 33 IsExplicit(IsExplicit), IsSystem(false), IsExternC(false),
40 if (Parent->IsSystem)
41 IsSystem = true;
329 if (IsSystem || IsExternC) {
331 if (IsSystem)
  /external/clang/include/clang/Basic/
Module.h 175 unsigned IsSystem : 1;
  /external/clang/lib/Serialization/
ASTReader.cpp 148 bool isSystem,
153 (!isSystem || First->needsSystemInputFileVisitation()))
154 Continue |= First->visitInputFile(Filename, isSystem, isOverridden,
157 (!isSystem || Second->needsSystemInputFileVisitation()))
158 Continue |= Second->visitInputFile(Filename, isSystem, isOverridden,
378 bool IsSystem, bool Complain) {
380 if (IsSystem) {
448 return checkDiagnosticMappings(*Diags, ExistingDiags, M->IsSystem, Complain);
    [all...]
ASTWriter.cpp     [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 152 milliseconds