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)
98 LineComment | C99 | C11 | C17 | C23 | Digraphs | GNUMode | HexFloat)
[all …]
H A DLangStandard.h62 Digraphs = (1 << 13), enumerator
134 bool hasDigraphs() const { return Flags & Digraphs; } in hasDigraphs()
H A DLangOptions.def83 LANGOPT(Digraphs , 1, 0, NotCompatible, "digraphs")
H A DDiagnosticLexKinds.td28 // Digraphs.
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DLangOptions.cpp129 Opts.Digraphs = Std.hasDigraphs(); in setLangDefaults()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp4210 } else if (LangOpts.Digraphs && Char == '>') { in LexTokenInternal()
4213 } else if (LangOpts.Digraphs && Char == ':') { in LexTokenInternal()
4286 } else if (LangOpts.Digraphs && Char == ':') { // '<:' -> '[' in LexTokenInternal()
4306 } else if (LangOpts.Digraphs && Char == '%') { // '<%' -> '{' in LexTokenInternal()
4374 if (LangOpts.Digraphs && Char == '>') { in LexTokenInternal()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp472 else if (!LangOpts.GNUMode && LangOpts.Digraphs) in InitializeStandardPredefinedMacros()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp4080 LangOpts.Digraphs = SinceCpp11; in getFormattingLangOpts()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td3505 LangOpts<"Digraphs">, Default<std#".hasDigraphs()">,