Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DLangOptions.h304 enum class LaxVectorConversionKind { enum
H A DLangOptions.def132 ENUM_LANGOPT(LaxVectorConversions, LaxVectorConversionKind, 2,
133 LaxVectorConversionKind::All, "lax vector conversions")
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp9470 const LangOptions::LaxVectorConversionKind LVCKind = in areLaxCompatibleSveTypes()
9490 if (LVCKind == LangOptions::LaxVectorConversionKind::All) in areLaxCompatibleSveTypes()
9495 if (LVCKind == LangOptions::LaxVectorConversionKind::Integer) in areLaxCompatibleSveTypes()
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DOptions.td2185 NormalizedValues<["LangOptions::LaxVectorConversionKind::None",
2186 "LangOptions::LaxVectorConversionKind::Integer",
2187 "LangOptions::LaxVectorConversionKind::All"]>,
2190 " ? LangOptions::LaxVectorConversionKind::None" #
2191 " : LangOptions::LaxVectorConversionKind::All">;
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExpr.cpp8034 case LangOptions::LaxVectorConversionKind::None: in isLaxVectorConversion()
8037 case LangOptions::LaxVectorConversionKind::Integer: in isLaxVectorConversion()
8051 case LangOptions::LaxVectorConversionKind::All: in isLaxVectorConversion()
/openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp524 Opts.setLaxVectorConversions(LangOptions::LaxVectorConversionKind::All); in ParseLangArgs()