/llvm-project/libcxx/include/__utility/ |
H A D | pair.h | 64 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 D | capturing_in_templates.cpp | 14 struct pair { struct 17 pair(T1 t1, T2 t2) : t1(t1), t2(t2) {} in pair() argument
|
/llvm-project/clang/test/CodeGen/ |
H A D | tbaa-thread-sanitizer.cpp | 7 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 D | is_standard_layout.pass.cpp | 47 struct pair struct 57 test_is_standard_layout<pair<int, double> > (); in main() argument
|
/llvm-project/clang/test/CodeGenCXX/ |
H A D | pr18635.cpp | 12 template <typename F, typename S> struct pair { struct in unique_ptr 13 F first; 14 S second;
|
H A D | cxx0x-initializer-stdinitializerlist.cpp | 262 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 D | build-explicit-make-pair.cpp | 5 struct pair { struct 6 pair(T1 x, T2 y) {} in pair() argument
|
/llvm-project/clang/test/PCH/ |
H A D | crash-12631281.cpp | 18 template <class _T1, class _T2> struct pair { struct 22 pair(_U1&& , _U2&& ); // expected-note {{candidate}} argument
|
H A D | objc_literals.mm | 44 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 D | isolate-declaration-cxx17.cpp | 4 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 D | trailing-return.cpp | 33 struct pair { struct 46 UserDefinedDeductionGuides(T1, T2) -> UserDefinedDeductionGuides<pair<T1, T2>>; argument
|
/llvm-project/clang/test/CoverageMapping/ |
H A D | classtemplate.cpp | 59 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 D | MicrosoftCompatibility.cpp | 112 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 134 …pair(pair&& rhs) { } // expected-note {{copy assignment operator is implicitly deleted because 'pa… in pair() argument 136 pair(pair&& rhs) { } in pair() argument
|
H A D | typo-correction-cxx11.cpp | 41 struct pair { struct 42 int first; 43 A *second;
|
H A D | ctad-copy-init-list-narrowing.cpp | 15 class pair { class 17 pair(T f, Y s) {} in pair() function in std::pair
|
/llvm-project/clang/test/Analysis/Inputs/ |
H A D | system-header-simulator-cxx.h | 241 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 D | AssertEquals.cpp | 29 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 D | struct.c | 14 Pair pair; in make_pair() local 22 Pair pair; in copy_pair1() local 30 Pair pair; in copy_pair2() local
|
H A D | pair.cpp | 15 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 D | containers.h | 143 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 D | sourceranges.cpp | 73 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 D | pair.h | 23 struct _LIBCPP_TEMPLATE_VIS pair; variable
|
/llvm-project/clang/test/SemaTemplate/ |
H A D | nested-name-spec-template.cpp | 66 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 D | SelectHelper.cpp | 107 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 D | warn-fortify-source.c | 34 struct pair { in call_memcpy_type() struct 35 int first; in call_memcpy_type() 36 int second; in call_memcpy_type()
|