Home
last modified time | relevance | path

Searched refs:test2 (Results 1 – 25 of 2507) sorted by relevance

12345678910>>...101

/llvm-project/libcxx/test/std/strings/string.view/string.view.capacity/
H A Dcapacity.pass.cpp62 void test2(const CharT* s, std::size_t len) { in test2() function
89test2("ABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEA… in main()
91 test2("ABCDE", 5); in main()
92 test2("a", 1); in main()
93 test2("", 0); in main()
96test2(L"ABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDE… in main()
98 test2(L"ABCDE", 5); in main()
99 test2(L"a", 1); in main()
100 test2(L"", 0); in main()
104test2(u8"ABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCD… in main()
[all …]
/llvm-project/libcxx/test/std/thread/thread.condition/thread.condition.condvar/
H A Dnotify_one.pass.cpp55 std::atomic_int test2(0); variable
74 assert(test2 == 0); in f2()
76 while (test2 == 0) in f2()
79 assert(test2 == 1); in f2()
80 test2 = 2; in f2()
95 test2 = 1; in main()
104 assert(test2 == 1); in main()
109 assert(test2 == 2); in main()
111 test2 = 0; in main()
121 assert(test2 == 0); in main()
[all …]
H A Dnotify_all.pass.cpp31 int test2 = 0;
49 assert(test2 == 0); in f2()
51 while (test2 == 0)
53 assert(test2 == 1); in main()
54 test2 = 2; in main()
67 test2 = 1; in main()
77 assert(test2 == 2);
30 int test2 = 0; global() variable
H A Dwait.pass.cpp29 int test2 = 0; variable
34 assert(test2 == 0); in f()
37 while (test2 == 0) in f()
39 assert(test2 != 0); in f()
50 test2 = 1; in main()
/llvm-project/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/
H A Dstring_string.pass.cpp52 TEST_CONSTEXPR_CXX20 void test2(const S& lhs, S&& rhs, const S& x) { in test2() function
98 test2(S(""), S(""), S("")); in test_string()
99 test2(S(""), S("12345"), S("12345")); in test_string()
100 test2(S(""), S("1234567890"), S("1234567890")); in test_string()
101 test2(S(""), S("12345678901234567890"), S("12345678901234567890")); in test_string()
102 test2(S("abcde"), S(""), S("abcde")); in test_string()
103 test2(S("abcde"), S("12345"), S("abcde12345")); in test_string()
104 test2(S("abcde"), S("1234567890"), S("abcde1234567890")); in test_string()
105 test2(S("abcde"), S("12345678901234567890"), S("abcde12345678901234567890")); in test_string()
106 test2(S("abcdefghij"), S(""), S("abcdefghij")); in test_string()
[all …]
/llvm-project/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/
H A Dnotify_one.pass.cpp35 int test2 = 0; variable
50 assert(test2 == 0); in f2()
51 while (test2 == 0) in f2()
53 assert(test2 == 1); in f2()
54 test2 = 2; in f2()
65 test2 = 1; in main()
77 else if (test2 == 2) in main()
80 test2 = 0; in main()
94 else if (test2 == 2) in main()
97 test2 = 0; in main()
H A Dwait.pass.cpp34 int test2 = 0; variable
39 assert(test2 == 0); in f()
42 while (test2 == 0) in f()
44 assert(test2 != 0); in f()
55 test2 = 1; in main()
/llvm-project/libcxx/test/std/algorithms/alg.modifying.operations/alg.generate/
H A Dgenerate_n.pass.cpp49 test2() in test2() function
64 test2<Iter, int>(); in test()
65 test2<Iter, unsigned int>(); in test()
66 test2<Iter, long>(); in test()
67 test2<Iter, unsigned long>(); in test()
68 test2<Iter, UserDefinedIntegral<unsigned> >(); in test()
69 test2<Iter, float>(); in test()
70 test2<Iter, double>(); // this is PR#35498 in test()
71 test2<Iter, long double>(); in test()
/llvm-project/llvm/test/tools/llvm-lib/
H A Darm64ec-implib.test132 RUN: llvm-lib -machine:arm64ec test.lib -out:test2.lib
133 RUN: llvm-nm --print-armap test2.lib | FileCheck -check-prefix=ARMAP %s
324 RUN: llvm-lib -machine:arm64ec -def:test.def -defArm64Native:test2.def -out:test2.lib
325 RUN: llvm-lib -machine:arm64ec -def:test.def -defArm64Native:test2.def -out:test2x.lib
326 RUN: llvm-nm --print-armap test2.lib | FileCheck -check-prefix=ARMAPX2 %s
330 ARMAPX2-NEXT: __IMPORT_DESCRIPTOR_test2 in test2.dll
331 ARMAPX2-NEXT: __NULL_IMPORT_DESCRIPTOR in test2.dll
332 ARMAPX2-NEXT: __imp_otherfunc in test2.dll
333 ARMAPX2-NEXT: otherfunc in test2.dll
334 ARMAPX2-NEXT: test2_NULL_THUNK_DATA in test2.dll
[all …]
/llvm-project/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp13.cpp20 Opaque0 test2(int*);
31 using Base::test2;
32 Opaque1 test2(int*) const;
48 void test2() { in test2() function
49 Opaque0 a = ((Derived*) 0)->test2((int*) 0); in test2()
50 Opaque1 b = ((const Derived*) 0)->test2((int*) 0); in test2()
/llvm-project/clang/test/SemaObjC/
H A Dmethod-conflict-1.m46 - (void) test2:(B*) object;
51 - (void) test2:(A*) object {}
57 - (void) test2:(A*) object;
61 - (void) test2:(id) object {}
66 - (B*) test2; // broken-note {{previous definition is here}} method
71 - (A*) test2 { return 0; } // broken-warning {{conflicting return type in implementation of 'test2'… method
77 - (A*) test2; method
81 - (id) test2 { return 0; } method
H A Dmethod-conflict-2.m9 - (void) test2:(B*) object;
14 - (void) test2:(A*) object {}
19 - (void) test2:(A*) object;
24 - (void) test2:(id) object {}
29 - (B*) test2; // expected-note {{previous definition is here}} method
34 - (A*) test2 { return 0; } // expected-warning {{conflicting return type in implementation of 'test… method
40 - (A*) test2; method
44 - (id) test2 { return 0; } method
/llvm-project/libcxx/test/std/utilities/meta/meta.unary.prop.query/
H A Dvoid_t.pass.cpp29 void test2() in test2() function
65 test2<void, int>(); in main()
66 test2<double, int>(); in main()
67 test2<int&, int>(); in main()
68 test2<Class&, bool>(); in main()
69 test2<void *, int&>(); in main()
/llvm-project/libcxx/test/std/utilities/function.objects/func.memfn/
H A Dmember_function.pass.cpp
H A Dmember_function_const.pass.cpp
/llvm-project/llvm/test/CodeGen/X86/
H A Dtailcall-disable.ll27 define dso_local i32 @test2() nounwind {
29 %call = tail call i32 @test2()
33 ; CALL-LABEL: test2:
35 ; CALL: callq test2
38 ; JMP-LABEL: test2:
40 ; JMP: jmp test2 # TAILCALL
H A Dx86-64-jumps.ll19test2, %foo) to i64), i64 ptrtoint (ptr blockaddress(@test2, %foo) to i64)) to i32), i32 trunc (i6…
21 define void @test2(i32 %i) nounwind ssp {
30 %add.ptr = getelementptr i8, ptr blockaddress(@test2, %foo), i64 %idx.ext ; <ptr> [#uses=1]
/llvm-project/clang/test/CXX/class.access/
H A Dp4.cpp93 namespace test2 { namespace
275 Public test2() { return *this; } in test2() function in test4::Derived1
278 …Public test2(Derived1 &d) { return d; } // expected-error {{'operator Public' is a private member}} in test2() function
283 Public test2() { return *this; } in test2() function in test4::Derived2
286 Public test2(Derived2 &d) { return d; } in test2() function
293 …Public test2(Derived3 &d) { return d; } // expected-error {{'operator Public' is a private member … in test2() function
300 Public test2(Derived4 &d) { return d; } in test2() function
320 void test2() { in test2() function
332 void test2() { in test2() function
356 void test2(const Test2 &t) { in test2() function
[all …]
/llvm-project/llvm/test/CodeGen/ARM/
H A Dsection-name.ll11 ; CHECK: .section .test2,"ax",%progbits
12 ; CHECK: .globl test2
13 ; CHECK: .type test2,%function
14 define void @test2() section ".test2" {
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.merge/
H A Dmerge.pass.cpp63 TEST_CONSTEXPR_CXX20 void test2() in test2() function
75 test2<T, cpp17_input_iterator<const T*> >(); in test1()
76 test2<T, forward_iterator<const T*> >(); in test1()
77 test2<T, bidirectional_iterator<const T*> >(); in test1()
78 test2<T, random_access_iterator<const T*> >(); in test1()
79 test2<T, const T*>(); in test1()
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/
H A Dset_symmetric_difference.pass.cpp63 TEST_CONSTEXPR_CXX20 void test2() in test2() function
75 test2<T, cpp17_input_iterator<const T*> >(); in test1()
76 test2<T, forward_iterator<const T*> >(); in test1()
77 test2<T, bidirectional_iterator<const T*> >(); in test1()
78 test2<T, random_access_iterator<const T*> >(); in test1()
79 test2<T, const T*>(); in test1()
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.intersection/
H A Dset_intersection.pass.cpp63 TEST_CONSTEXPR_CXX20 void test2() in test2() function
75 test2<T, cpp17_input_iterator<const T*> >(); in test1()
76 test2<T, forward_iterator<const T*> >(); in test1()
77 test2<T, bidirectional_iterator<const T*> >(); in test1()
78 test2<T, random_access_iterator<const T*> >(); in test1()
79 test2<T, const T*>(); in test1()
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.difference/
H A Dset_difference.pass.cpp63 TEST_CONSTEXPR_CXX20 void test2() in test2() function
75 test2<T, cpp17_input_iterator<const T*> >(); in test1()
76 test2<T, forward_iterator<const T*> >(); in test1()
77 test2<T, bidirectional_iterator<const T*> >(); in test1()
78 test2<T, random_access_iterator<const T*> >(); in test1()
79 test2<T, const T*>(); in test1()
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/
H A Dset_union.pass.cpp63 TEST_CONSTEXPR_CXX20 void test2() in test2() function
75 test2<T, cpp17_input_iterator<const T*> >(); in test1()
76 test2<T, forward_iterator<const T*> >(); in test1()
77 test2<T, bidirectional_iterator<const T*> >(); in test1()
78 test2<T, random_access_iterator<const T*> >(); in test1()
79 test2<T, const T*>(); in test1()
/llvm-project/lldb/test/API/lang/c/inlines/
H A Dmain.c4 inline void test2(int) __attribute__ ((always_inline));
7 void test2(int b) { in test2() function
17 test2(a + 1); // third breakpoint in test1()
21 test2(42); in main()

12345678910>>...101