Home
last modified time | relevance | path

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

/external/clang/include/clang/Frontend/
DLangStandard.h39 struct LangStandard { struct
43 #include "clang/Frontend/LangStandards.def" argument
47 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 …]
/external/llvm-project/clang/include/clang/Basic/
DLangStandard.h62 struct LangStandard { struct
66 #include "clang/Basic/LangStandards.def" argument
70 const char *ShortName;
71 const char *Description;
72 unsigned Flags;
73 clang::Language Language;
77 const char *getName() const { return ShortName; } in getName()
80 const char *getDescription() const { return Description; } in getDescription()
83 clang::Language getLanguage() const { return Language; } in getLanguage()
86 bool hasLineComments() const { return Flags & LineComment; } in hasLineComments()
[all …]