Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h236 enum class LaxVectorConversionKind { enum
H A DLangOptions.def127 ENUM_LANGOPT(LaxVectorConversions, LaxVectorConversionKind, 2,
128 LaxVectorConversionKind::All, "lax vector conversions")
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp8727 const LangOptions::LaxVectorConversionKind LVCKind = in areLaxCompatibleSveTypes()
8747 if (LVCKind == LangOptions::LaxVectorConversionKind::All) in areLaxCompatibleSveTypes()
8752 if (LVCKind == LangOptions::LaxVectorConversionKind::Integer) in areLaxCompatibleSveTypes()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td1974 NormalizedValues<["LangOptions::LaxVectorConversionKind::None",
1975 "LangOptions::LaxVectorConversionKind::Integer",
1976 "LangOptions::LaxVectorConversionKind::All"]>,
1979 " ? LangOptions::LaxVectorConversionKind::None" #
1980 " : LangOptions::LaxVectorConversionKind::All">;
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp7468 case LangOptions::LaxVectorConversionKind::None: in isLaxVectorConversion()
7471 case LangOptions::LaxVectorConversionKind::Integer: in isLaxVectorConversion()
7485 case LangOptions::LaxVectorConversionKind::All: in isLaxVectorConversion()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp519 Opts.setLaxVectorConversions(LangOptions::LaxVectorConversionKind::All); in ParseLangArgs()