Home
last modified time | relevance | path

Searched defs:LangStandard (Results 1 – 1 of 1) sorted by relevance

/external/clang/include/clang/Frontend/
DLangStandard.h37 struct LangStandard { struct
41 #include "clang/Frontend/LangStandards.def" argument
45 const char *ShortName;
46 const char *Description;
47 unsigned Flags;
51 const char *getName() const { return ShortName; } in getName()
54 const char *getDescription() const { return Description; } in getDescription()
57 bool hasBCPLComments() const { return Flags & frontend::BCPLComment; } in hasBCPLComments()
60 bool isC89() const { return Flags & frontend::C89; } in isC89()
86 static const LangStandard &getLangStandardForKind(Kind K); argument