Home
last modified time | relevance | path

Searched refs:Digraphs (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangStandards.def45 Digraphs)
49 LineComment | Digraphs | GNUMode)
55 LineComment | C99 | Digraphs | HexFloat)
62 LineComment | C99 | Digraphs | GNUMode | HexFloat)
68 LineComment | C99 | C11 | Digraphs | HexFloat)
75 LineComment | C99 | C11 | Digraphs | GNUMode | HexFloat)
81 LineComment | C99 | C11 | C17 | Digraphs | HexFloat)
87 LineComment | C99 | C11 | C17 | Digraphs | GNUMode | HexFloat)
93 LineComment | C99 | C11 | C17 | C23 | Digraphs | HexFloat)
97 LineComment | C99 | C11 | C17 | C23 | Digraphs | GNUMode | HexFloat)
[all …]
H A DLangStandard.h63 Digraphs = (1 << 13), enumerator
135 bool hasDigraphs() const { return Flags & Digraphs; } in hasDigraphs()
H A DLangOptions.def127 LANGOPT(Digraphs , 1, 0, "digraphs")
H A DDiagnosticLexKinds.td28 // Digraphs.
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DLangOptions.cpp127 Opts.Digraphs = Std.hasDigraphs(); in setLangDefaults()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp4185 } else if (LangOpts.Digraphs && Char == '>') { in LexTokenInternal()
4188 } else if (LangOpts.Digraphs && Char == ':') { in LexTokenInternal()
4261 } else if (LangOpts.Digraphs && Char == ':') { // '<:' -> '[' in LexTokenInternal()
4281 } else if (LangOpts.Digraphs && Char == '%') { // '<%' -> '{' in LexTokenInternal()
4350 if (LangOpts.Digraphs && Char == '>') { in LexTokenInternal()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp466 else if (!LangOpts.GNUMode && LangOpts.Digraphs) in InitializeStandardPredefinedMacros()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp3878 LangOpts.Digraphs = LexingStd >= FormatStyle::LS_Cpp11; in getFormattingLangOpts()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td3335 LangOpts<"Digraphs">, Default<std#".hasDigraphs()">,