Home
last modified time | relevance | path

Searched refs:MakeTuple (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/func.bind_front/
H A Dbind_front.pass.cpp63 struct MakeTuple { struct
81 auto f = std::bind_front(MakeTuple{}); in test() argument
85 auto f = std::bind_front(MakeTuple{}, Elem<1>{}); in test()
89 auto f = std::bind_front(MakeTuple{}, Elem<1>{}, Elem<2>{}); in test()
101 auto f = std::bind_front(MakeTuple{}); in test()
105 auto f = std::bind_front(MakeTuple{}); in test()
109 auto f = std::bind_front(MakeTuple{}); in test()
117 auto f = std::bind_front(MakeTuple{}, Elem<1>{}); in test()
121 auto f = std::bind_front(MakeTuple{}, Elem<1>{}, Elem<2>{}); in test()
130 auto f = std::bind_front(MakeTuple{}, Elem<1>{}); in test()
[all …]
/llvm-project-15.0.7/libcxx/test/libcxx/utilities/function.objects/func.bind.partial/
H A Dbind_back.pass.cpp66 struct MakeTuple { struct
84 auto f = std::__bind_back(MakeTuple{}); in test() argument
88 auto f = std::__bind_back(MakeTuple{}, Elem<1>{}); in test()
92 auto f = std::__bind_back(MakeTuple{}, Elem<1>{}, Elem<2>{}); in test()
104 auto f = std::__bind_back(MakeTuple{}); in test()
108 auto f = std::__bind_back(MakeTuple{}); in test()
112 auto f = std::__bind_back(MakeTuple{}); in test()
120 auto f = std::__bind_back(MakeTuple{}, Elem<1>{}); in test()
124 auto f = std::__bind_back(MakeTuple{}, Elem<1>{}, Elem<2>{}); in test()
133 auto f = std::__bind_back(MakeTuple{}, Elem<1>{}); in test()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DUseEmplaceCheck.cpp179 auto MakeTuple = ignoringImplicit( in registerMatchers() local
188 has(materializeTemporaryExpr(MakeTuple)), in registerMatchers()
192 anyOf(has(MakeTuple), has(MakeTupleCtor), HasConstructExpr, in registerMatchers()
231 has(MakeTuple), hasSameNumArgsAsDeclNumParams(), in registerMatchers()