Home
last modified time | relevance | path

Searched defs:pair (Results 1 – 25 of 178) sorted by relevance

12345678

/llvm-project/libcxx/include/__utility/
H A Dpair.h64 struct _LIBCPP_TEMPLATE_VIS pair global() struct
77 __trivially_relocatablepair global() argument
84 pairpair pair() argument
86 pairpair pair() argument
89 pairpair pair() argument
123 _CheckArgspair __is_pair_constructible() argument
138 pairpair pair() argument
146 pairpair pair() argument
160 pairpair pair() argument
168 pairpair pair() argument
178 pairpair pair() argument
184 pairpair pair() argument
193 pairpair pair() argument
202 __pair_like_explicit_wkndpair __pair_like_explicit_wknd() argument
213 requirespair requires() argument
219 pairpair pair() argument
237 noexceptpair global() argument
251 noexceptpair global() argument
278 noexceptpair global() argument
289 noexceptpair global() argument
298 requirespair global() argument
307 requirespair requires() argument
317 requirespair requires() argument
334 pairpair pair() argument
342 pairpair pair() argument
348 pairpair pair() argument
355 pairpair pair() argument
379 pairpair pair() argument
385 pairpair pair() argument
389 pairpair pair() argument
396 pairpair pair() argument
416 swappair swap() argument
424 swappair swap() argument
436 pairpair pair() argument
[all...]
/llvm-project/clang/test/OpenMP/
H A Dcapturing_in_templates.cpp14 struct pair { struct
17 pair(T1 t1, T2 t2) : t1(t1), t2(t2) {} in pair() argument
/llvm-project/clang/test/CodeGen/
H A Dtbaa-thread-sanitizer.cpp7 struct pair { struct
9 pair(const iterator &a) : first(a) {} in pair() argument
/llvm-project/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_standard_layout.pass.cpp47 struct pair struct
57 test_is_standard_layout<pair<int, double> > (); in main() argument
/llvm-project/clang/test/CodeGenCXX/
H A Dpr18635.cpp12 template <typename F, typename S> struct pair { struct in unique_ptr
13 F first;
14 S second;
H A Dcxx0x-initializer-stdinitializerlist.cpp262 struct pair { struct
470 template <class T1, class T2> struct pair { struct
473 constexpr pair() : first(), second() {} in pair() argument
474 constexpr pair(T1 a, T2 b) : first(a), second(b) {} in pair() argument
263 aPR12178::pair global() argument
264 bPR12178::pair global() argument
471 firstB19773010::pair global() argument
472 secondB19773010::pair global() argument
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/google/
H A Dbuild-explicit-make-pair.cpp5 struct pair { struct
6 pair(T1 x, T2 y) {} in pair() argument
/llvm-project/clang/test/PCH/
H A Dcrash-12631281.cpp18 template <class _T1, class _T2> struct pair { struct
22 pair(_U1&& , _U2&& ); // expected-note {{candidate}} argument
H A Dobjc_literals.mm44 struct pair { struct
50 pair<T, U> make_pair(const T& first, const U& second) { argument
56 void variadic_dictionary_expansion(pair<Ts, Us>... key_values) { argument
65 variadic_dictionary_expansion(make_pair(@"Seventeen", @17), argument
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/
H A Disolate-declaration-cxx17.cpp4 struct pair { struct
7 pair(T1 v1, T2 v2) : first(v1), second(v2) {} in pair() argument
24 auto [i, j] = pair<int, int>(42, 42); in forbidden_transformations() argument
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/fuchsia/
H A Dtrailing-return.cpp33 struct pair { struct
46 UserDefinedDeductionGuides(T1, T2) -> UserDefinedDeductionGuides<pair<T1, T2>>; argument
/llvm-project/clang/test/CoverageMapping/
H A Dclasstemplate.cpp59 template <typename F, typename S> struct pair { struct
60 F f;
61 S s;
62 pair(const F &f, const S &s) : f(f), s(s) {} in pair() function
/llvm-project/clang/test/SemaCXX/
H A DMicrosoftCompatibility.cpp112 struct pair { struct
113 pair(int v) { } in pair() argument
115 …opy constructor is implicitly deleted because 'pair' has a user-declared move assignment operator}} in operator =()
117 void operator=(pair&& rhs) { } in operator =()
131 struct pair { struct
132 pair(int v) { } in pair() function
134pair(pair&& rhs) { } // expected-note {{copy assignment operator is implicitly deleted because 'pa… in pair() argument
136 pair(pair&& rhs) { } in pair() argument
H A Dtypo-correction-cxx11.cpp41 struct pair { struct
42 int first;
43 A *second;
H A Dctad-copy-init-list-narrowing.cpp15 class pair { class
17 pair(T f, Y s) {} in pair() function in std::pair
/llvm-project/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h241 struct pair { struct
245 pair() : first(), second() {} in pair() argument
246 pair(const T1 &a, const T2 &b) : first(a), second(b) {} in pair() argument
249 pair(const pair<U1, U2> &other) : first(other.first), in pair() argument
/llvm-project/clang-tools-extra/clang-tidy/objc/
H A DAssertEquals.cpp29 for (const auto &pair : NameMap()) { in registerMatchers() local
45 for (const auto &pair : NameMap()) { in check() local
/llvm-project/compiler-rt/test/dfsan/
H A Dstruct.c14 Pair pair; in make_pair() local
22 Pair pair; in copy_pair1() local
30 Pair pair; in copy_pair2() local
H A Dpair.cpp15 copy_pair1(const std::pair<int *, int> &pair) { in copy_pair1() argument
21 copy_pair2(std::pair<int *, int> *pair) { in copy_pair2() argument
27 copy_pair3(std::pair<int *, int> &&pair) { in copy_pair3() argument
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/use-auto/
H A Dcontainers.h143 struct pair { struct
144 pair(A f, B s) : first(f), second(s) {} in pair() function
145 A first;
146 B second;
/llvm-project/clang/test/AST/
H A Dsourceranges.cpp73 template <typename F, typename S> struct pair { struct
74 F f;
75 S s;
76 pair(const F &f, const S &s) : f(f), s(s) {} in pair() argument
/llvm-project/libcxx/include/__fwd/
H A Dpair.h23 struct _LIBCPP_TEMPLATE_VIS pair; variable
/llvm-project/clang/test/SemaTemplate/
H A Dnested-name-spec-template.cpp66 template <class T> struct pair { struct
67 T x;
68 T y;
70 static T pair<T>::* const mem_array[2];
/llvm-project/lldb/source/Utility/
H A DSelectHelper.cpp107 for (auto &pair : m_fd_map) { Select() local
178 for (auto &pair : m_fd_map) { Select() local
234 for (auto &pair : m_fd_map) { Select() local
[all...]
/llvm-project/clang/test/Sema/
H A Dwarn-fortify-source.c34 struct pair { in call_memcpy_type() struct
35 int first; in call_memcpy_type()
36 int second; in call_memcpy_type()

12345678