Home
last modified time | relevance | path

Searched +defs:main +defs:test (Results 1 – 25 of 1631) sorted by relevance

12345678910>>...66

/external/ltp/testcases/kernel/syscalls/set_thread_area/
Dset_thread_area01.c38 struct test { struct
57 static struct test tests[] = { argument
66 int main(int argc, char *argv[]) in main() function
106 int main(void) in main() function
/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
35 int main() in main() function
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() argument
42 test(const test& q, const allocator_type& a) : base(q, a) {} in test() argument
46 int main() in main() function
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() 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() argument
45 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
48 int main() in main() function
/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() 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() argument
32 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
35 int main() in main() function
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
46 int main() in main() function
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() argument
45 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
48 int main() in main() function
/external/cronet/buildtools/third_party/libc++/trunk/test/std/containers/container.adaptors/queue/queue.cons.alloc/
Dctor_alloc.pass.cpp20 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() argument
26 test(const container_type& container, const test_allocator<int>& a) : base(container, a) {} in test() argument
28test(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
34 int main(int, char**) in main() function
/external/cronet/buildtools/third_party/libc++/trunk/test/std/containers/container.adaptors/stack/stack.cons.alloc/
Dctor_alloc.pass.cpp20 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
34 int main(int, char**) in main() function
/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() argument
32 test(const value_compare& comp, const container_type& c, in test() function
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() argument
39 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
44 int main() in main() function
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() function
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() argument
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
44 int main() in main() function
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() function
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
49 int main() in main() function
/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
31 int main() in main() function
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() function
25 test(const char* gnext_arg, std::streamsize n) in test() argument
31 int main() in main() function
35 test sb(buf, 0); in main() argument
/external/boringssl/src/crypto/fipsmodule/bn/
Dcheck_bn_tests.go17 package main package
29 type test struct { struct
30 LineNumber int
31 Type string
32 Values map[string]*big.Int
39 test test member
130 func checkKeys(t test, keys ...string) bool {
157 func checkResult(t test, expr, key string, r *big.Int) {
163 func main() { func
/external/cronet/third_party/boringssl/src/crypto/fipsmodule/bn/
Dcheck_bn_tests.go17 package main package
29 type test struct { struct
30 LineNumber int
31 Type string
32 Values map[string]*big.Int
39 test test member
130 func checkKeys(t test, keys ...string) bool {
157 func checkResult(t test, expr, key string, r *big.Int) {
163 func main() { func
/external/cronet/buildtools/third_party/libc++/trunk/test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
Dctor_comp_alloc.pass.cpp21 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() function
29 test(const value_compare& compare, const test_allocator<int>& a) in test() argument
31 test(const value_compare& compare, const container_type& container, in test() argument
34 test(const value_compare& compare, container_type&& container, in test() function
36 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function
38 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
43 int main(int, char**) in main() function
Dctor_alloc.pass.cpp21 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() function
38 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
43 int main(int, char**) in main() function
/external/cronet/buildtools/third_party/libc++/trunk/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
Dunderflow.pass.cpp20 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
32 int main(int, char**) in main() function
36 test sb(buf, 0, buf + 3); 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
46 int main() in main() function
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
42 int main() in main() function
45 test t; in main() argument
Dsbumpc.pass.cpp22 struct test struct
27 test() {} in test() argument
42 int main() in main() function
45 test t; in main() argument
Dsnextc.pass.cpp22 struct test struct
27 test() {} in test() argument
42 int main() in main() function
45 test t; in main() argument
Din_avail.pass.cpp23 struct test struct
28 test() {} in test() argument
42 int main() in main() function
45 test<char> t; in main() argument
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/
Dsputbackc.pass.cpp22 struct test struct
27 test() {} in test() function
42 int main() in main() function
45 test t; in main() argument

12345678910>>...66