Home
last modified time | relevance | path

Searched defs:test (Results 1 – 25 of 4480) sorted by relevance

12345678910>>...180

/external/clang/test/Lexer/
Dchar-escapes.c3 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
9 int test['\e' == 27 ? 1 : -1]; // expected-warning {{non-standard escape}} variable
10 int test['\E' == 27 ? 1 : -1]; // expected-warning {{non-standard escape}} variable
11 int test['\f' == 12 ? 1 : -1]; variable
12 int test['\n' == 10 ? 1 : -1]; variable
[all …]
/external/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
Dctor_comp_alloc.pass.cpp22 struct test struct
25 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument
29 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument
30 test(const value_compare& comp, const test_allocator<int>& a) in test() function
32 test(const value_compare& comp, const container_type& c, in test() function
35 test(const value_compare& comp, container_type&& c, in test() function
37 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument
39 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
Dctor_alloc.pass.cpp22 struct test struct
25 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument
29 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument
30 test(const value_compare& comp, const test_allocator<int>& a) in test() function
32 test(const value_compare& comp, const container_type& c, in test() argument
35 test(const value_compare& comp, container_type&& c, in test() argument
37 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function
39 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
Dctor_comp_rcont_alloc.pass.cpp33 struct test struct
36 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument
40 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument
41 test(const value_compare& comp, const test_allocator<int>& a) in test() argument
43 test(const value_compare& comp, const container_type& c, in test() function
46 test(const value_compare& comp, container_type&& c, in test() function
48 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument
50 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
Dctor_move_alloc.pass.cpp36 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& comp, const test_allocator<int>& a) in test() function
46 test(const value_compare& comp, const container_type& c, in test() function
48 test(const value_compare& comp, container_type&& c, in test() argument
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
Dctor_comp_cont_alloc.pass.cpp33 struct test struct
36 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument
40 explicit test(const test_allocator<int>& a) : base(a) {} in test() function
41 test(const value_compare& comp, const test_allocator<int>& a) in test() function
43 test(const value_compare& comp, const container_type& c, in test() argument
46 test(const value_compare& comp, container_type&& c, in test() function
48 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument
50 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
Dctor_copy_alloc.pass.cpp31 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& comp, const test_allocator<int>& a) in test() function
41 test(const value_compare& comp, const container_type& c, in test() function
43 test(const test& q, const test_allocator<int>& a) : base(q, a) {} in test() argument
44 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
/external/icu/icu4c/source/test/intltest/
Ditmajor.cpp58 IntlTestUtilities test; in runIndexedTest() local
67 IntlTestNormalize test; in runIndexedTest() local
77 IntlTestCollator test; in runIndexedTest() local
87 RegexTest test; in runIndexedTest() local
97 IntlTestFormat test; in runIndexedTest() local
107 IntlTestTransliterator test; in runIndexedTest() local
117 IntlTestRBBI test; in runIndexedTest() local
126 IntlTestRBNF test; in runIndexedTest() local
135 RbnfRoundTripTest test; in runIndexedTest() local
145 ICUServiceTest test; in runIndexedTest() local
[all …]
/external/libcxx/test/std/containers/container.adaptors/queue/queue.cons.alloc/
Dctor_alloc.pass.cpp21 struct test struct
24 typedef std::queue<int, std::deque<int, test_allocator<int> > > base; argument
26 explicit test(const test_allocator<int>& a) : base(a) {} in test() function
27 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() argument
29 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() function
30 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function
32 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
Dctor_rcontainer_alloc.pass.cpp37 struct test struct
41 typedef test_allocator<MoveOnly> allocator_type; argument
44 explicit test(const allocator_type& a) : base(a) {} in test() function
45 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() function
46 test(container_type&& c, const allocator_type& a) : base(std::move(c), 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
Dctor_rqueue_alloc.pass.cpp37 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& c, const allocator_type& a) : base(c, a) {} in test() argument
46 test(container_type&& c, const allocator_type& a) : base(std::move(c), 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
Dctor_container_alloc.pass.cpp34 struct test struct
39 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument
40 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() function
42 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() argument
43 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function
45 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
Dctor_queue_alloc.pass.cpp33 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& c, const allocator_type& a) : base(c, a) {} in test() function
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
/external/libcxx/test/std/containers/container.adaptors/stack/stack.cons.alloc/
Dctor_alloc.pass.cpp21 struct test struct
24 typedef std::stack<int, std::deque<int, test_allocator<int> > > base; argument
26 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument
27 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() function
29 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() argument
30 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function
32 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
Dctor_rcontainer_alloc.pass.cpp37 struct test struct
41 typedef test_allocator<MoveOnly> allocator_type; argument
44 explicit test(const allocator_type& a) : base(a) {} in test() function
45 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() argument
46 test(container_type&& c, const allocator_type& a) : base(std::move(c), 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
Dctor_rqueue_alloc.pass.cpp37 struct test struct
41 typedef test_allocator<MoveOnly> allocator_type; argument
44 explicit test(const allocator_type& a) : base(a) {} in test() function
45 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() argument
46 test(container_type&& c, const allocator_type& a) : base(std::move(c), 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
Dctor_copy_alloc.pass.cpp33 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& c, const allocator_type& a) : base(c, 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
Dctor_container_alloc.pass.cpp34 struct test struct
39 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument
40 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() argument
42 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() function
43 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function
45 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
/external/autotest/docs/
Dbest-practices.md90 ### Control files
107 ### Running tests in suites
122 ### Pure python
149 ### Reporting failures
161 ### Considerations when writing client-side tests
188 ### Reusing code (“fixtures”)
195 ### Considerations when writing server-side tests
203 ### When/why to write a server-side test
215 ### Control files for server-side tests
246 ### Operations on Host objects
[all …]
/external/clang/test/CXX/class.access/class.protected/
Dp1.cpp17 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
51 void A::test(A &a) { in test() function in test1::A
55 void B::test(B &b) { in test() function in test1::B
59 void C::test(C &c) { in test() function in test1::C
63 void D::test(D &d) { in test() function in test1::D
85 void A::test(A &a) { in test() function in test2::A
89 void B::test(A &a) { in test() function in test2::B
[all …]
/external/clang/test/SemaCXX/
Dundefined-inline.cpp6 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 …]
/external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
Dunderflow.pass.cpp19 struct test struct
23 test(char* gnext_arg, std::streamsize n, char* pbeg_arg = 0) in test() function
25 test(const char* gnext_arg, std::streamsize n) in test() argument
35 test sb(buf, 0, buf + 3); in main() argument
Dpbackfail.pass.cpp19 struct test struct
23 test(char* gnext_arg, std::streamsize n, char* pbeg_arg = 0) in test() argument
25 test(const char* gnext_arg, std::streamsize n) in test() function
35 test sb(buf, 0); in main() argument
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/
Dsputc.pass.cpp22 struct test struct
27 test() {} in test() argument
49 test t; in main() argument
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.get/
Dsgetc.pass.cpp22 struct test struct
27 test() {} in test() argument
45 test t; in main() argument

12345678910>>...180