Home
last modified time | relevance | path

Searched refs:LaxVectorConversionKind (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Basic/
H A DLangOptions.h295 enum class LaxVectorConversionKind { enum
H A DLangOptions.def132 ENUM_LANGOPT(LaxVectorConversions, LaxVectorConversionKind, 2,
133 LaxVectorConversionKind::All, "lax vector conversions")
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp9358 const LangOptions::LaxVectorConversionKind LVCKind = in areLaxCompatibleSveTypes()
9378 if (LVCKind == LangOptions::LaxVectorConversionKind::All) in areLaxCompatibleSveTypes()
9383 if (LVCKind == LangOptions::LaxVectorConversionKind::Integer) in areLaxCompatibleSveTypes()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td2137 NormalizedValues<["LangOptions::LaxVectorConversionKind::None",
2138 "LangOptions::LaxVectorConversionKind::Integer",
2139 "LangOptions::LaxVectorConversionKind::All"]>,
2142 " ? LangOptions::LaxVectorConversionKind::None" #
2143 " : LangOptions::LaxVectorConversionKind::All">;
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExpr.cpp7794 case LangOptions::LaxVectorConversionKind::None: in isLaxVectorConversion()
7797 case LangOptions::LaxVectorConversionKind::Integer: in isLaxVectorConversion()
7811 case LangOptions::LaxVectorConversionKind::All: in isLaxVectorConversion()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp521 Opts.setLaxVectorConversions(LangOptions::LaxVectorConversionKind::All); in ParseLangArgs()