Searched defs:LangStandard (Results 1 – 1 of 1) sorted by relevance
39 struct LangStandard { struct43 #include "clang/Frontend/LangStandards.def" argument47 const char *ShortName;48 const char *Description;49 unsigned Flags;53 const char *getName() const { return ShortName; } in getName()56 const char *getDescription() const { return Description; } in getDescription()59 bool hasLineComments() const { return Flags & frontend::LineComment; } in hasLineComments()62 bool isC89() const { return Flags & frontend::C89; } in isC89()65 bool isC99() const { return Flags & frontend::C99; } in isC99()[all …]