Searched defs:test1 (Results 151 - 175 of 760) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A Denable_if.cpp14 void test1(int i) __attribute__((enable_if(i == 1, ""))) {} function
H A Dinstrument-functions.cpp4 int test1(int x) { function
H A Dmangle-nullptr-arg.cpp6 void test1(IP<nullptr>) {} function
H A Druntimecc.cpp31 namespace test1 { namespace
H A Dvarargs.cpp6 // test1 should be compmiled to be a varargs function in the IR even
11 int test1(...) { function in namespace:test0
17 test1(0);
21 namespace test1 { namespace
H A Dvolatile.cpp24 namespace test1 { namespace
/external/clang/test/Sema/
H A Dassign.c3 void *test1(void) { return 0; } function
H A Ddecl-invalid.c26 register int test1; // expected-error {{illegal storage class on file-scoped variable}} variable
H A Dext_vector_comparisons.c5 static int4 test1() { function
/external/clang/test/SemaCXX/
H A Dexception-spec-no-exceptions.cpp15 namespace test1 { namespace
H A Dmicrosoft-super.cpp19 namespace test1 { namespace
30 __super::foo(); // expected-error {{'foo' is a private member of 'test1::A'}}
H A Dno-exceptions.cpp23 namespace test1 { namespace
H A Dpragma-visibility.cpp3 namespace test1 __attribute__((visibility("hidden"))) { // expected-note{{surrounding namespace with visibility attribute starts here}} namespace
H A Dwarn-vla.cpp3 void test1(int n) { function
/external/e2fsprogs/lib/ext2fs/
H A Dtst_byteswap.c29 __u16 test1[] = { variable
56 printf("swab16(0x%04x) = 0x%04x\n", test1[i],
57 ext2fs_swab16(test1[i]));
58 if (ext2fs_swab16(test1[i]) != test1[i+1]) {
60 ext2fs_swab16(test1[i]), test1[i+1]);
63 if (ext2fs_swab16(test1[i+1]) != test1[i]) {
65 ext2fs_swab16(test1[
[all...]
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.move/
H A Dmove.pass.cpp45 test1() function
99 test1<input_iterator<std::unique_ptr<int>*>, output_iterator<std::unique_ptr<int>*> >();
100 test1<input_iterator<std::unique_ptr<int>*>, input_iterator<std::unique_ptr<int>*> >();
101 test1<input_iterator<std::unique_ptr<int>*>, forward_iterator<std::unique_ptr<int>*> >();
102 test1<input_iterator<std::unique_ptr<int>*>, bidirectional_iterator<std::unique_ptr<int>*> >();
103 test1<input_iterator<std::unique_ptr<int>*>, random_access_iterator<std::unique_ptr<int>*> >();
104 test1<input_iterator<std::unique_ptr<int>*>, std::unique_ptr<int>*>();
106 test1<forward_iterator<std::unique_ptr<int>*>, output_iterator<std::unique_ptr<int>*> >();
107 test1<forward_iterator<std::unique_ptr<int>*>, input_iterator<std::unique_ptr<int>*> >();
108 test1<forward_iterato
[all...]
H A Dmove_backward.pass.cpp45 test1() function
76 test1<bidirectional_iterator<std::unique_ptr<int>*>, bidirectional_iterator<std::unique_ptr<int>*> >();
77 test1<bidirectional_iterator<std::unique_ptr<int>*>, random_access_iterator<std::unique_ptr<int>*> >();
78 test1<bidirectional_iterator<std::unique_ptr<int>*>, std::unique_ptr<int>*>();
80 test1<random_access_iterator<std::unique_ptr<int>*>, bidirectional_iterator<std::unique_ptr<int>*> >();
81 test1<random_access_iterator<std::unique_ptr<int>*>, random_access_iterator<std::unique_ptr<int>*> >();
82 test1<random_access_iterator<std::unique_ptr<int>*>, std::unique_ptr<int>*>();
84 test1<std::unique_ptr<int>*, bidirectional_iterator<std::unique_ptr<int>*> >();
85 test1<std::unique_ptr<int>*, random_access_iterator<std::unique_ptr<int>*> >();
86 test1<st
[all...]
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/
H A Dremove.pass.cpp46 test1() function
77 test1<forward_iterator<std::unique_ptr<int>*> >();
78 test1<bidirectional_iterator<std::unique_ptr<int>*> >();
79 test1<random_access_iterator<std::unique_ptr<int>*> >();
80 test1<std::unique_ptr<int>*>();
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.all_of/
H A Dall_of.pass.cpp21 struct test1 struct
35 input_iterator<const int*>(ia + sa), test1()) == true);
37 input_iterator<const int*>(ia), test1()) == true);
43 input_iterator<const int*>(ia + sa), test1()) == false);
45 input_iterator<const int*>(ia), test1()) == true);
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.any_of/
H A Dany_of.pass.cpp21 struct test1 struct
35 input_iterator<const int*>(ia + sa), test1()) == true);
37 input_iterator<const int*>(ia), test1()) == false);
43 input_iterator<const int*>(ia + sa), test1()) == true);
45 input_iterator<const int*>(ia), test1()) == false);
51 input_iterator<const int*>(ia + sa), test1()) == false);
53 input_iterator<const int*>(ia), test1()) == false);
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.none_of/
H A Dnone_of.pass.cpp21 struct test1 struct
35 input_iterator<const int*>(ia + sa), test1()) == false);
37 input_iterator<const int*>(ia), test1()) == true);
43 input_iterator<const int*>(ia + sa), test1()) == false);
45 input_iterator<const int*>(ia), test1()) == true);
51 input_iterator<const int*>(ia + sa), test1()) == true);
53 input_iterator<const int*>(ia), test1()) == true);
/external/libcxx/test/std/containers/sequences/vector/vector.cons/
H A Dconstruct_default.pass.cpp50 test1(const typename C::allocator_type& a) function
69 test1<std::vector<int, test_allocator<int> > >(test_allocator<int>(3));
70 test1<std::vector<NotConstructible, test_allocator<NotConstructible> > >
81 test1<std::vector<int, min_allocator<int> > >(min_allocator<int>{});
82 test1<std::vector<NotConstructible, min_allocator<NotConstructible> > >
93 test1<std::vector<int, explicit_allocator<int> > >(explicit_allocator<int>{});
94 test1<std::vector<NotConstructible, explicit_allocator<NotConstructible> > >
/external/libcxx/test/std/containers/sequences/vector.bool/
H A Dconstruct_default.pass.cpp45 test1(const typename C::allocator_type& a) function
62 test1<std::vector<bool, test_allocator<bool> > >(test_allocator<bool>(3));
67 test1<std::vector<bool, min_allocator<bool> > >(min_allocator<bool>());
71 test1<std::vector<bool, explicit_allocator<bool> > >(explicit_allocator<bool>());
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.disc/
H A Dcopy.pass.cpp21 test1() function
52 test1();
H A Dctor_result_type.pass.cpp22 test1() function
49 test1();

Completed in 419 milliseconds

1234567891011>>