Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/Basic/
H A DLangStandards.def45 Digraphs)
49 LineComment | Digraphs | GNUMode)
55 LineComment | C99 | Digraphs | HexFloat)
68 LineComment | C99 | C11 | Digraphs | HexFloat)
101 LineComment | CPlusPlus | Digraphs)
133 Digraphs | HexFloat)
139 Digraphs | HexFloat | GNUMode)
145 CPlusPlus20 | Digraphs | HexFloat)
151 CPlusPlus20 | Digraphs | HexFloat | GNUMode)
186 Digraphs | HexFloat | OpenCL)
[all …]
H A DLangStandard.h59 Digraphs = (1 << 11), enumerator
125 bool hasDigraphs() const { return Flags & Digraphs; } in hasDigraphs()
H A DLangOptions.def125 LANGOPT(Digraphs , 1, 0, "digraphs")
H A DDiagnosticLexKinds.td28 // Digraphs.
/llvm-project-15.0.7/clang/unittests/Frontend/
H A DCompilerInvocationTest.cpp805 ASSERT_TRUE(Invocation.getLangOpts()->Digraphs); in TEST_F()
816 ASSERT_FALSE(Invocation.getLangOpts()->Digraphs); in TEST_F()
827 ASSERT_FALSE(Invocation.getLangOpts()->Digraphs); in TEST_F()
838 ASSERT_TRUE(Invocation.getLangOpts()->Digraphs); in TEST_F()
/llvm-project-15.0.7/clang/lib/Basic/
H A DLangOptions.cpp117 Opts.Digraphs = Std.hasDigraphs(); in setLangDefaults()
/llvm-project-15.0.7/clang-tools-extra/pseudo/unittests/
H A DTokenTest.cpp134 Opts.Digraphs = true; in TEST()
/llvm-project-15.0.7/clang/lib/Lex/
H A DLexer.cpp3989 } else if (LangOpts.Digraphs && Char == '>') { in LexTokenInternal()
3992 } else if (LangOpts.Digraphs && Char == ':') { in LexTokenInternal()
4065 } else if (LangOpts.Digraphs && Char == ':') { // '<:' -> '[' in LexTokenInternal()
4085 } else if (LangOpts.Digraphs && Char == '%') { // '<%' -> '{' in LexTokenInternal()
4154 if (LangOpts.Digraphs && Char == '>') { in LexTokenInternal()
/llvm-project-15.0.7/clang/lib/Frontend/
H A DInitPreprocessor.cpp449 else if (!LangOpts.GNUMode && LangOpts.Digraphs) in InitializeStandardPredefinedMacros()
/llvm-project-15.0.7/clang/lib/Format/
H A DFormat.cpp3427 LangOpts.Digraphs = LexingStd >= FormatStyle::LS_Cpp11; in getFormattingLangOpts()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp509 Opts.Digraphs = Std.hasDigraphs(); in ParseLangArgs()
/llvm-project-15.0.7/clang/docs/
H A DUsersManual.rst2873 - Digraphs are not recognized in c89 mode.
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td2387 LangOpts<"Digraphs">, Default<std#".hasDigraphs()">,