Searched defs:LangStandard (Results 1 – 5 of 5) sorted by relevance
71 struct LangStandard { struct75 #include "clang/Basic/LangStandards.def" argument79 const char *ShortName;80 const char *Description;81 unsigned Flags;82 clang::Language Language;86 const char *getName() const { return ShortName; } in getName()89 const char *getDescription() const { return Description; } in getDescription()92 clang::Language getLanguage() const { return Language; } in getLanguage()95 bool hasLineComments() const { return Flags & LineComment; } in hasLineComments()[all …]
70 struct LangStandard { struct74 #include "clang/Basic/LangStandards.def" argument78 const char *ShortName;79 const char *Description;80 unsigned Flags;81 clang::Language Language;85 const char *getName() const { return ShortName; } in getName()88 const char *getDescription() const { return Description; } in getDescription()91 clang::Language getLanguage() const { return Language; } in getLanguage()94 bool hasLineComments() const { return Flags & LineComment; } in hasLineComments()[all …]
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 …]