| /llvm-project-15.0.7/clang/test/Lexer/ |
| H A D | char-escapes.c | 3 int test['\\' == 92 ? 1 : -1]; variable 4 int test['\"' == 34 ? 1 : -1]; variable 5 int test['\'' == 39 ? 1 : -1]; variable 6 int test['\?' == 63 ? 1 : -1]; variable 7 int test['\a' == 7 ? 1 : -1]; variable 8 int test['\b' == 8 ? 1 : -1]; variable 11 int test['\f' == 12 ? 1 : -1]; variable 12 int test['\n' == 10 ? 1 : -1]; variable 13 int test['\r' == 13 ? 1 : -1]; variable 14 int test['\t' == 9 ? 1 : -1]; variable [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ |
| H A D | ctor_comp_alloc.pass.cpp | 21 struct test struct 24 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 28 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 29 test(const value_compare& compare, const test_allocator<int>& a) in test() function 31 test(const value_compare& compare, const container_type& container, in test() argument 34 test(const value_compare& compare, container_type&& container, in test() argument 36 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 38 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
| H A D | ctor_alloc.pass.cpp | 21 struct test struct 24 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 28 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 29 test(const value_compare& comp, const test_allocator<int>& a) in test() argument 31 test(const value_compare& comp, const container_type& container, in test() argument 34 test(const value_compare& comp, container_type&& container, in test() argument 36 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 38 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
| H A D | ctor_comp_rcont_alloc.pass.cpp | 32 struct test struct 35 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 39 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 40 test(const value_compare& compare, const test_allocator<int>& a) in test() argument 42 test(const value_compare& compare, const container_type& container, in test() argument 45 test(const value_compare& compare, container_type&& container, in test() function 47 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 49 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
| H A D | ctor_move_alloc.pass.cpp | 36 struct test struct 39 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 43 explicit test(const test_allocator<int>& a) : base(a) {} in test() function 44 test(const value_compare& compare, const test_allocator<int>& a) in test() argument 46 test(const value_compare& compare, const container_type& container, in test() function 48 test(const value_compare& compare, container_type&& container, in test() function 50 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function 51 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
| H A D | ctor_comp_cont_alloc.pass.cpp | 32 struct test struct 35 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 39 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 40 test(const value_compare& compare, const test_allocator<int>& a) in test() argument 42 test(const value_compare& compare, const container_type& container, in test() argument 45 test(const value_compare& compare, container_type&& container, in test() function 47 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function 49 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
| H A D | ctor_copy_alloc.pass.cpp | 31 struct test struct 34 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 38 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 39 test(const value_compare& compare, const test_allocator<int>& a) in test() argument 41 test(const value_compare& compare, const container_type& container, in test() argument 43 test(const test& q, const test_allocator<int>& a) : base(q, a) {} in test() function 44 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/queue/queue.cons.alloc/ |
| H A D | ctor_alloc.pass.cpp | 20 struct test struct 23 typedef std::queue<int, std::deque<int, test_allocator<int> > > base; argument 25 explicit test(const test_allocator<int>& a) : base(a) {} in test() function 26 test(const container_type& container, const test_allocator<int>& a) : base(container, a) {} in test() argument 28 … test(container_type&& container, const test_allocator<int>& a) : base(std::move(container), a) {} in test() argument 29 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 31 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
| H A D | ctor_rcontainer_alloc.pass.cpp | 37 struct test struct 41 typedef test_allocator<MoveOnly> allocator_type; argument 44 explicit test(const allocator_type& a) : base(a) {} in test() argument 45 test(const container_type& container, const allocator_type& a) : base(container, a) {} in test() argument 46 test(container_type&& container, const allocator_type& a) : base(std::move(container), a) {} in test() function 47 test(test&& q, const allocator_type& a) : base(std::move(q), a) {} in test() function 54 test<MoveOnly> q(make<C>(5), test_allocator<MoveOnly>(4)); in main() argument
|
| H A D | ctor_rqueue_alloc.pass.cpp | 37 struct test struct 41 typedef test_allocator<MoveOnly> allocator_type; argument 44 explicit test(const allocator_type& a) : base(a) {} in test() argument 45 test(const container_type& container, const allocator_type& a) : base(container, a) {} in test() argument 46 test(container_type&& container, const allocator_type& a) : base(std::move(container), a) {} in test() argument 47 test(test&& q, const allocator_type& a) : base(std::move(q), a) {} in test() argument 54 test<MoveOnly> q(make<C>(5), test_allocator<MoveOnly>(4)); in main() argument
|
| H A D | ctor_queue_alloc.pass.cpp | 33 struct test struct 37 typedef test_allocator<int> allocator_type; argument 40 explicit test(const allocator_type& a) : base(a) {} in test() argument 41 test(const container_type& container, const allocator_type& a) : base(container, a) {} in test() argument 42 test(const test& q, const allocator_type& a) : base(q, a) {} in test() argument 48 test<int> q(make<C>(5), test_allocator<int>(4)); in main() argument
|
| H A D | ctor_container_alloc.pass.cpp | 33 struct test struct 38 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 39 test(const container_type& container, const test_allocator<int>& a) : base(container, a) {} in test() function 41 … test(container_type&& container, const test_allocator<int>& a) : base(std::move(container), a) {} in test() argument 42 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function 44 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/stack/stack.cons.alloc/ |
| H A D | ctor_alloc.pass.cpp | 20 struct test struct 23 typedef std::stack<int, std::deque<int, test_allocator<int> > > base; argument 25 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 26 test(const container_type& cont, const test_allocator<int>& a) : base(cont, a) {} in test() argument 28 test(container_type&& cont, const test_allocator<int>& a) : base(std::move(cont), a) {} in test() argument 29 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 31 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
| H A D | ctor_rcontainer_alloc.pass.cpp | 37 struct test struct 41 typedef test_allocator<MoveOnly> allocator_type; argument 44 explicit test(const allocator_type& a) : base(a) {} in test() argument 45 test(const container_type& cont, const allocator_type& a) : base(cont, a) {} in test() argument 46 test(container_type&& cont, const allocator_type& a) : base(std::move(cont), a) {} in test() function 47 test(test&& q, const allocator_type& a) : base(std::move(q), a) {} in test() argument 54 test<MoveOnly> q(make<C>(5), test_allocator<MoveOnly>(4)); in main() argument
|
| H A D | ctor_rqueue_alloc.pass.cpp | 37 struct test struct 41 typedef test_allocator<MoveOnly> allocator_type; argument 44 explicit test(const allocator_type& a) : base(a) {} in test() argument 45 test(const container_type& cont, const allocator_type& a) : base(cont, a) {} in test() argument 46 test(container_type&& cont, const allocator_type& a) : base(std::move(cont), a) {} in test() function 47 test(test&& q, const allocator_type& a) : base(std::move(q), a) {} in test() function 54 test<MoveOnly> q(make<C>(5), test_allocator<MoveOnly>(4)); in main() argument
|
| H A D | ctor_container_alloc.pass.cpp | 33 struct test struct 38 explicit test(const test_allocator<int>& a) : base(a) {} in test() function 39 test(const container_type& cont, const test_allocator<int>& a) : base(cont, a) {} in test() argument 41 test(container_type&& cont, const test_allocator<int>& a) : base(std::move(cont), a) {} in test() argument 42 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function 44 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
| H A D | ctor_copy_alloc.pass.cpp | 33 struct test struct 37 typedef test_allocator<int> allocator_type; argument 40 explicit test(const allocator_type& a) : base(a) {} in test() function 41 test(const container_type& cont, const allocator_type& a) : base(cont, a) {} in test() argument 42 test(const test& q, const allocator_type& a) : base(q, a) {} in test() argument 48 test<int> q(make<C>(5), test_allocator<int>(4)); in main() argument
|
| /llvm-project-15.0.7/flang/test/Semantics/ |
| H A D | null01.f90 | 4 subroutine test subroutine 5 interface 33 type :: dt0 36 type :: dt1 39 type :: dt2 42 type :: dt3 45 integer :: j local 46 type(dt0) :: dt0x 50 integer, pointer :: ip0, ip1(:), ip2(:,:) 51 integer, allocatable :: ia0, ia1(:), ia2(:,:) [all …]
|
| H A D | expr-errors02.f90 | 27 subroutine test(out, optional) subroutine 29 type(t(foo())) :: x1 30 integer :: local 32 type(t(local)) :: x2 34 type(t(internal(0))) :: x3 35 integer, intent(out) :: out 37 type(t(out)) :: x4 40 type(t(optional)) :: x5 42 type(t(hasProcArg())) :: x6 44 type(t(coarray[1])) :: x7 [all …]
|
| H A D | associated.f90 | 51 subroutine test() subroutine 52 integer :: intVar 55 real, target :: targetRealVar 59 procedure(intFunc) :: intProc 62 procedure(realFunc) :: realProc 67 procedure(subrInt) :: subProc 71 logical :: lVar 72 type(t1) :: t1x 73 type(t1), target :: t1xtarget 74 type(t2) :: t2x [all …]
|
| H A D | assign06.f90 | 8 subroutine test(n) subroutine 24 !ERROR: 'test' must be a default integer scalar variable argument 52 end subroutine test argument
|
| /llvm-project-15.0.7/flang/test/Evaluate/ |
| H A D | folding09.f90 | 12 subroutine test(arr1, arr2, arr3, mat, alloc) subroutine 17 logical, parameter :: test_isc01 = is_contiguous(0) argument 18 logical, parameter :: test_isc02 = is_contiguous(scalar) argument 20 logical, parameter :: test_isc04 = is_contiguous([0, 1, 2]) argument 21 logical, parameter :: test_isc05 = is_contiguous(arr1 + 1.0) argument 22 logical, parameter :: test_isc06 = is_contiguous(arr2) argument 23 logical, parameter :: test_isc07 = is_contiguous(mat) argument 24 logical, parameter :: test_isc08 = is_contiguous(mat(1:10,1)) argument 26 logical, parameter :: test_isc10 = is_contiguous(arr3) argument 27 logical, parameter :: test_isc11 = is_contiguous(f()) argument [all …]
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | undefined-inline.cpp | 6 void test() { f(); } // expected-note{{used here}} in test() function 11 void test() { (void)sizeof(f()); } in test() function 17 void test() { f(); } // expected-note{{used here}} in test() function 23 void test() { error_on_zero(0); } // expected-note{{used here}} in test() function 28 void test(X &x) { x.f(); } in test() function 33 void test(X &x) { x.f(); } // expected-note{{used here}} in test() function 38 void test() { f(); } // no used-here note. in test() function 44 void test() { foo(); } in test() function 49 void test() { foo(); } in test() function 55 void test() { foo(); } in test() function [all …]
|
| /llvm-project-15.0.7/clang/test/CXX/class.access/class.protected/ |
| H A D | p1.cpp | 17 void test(A &a) { in test() function 21 void test(B &b) { in test() function 25 void test(C &c) { in test() function 29 void test(D &d) { in test() function 266 void A::test() { in test() function in test7::A 270 void B::test() { in test() function in test7::B 274 void C::test() { in test() function in test7::C 278 void D::test() { in test() function in test7::D 395 void test() { in test() function in test11::C 410 void test() { in test() function [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/ |
| H A D | underflow.pass.cpp | 20 struct test struct 24 test(char* gnext_arg, std::streamsize n, char* pbeg_arg = 0) in test() argument 26 test(const char* gnext_arg, std::streamsize n) in test() function 36 test sb(buf, 0, buf + 3); in main() argument
|