/llvm-project/libcxx/test/std/re/re.badexp/ |
H A D | regex_error.pass.cpp | 26 std::regex_error e(std::regex_constants::error_collate); in main() local 31 std::regex_error e(std::regex_constants::error_ctype); in main() local 36 std::regex_error e(std::regex_constants::error_escape); in main() local 42 std::regex_error e(std::regex_constants::error_backref); in main() local 47 std::regex_error e(std::regex_constants::error_brack); in main() local 52 std::regex_error e(std::regex_constants::error_paren); in main() local 57 std::regex_error e(std::regex_constants::error_brace); in main() local 62 std::regex_error e(std::regex_constants::error_badbrace); in main() local 67 std::regex_error e(std::regex_constants::error_range); in main() local 73 std::regex_error e(std::regex_constants::error_space); in main() local [all …]
|
/llvm-project/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/ |
H A D | ctor_result_type.pass.cpp | 32 std::string to_string(T const& e) { in to_string() 45 E e(5); in test1() local 50 E e(5); in test1() local 55 E e(5); in test1() local 67 E e(7); in test2() local 72 E e(0); in test2() local 77 E e(4); in test2() local 89 E e(3); in test3() local 94 E e(5); in test3() local 99 E e(7); in test3() local [all …]
|
/llvm-project/libcxx/test/libcxx/utilities/expected/expected.expected/ |
H A D | value.observers.verify.cpp | 50 std::expected<int, CopyConstructible> e; in test() local 56 std::expected<int, MoveOnly> e; in test() local 66 const std::expected<int, CopyConstructible> e; in test() local 72 const std::expected<int, MoveOnly> e; in test() local 82 std::expected<int, MoveOnly> e; in test() local 89 std::expected<int, CopyConstructibleAndMoveConstructible> e; test() local 95 std::expected<int, CopyConstructibleButNotMoveConstructible> e; test() local 105 const std::expected<int, MoveOnly> e; test() local 112 const std::expected<int, CopyConstructibleAndMoveConstructible> e; test() local 118 const std::expected<int, CopyConstructibleButNotMoveConstructible> e; test() local [all...] |
H A D | transform_error.mandates.verify.cpp | 77 e.transform_error(return_no_object<const int &>); // expected-error-re@*:* {{static assertion failed {{.*}}The result of {{.*}} must be a valid template argument for unexpected}} in test() local 86 std::move(e).transform_error(return_no_object<int&&>); // expected-error-re@*:* {{static assertion failed {{.*}}The result of {{.*}} must be a valid template argument for unexpected}} in test() local 55 std::expected<int, int> e; test() local 68 const std::expected<int, int> e; test() local [all...] |
/llvm-project/libcxx/test/std/utilities/expected/expected.void/observers/ |
H A D | error_or.pass.cpp | 28 const std::expected<void, ConstructFromInt> e; in test_default_template_arg() local 35 const std::expected<void, ConstructFromInt> e(std::unexpect, 5); in test_default_template_arg() local 42 const std::expected<void, ConstructFromInt> e; in test_default_template_arg() local 49 const std::expected<void, ConstructFromInt> e(std::unexpect, 5); in test_default_template_arg() local 60 const std::expected<void, int> e; in test() local 67 const std::expected<void, int> e(std::unexpect, 5); in test() local 74 std::expected<void, int> e; in test() local 81 std::expected<void, int> e(std::unexpect, 5); in test() local
|
H A D | value.pass.cpp | 25 const std::expected<void, int> e; test() local 32 std::expected<void, int> e; test() local 39 std::expected<void, int> e; test() local 46 const std::expected<void, int> e; test() local 59 const std::expected<void, int> e(std::unexpect, 5); testException() local [all...] |
/llvm-project/libcxx/test/std/utilities/expected/expected.expected/observers/ |
H A D | error_or.pass.cpp | 28 const std::expected<int, ConstructFromInt> e(5); in test_default_template_arg() local 35 const std::expected<int, ConstructFromInt> e(std::unexpect, 5); in test_default_template_arg() local 42 const std::expected<int, ConstructFromInt> e(5); in test_default_template_arg() local 49 const std::expected<int, ConstructFromInt> e(std::unexpect, 5); in test_default_template_arg() local 60 const std::expected<int, int> e(5); in test() local 67 const std::expected<int, int> e(std::unexpect, 5); in test() local 74 std::expected<int, int> e(5); in test() local 81 std::expected<int, int> e(std::unexpect, 5); in test() local
|
H A D | value_or.pass.cpp | 25 const std::expected<int, int> e(5); test() local 32 const std::expected<int, int> e(std::unexpect, 5); test() local 39 std::expected<MoveOnly, int> e(std::in_place, 5); test() local 46 std::expected<MoveOnly, int> e(std::unexpect, 5); test() local
|
/llvm-project/clang/test/OpenMP/ |
H A D | atomic_ast_print.cpp | 1470 template <typename Ty> Ty ffoo(Ty *x, Ty e, Ty d) { in ffoo() 1827 char x, e, d; in bbaarr() local 1832 unsigned char x, e, d; in bbaarr() local 1837 short x, e, d; in bbaarr() local 1842 unsigned short x, e, d; in bbaarr() local 1847 int x, e, d; in bbaarr() local 1852 unsigned int x, e, d; in bbaarr() local 1857 long x, e, d; in bbaarr() local 1862 unsigned long x, e, d; in bbaarr() local 1867 long long x, e, d; in bbaarr() local [all …]
|
/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_ilist.h | 82 void IList<Base, Node, Elem>::PushFront(Elem* e) { in PushFront() 87 void IList<Base, Node, Elem>::PushBack(Elem* e) { in PushBack() 92 void IList<Base, Node, Elem>::Push(Elem* e, INode* after) { in Push() 105 void IList<Base, Node, Elem>::Remove(Elem* e) { in Remove() 120 Elem* e = Front(); in PopFront() local 128 Elem* e = Back(); in PopBack() local 145 Elem* IList<Base, Node, Elem>::Prev(Elem* e) { in Prev() 152 Elem* IList<Base, Node, Elem>::Next(Elem* e) { in Next() 169 bool IList<Base, Node, Elem>::Queued(Elem* e) const { in Queued() 176 INode* IList<Base, Node, Elem>::ToNode(Elem* e) { in ToNode()
|
/llvm-project/libcxx/test/std/utilities/expected/expected.expected/assign/ |
H A D | emplace.pass.cpp | 53 std::expected<BothNoexcept, int> e(std::in_place, oldState, 5); test() local 66 std::expected<int, BothMayThrow> e(std::unexpect, oldState, 5); test() local 78 std::expected<TailClobberer<0>, bool> e(std::unexpect); test() local 86 CheckForInvalidWrites<true> e; test() local 91 CheckForInvalidWrites<false> e; test() local [all...] |
/llvm-project/clang/test/CodeGenCXX/ |
H A D | attr-likelihood-iteration-stmt.cpp | 23 void wl(int e){ in wl() argument 45 void wu(int e){ in wu() argument 60 void w_branch_elided(unsigned e){ in w_branch_elided() argument 93 void fl(unsigned e) in fl() argument 125 fu(int e) fu() argument [all...] |
/llvm-project/libcxx/test/std/time/time.zone/time.zone.timezone/time.zone.members/ |
H A D | to_sys.pass.cpp | 91 [&]([[maybe_unused]] const std::chrono::nonexistent_local_time& e) { in test_nonexistent() argument 105 [&]([[maybe_unused]] const std::chrono::nonexistent_local_time& e) { in test_nonexistent() argument 119 [&]([[maybe_unused]] const std::chrono::nonexistent_local_time& e) { in test_nonexistent() argument 133 [&]([[maybe_unused]] const std::chrono::nonexistent_local_time& e) { in test_nonexistent() argument 175 __anon5b5839630502(const std::chrono::ambiguous_local_time& e) test_ambiguous() argument 188 __anon5b5839630602(const std::chrono::ambiguous_local_time& e) test_ambiguous() argument 201 __anon5b5839630702(const std::chrono::ambiguous_local_time& e) test_ambiguous() argument 214 __anon5b5839630802(const std::chrono::ambiguous_local_time& e) test_ambiguous() argument [all...] |
/llvm-project/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/ |
H A D | eval.pass.cpp | 65 E e; in test1() local 74 E e; in test2() local 83 E e(5); in test3() local 92 E e(129); in test4() local 101 E e(6); in test5() local 110 E e(6); in test6() local 119 E e(6); in test7() local 128 E e(6); in test8() local
|
/llvm-project/clang/test/CodeGen/ |
H A D | aarch64-args.cpp |
|
/llvm-project/libcxx/test/libcxx/utilities/expected/expected.void/ |
H A D | transform_error.mandates.verify.cpp | 87 std::move(e).transform_error(return_unexpected<int&&>); // expected-error-re@*:* {{static assertion failed {{.*}}The result of {{.*}} must be a valid template argument for unexpected}} in test() local 55 std::expected<void, int> e; test() local 69 const std::expected<void, int> e; test() local 78 std::expected<void, int> e; test() local [all...] |
/llvm-project/libcxx/test/libcxx/containers/sequences/vector/ |
H A D | asan_throw.pass.cpp | 66 } catch (int e) { in test_push_back() local 82 } catch (int e) { in test_emplace_back() local 101 } catch (int e) { in test_insert_range() local 117 } catch (int e) { in test_insert() local 134 } catch (int e) { in test_emplace() local 153 } catch (int e) { in test_insert_range2() local 170 } catch (int e) { in test_insert_n() local 187 } catch (int e) { in test_insert_n2() local 202 } catch (int e) { in test_resize() local 216 } catch (int e) { in test_resize_param() local
|
/llvm-project/libcxx/test/std/utilities/expected/expected.expected/monadic/ |
H A D | transform.pass.cpp | 118 std::expected<int, int> e(0); in test_val_types() local 125 std::expected<int, int> e(0); in test_val_types() local 136 const std::expected<int, int> e(0); in test_val_types() local 143 const std::expected<int, int> e(0); in test_val_types() local 154 std::expected<int, int> e(0); test_val_types() local 161 std::expected<int, int> e(0); test_val_types() local 171 const std::expected<int, int> e(0); test_val_types() local 178 const std::expected<int, int> e(0); test_val_types() local 188 std::expected<int, int> e(1); test_take_val_return_void() local 221 std::expected<int, int> e(2); test_direct_non_list_init() local 249 std::expected<int, MoveOnlyErrorType> e; test_move_only_error_type() local 256 const std::expected<int, MoveOnlyErrorType> e; test_move_only_error_type() local [all...] |
/llvm-project/clang/test/CoverageMapping/ |
H A D | mcdc-logical-stmt-ids-all.cpp | 3 bool func_if_and(bool a, bool b, bool c, bool d, bool e, bool f) { in func_if_and() 17 bool func_if_or(bool a, bool b, bool c, bool d, bool e, bool f) { in func_if_or() 31 bool func_while_and(bool a, bool b, bool c, bool d, bool e, bool f) { in func_while_and() 44 bool func_while_or(bool a, bool b, bool c, bool d, bool e, bool f) { in func_while_or() 57 bool func_for_and(bool a, bool b, bool c, bool d, bool e, bool f) { in func_for_and() 70 bool func_for_or(bool a, bool b, bool c, bool d, bool e, bool f) { in func_for_or() 83 bool func_do_and(bool a, bool b, bool c, bool d, bool e, bool f) { in func_do_and() 96 bool func_do_or(bool a, bool b, bool c, bool d, bool e, bool f) { in func_do_or() 109 bool func_ternary_and(bool a, bool b, bool c, bool d, bool e, bool f) { in func_ternary_and() 121 bool func_ternary_or(bool a, bool b, bool c, bool d, bool e, bool f) { in func_ternary_or() [all …]
|
/llvm-project/libcxx/test/std/re/re.grammar/ |
H A D | excessive_brace_min_max.pass.cpp | 27 } catch (const std::regex_error &e) { in main() local 38 } catch (const std::regex_error &e) { in main() local 50 } catch (const std::regex_error &e) { in main() local 61 } catch (const std::regex_error &e) { in main() local
|
/llvm-project/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/ |
H A D | path.pass.cpp | 31 const directory_entry e(""); in test_path_method() local 37 directory_entry e(p); in test_path_method() local 53 const directory_entry e(""); in test_path_conversion() local 70 directory_entry const e(p); in test_path_conversion() local 76 directory_entry e(p); in test_path_conversion() local
|
/llvm-project/libcxx/test/libcxx/containers/views/mdspan/extents/ |
H A D | assert.obs.pass.cpp | 37 std::extents<int> e; in main() local 42 std::extents<int, D> e; in main() local 47 std::extents<int, 5> e; in main() local 52 std::extents<int, D, 5> e; in main() local 57 std::extents<int, 1, 2, 3, 4, 5, 6, 7, 8> e; in main() local
|
/llvm-project/clang/test/CXX/temp/temp.spec/temp.inst/ |
H A D | p1.cpp | 13 e = T::error // expected-error {{'double' cannot be used prior to '::'}} enumerator 20 e = 0 enumerator 27 e = 4 enumerator 41 e = T::error // expected-error {{has no members}} in f() enumerator 50 e = T::error // expected-error {{has no members}} in g() enumerator 73 e = T::error // expected-error {{'int' cannot be used prior to '::'}} enumerator 80 e = 0 enumerator 87 e = 4 enumerator 96 e = T::error // expected-error {{has no members}} in f() enumerator 105 e = T::error // expected-error {{has no members}} in g() enumerator
|
/llvm-project/libcxx/test/std/utilities/expected/expected.void/ctor/ |
H A D | ctor.unexpect.pass.cpp | 60 std::expected<void, T> e(std::unexpect, 5); testInt() local 68 std::expected<void, T> e(std::unexpect, t); testLValue() local 75 std::expected<void, T> e(std::unexpect, T(5)); testRValue() local 94 std::expected<void, int> e(std::unexpect); test() local 101 std::expected<void, int> e(std::unexpect, 5); test() local 108 std::expected<void, std::tuple<int, short, MoveOnly>> e(std::unexpect, 1, short{2}, MoveOnly(3)); test() local [all...] |
/llvm-project/libcxx/test/std/utilities/expected/expected.expected/ctor/ |
H A D | ctor.inplace.pass.cpp | 60 std::expected<T, E> e(std::in_place, 5); testInt() local 68 std::expected<T, E> e(std::in_place, t); testLValue() local 75 std::expected<T, E> e(std::in_place, T(5)); testRValue() local 94 std::expected<int, int> e(std::in_place); test() local 101 std::expected<int, int> e(std::in_place, 5); test() local 108 std::expected<std::tuple<int, short, MoveOnly>, int> e(std::in_place, 1, short{2}, MoveOnly(3)); test() local [all...] |