Home | History | Annotate | Download | only in Frontend

Lines Matching defs:isSystem

96   bool IsSystem;
99 FrontendInputFile() : Buffer(nullptr), Kind(IK_None), IsSystem(false) { }
100 FrontendInputFile(StringRef File, InputKind Kind, bool IsSystem = false)
101 : File(File.str()), Buffer(nullptr), Kind(Kind), IsSystem(IsSystem) { }
103 bool IsSystem = false)
104 : Buffer(buffer), Kind(Kind), IsSystem(IsSystem) { }
107 bool isSystem() const { return IsSystem; }