Home
last modified time | relevance | path

Searched refs:ref3 (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/variant/variant.variant/variant.mod/
H A Demplace_type_args.pass.cpp114 auto& ref3 = v.emplace<std::string>(3u, 'a'); in test_basic() local
115 static_assert(std::is_same_v<std::string&, decltype(ref3)>, ""); in test_basic()
117 assert(&ref3 == &std::get<4>(v)); in test_basic()
138 auto& ref3 = v.emplace<int &&>(std::move(y)); in test_basic() local
139 static_assert(std::is_same_v<int &&, decltype(ref3)>, ""); in test_basic()
141 assert(&ref3 == &std::get<int &&>(v)); in test_basic()
H A Demplace_index_args.pass.cpp114 auto& ref3 = v.emplace<4>(3u, 'a'); in test_basic() local
115 static_assert(std::is_same_v<std::string&, decltype(ref3)>, ""); in test_basic()
117 assert(&ref3 == &std::get<4>(v)); in test_basic()
138 auto& ref3 = v.emplace<3>(std::move(y)); in test_basic() local
141 assert(&ref3 == &std::get<3>(v)); in test_basic()
H A Demplace_type_init_list_args.pass.cpp83 auto& ref3 = v.emplace<InitList>({1}); in test_basic() local
84 static_assert(std::is_same_v<InitList&,decltype(ref3)>, ""); in test_basic()
86 assert(&ref3 == &std::get<InitList>(v)); in test_basic()
H A Demplace_index_init_list_args.pass.cpp83 auto& ref3 = v.emplace<1>({1}); in test_basic() local
84 static_assert(std::is_same_v<InitList&, decltype(ref3)>, ""); in test_basic()
86 assert(&ref3 == &std::get<1>(v)); in test_basic()
/llvm-project-15.0.7/lldb/test/API/lang/cpp/function_refs/
H A Dmain.cpp14 auto &ref3 = varargs; variable
/llvm-project-15.0.7/llvm/test/Assembler/
H A Dalias-use-list-order.ll10 @alias.ref3 = alias i32, getelementptr inbounds (i32, i32* @alias, i64 1)
/llvm-project-15.0.7/lldb/test/Shell/SymbolFile/NativePDB/Inputs/
H A Dfunction-types-builtins.lldbinit63 dv ref3
/llvm-project-15.0.7/lldb/test/Shell/SymbolFile/NativePDB/
H A Dfunction-types-builtins.cpp197 auto &ref3 = varargs; variable
/llvm-project-15.0.7/clang/test/CodeGenObjCXX/
H A Darc-references.mm33 const __weak id &ref3 = y;
/llvm-project-15.0.7/clang/test/FixIt/
H A Dnullability.mm40 extern void *&&ref3; // expected-warning {{inferring '_Nonnull' for pointer type within reference i…