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

  /external/clang/include/clang/Frontend/
FrontendActions.h 96 bool IsSystem;
110 bool IsSystem = false)
111 : ASTFrontendAction(), ModuleMapForUniquing(ModuleMap), IsSystem(IsSystem)
FrontendOptions.h 94 bool IsSystem;
97 FrontendInputFile() : Buffer(nullptr), Kind(IK_None), IsSystem(false) { }
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) { }
105 bool isSystem() const { return IsSystem; }
    [all...]
  /frameworks/base/libs/androidfw/include/androidfw/
LoadedArsc.h 86 inline bool IsSystem() const { return system_; }
160 inline bool IsSystem() const { return system_; }
  /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) {}
173 Attributes() : IsSystem(), IsExternC(), IsExhaustive() {}
176 unsigned IsSystem : 1;
408 bool IsSystem, Module *Parent);
510 /// \param IsSystem Whether this module map file is in a system header
520 bool parseModuleMapFile(const FileEntry *File, bool IsSystem,
  /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/Lex/
HeaderSearch.cpp 181 bool IsSystem
183 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem);
195 bool IsSystem = SearchDirs[Idx].isSystemHeaderDirectory();
197 if (loadModuleMapFile(SearchDirs[Idx].getDir(), IsSystem,
211 if (loadModuleMapFile(NestedModuleMapDirName, IsSystem,
517 bool IsSystem = getDirCharacteristic() != SrcMgr::C_User;
520 FE, FrameworkPath, RequestingModule, SuggestedModule, IsSystem))
524 SuggestedModule, IsSystem))
    [all...]
ModuleMap.cpp 588 bool IsSystem, Module *Parent) {
590 Attrs.IsSystem = IsSystem;
636 parseModuleMapFile(ModMapFile, Attrs.IsSystem, ParentDir);
653 Attrs.IsSystem |= inferred->second.Attrs.IsSystem;
690 Result->IsSystem |= Attrs.IsSystem;
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp 149 bool isSystem,
154 (!isSystem || First->needsSystemInputFileVisitation()))
155 Continue |= First->visitInputFile(Filename, isSystem, isOverridden,
158 (!isSystem || Second->needsSystemInputFileVisitation()))
159 Continue |= Second->visitInputFile(Filename, isSystem, isOverridden,
384 bool IsSystem, bool Complain) {
386 if (IsSystem) {
454 return checkDiagnosticMappings(*Diags, ExistingDiags, M->IsSystem, Complain);
    [all...]

Completed in 406 milliseconds