Home | History | Annotate | Download | only in Frontend

Lines Matching defs:isSystem

137   bool IsSystem;
140 FrontendInputFile() : Buffer(nullptr), Kind(), IsSystem(false) { }
141 FrontendInputFile(StringRef File, InputKind Kind, bool IsSystem = false)
142 : File(File.str()), Buffer(nullptr), Kind(Kind), IsSystem(IsSystem) { }
144 bool IsSystem = false)
145 : Buffer(buffer), Kind(Kind), IsSystem(IsSystem) { }
148 bool isSystem() const { return IsSystem; }