Searched refs:test (Results 126 - 150 of 10938) sorted by relevance

1234567891011>>

/external/webrtc/webrtc/test/
H A Drun_test.h14 namespace test { namespace in namespace:webrtc
16 // Running a test function on a separate thread, if required by the OS.
17 void RunTest(void(*test)());
19 } // namespace test
/external/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.difference/
H A Dset_difference.pass.cpp28 test() function
51 test<input_iterator<const int*>, input_iterator<const int*>, output_iterator<int*> >();
52 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >();
53 test<input_iterator<const int*>, input_iterator<const int*>, bidirectional_iterator<int*> >();
54 test<input_iterator<const int*>, input_iterator<const int*>, random_access_iterator<int*> >();
55 test<input_iterator<const int*>, input_iterator<const int*>, int*>();
57 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >();
58 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >();
59 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >();
60 test<input_iterato
[all...]
/external/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/
H A Dset_symmetric_difference.pass.cpp29 test() function
50 test<input_iterator<const int*>, input_iterator<const int*>, output_iterator<int*> >();
51 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >();
52 test<input_iterator<const int*>, input_iterator<const int*>, bidirectional_iterator<int*> >();
53 test<input_iterator<const int*>, input_iterator<const int*>, random_access_iterator<int*> >();
54 test<input_iterator<const int*>, input_iterator<const int*>, int*>();
56 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >();
57 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >();
58 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >();
59 test<input_iterato
[all...]
H A Dset_symmetric_difference_comp.pass.cpp31 test() function
54 test<input_iterator<const int*>, input_iterator<const int*>, output_iterator<int*> >();
55 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >();
56 test<input_iterator<const int*>, input_iterator<const int*>, bidirectional_iterator<int*> >();
57 test<input_iterator<const int*>, input_iterator<const int*>, random_access_iterator<int*> >();
58 test<input_iterator<const int*>, input_iterator<const int*>, int*>();
60 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >();
61 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >();
62 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >();
63 test<input_iterato
[all...]
/external/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/
H A Dset_union.pass.cpp28 test() function
49 test<input_iterator<const int*>, input_iterator<const int*>, output_iterator<int*> >();
50 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >();
51 test<input_iterator<const int*>, input_iterator<const int*>, bidirectional_iterator<int*> >();
52 test<input_iterator<const int*>, input_iterator<const int*>, random_access_iterator<int*> >();
53 test<input_iterator<const int*>, input_iterator<const int*>, int*>();
55 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >();
56 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >();
57 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >();
58 test<input_iterato
[all...]
H A Dset_union_comp.pass.cpp30 test() function
51 test<input_iterator<const int*>, input_iterator<const int*>, output_iterator<int*> >();
52 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >();
53 test<input_iterator<const int*>, input_iterator<const int*>, bidirectional_iterator<int*> >();
54 test<input_iterator<const int*>, input_iterator<const int*>, random_access_iterator<int*> >();
55 test<input_iterator<const int*>, input_iterator<const int*>, int*>();
57 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >();
58 test<input_iterator<const int*>, forward_iterator<const int*>, forward_iterator<int*> >();
59 test<input_iterator<const int*>, forward_iterator<const int*>, bidirectional_iterator<int*> >();
60 test<input_iterato
[all...]
/external/libcxx/test/std/input.output/iostreams.base/ios.base/fmtflags.state/
H A Dsetf_fmtflags.pass.cpp19 class test class in inherits:std::ios
23 test() function in class:test
31 test t;
32 assert(t.flags() == (test::skipws | test::dec));
33 test::fmtflags f = t.setf(test::hex | test::right);
34 assert(f == (test::skipws | test
[all...]
H A Dsetf_fmtflags_mask.pass.cpp19 class test class in inherits:std::ios
23 test() function in class:test
31 test t;
32 assert(t.flags() == (test::skipws | test::dec));
33 test::fmtflags f = t.setf(test::hex | test::right, test::dec | test
[all...]
H A Dflags.pass.cpp19 class test class in inherits:std::ios
23 test() function in class:test
31 const test t;
32 assert(t.flags() == (test::skipws | test::dec));
/external/libcxx/test/std/strings/basic.string/string.ops/string_find/
H A Dpointer_size_size.pass.cpp21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
32 test(S(""), "", 0, 0, 0);
33 test(S(""), "abcde", 0, 0, 0);
34 test(S(""), "abcde", 0, 1, S::npos);
35 test(S(""), "abcde", 0, 2, S::npos);
36 test(S(""), "abcde", 0, 4, S::npos);
37 test(S(""), "abcde", 0, 5, S::npos);
38 test(S(""), "abcdeabcde", 0, 0, 0);
39 test(S(""), "abcdeabcde", 0, 1, S::npos);
40 test(
[all...]
/external/libcxx/test/std/strings/basic.string/string.ops/string_find.first.not.of/
H A Dpointer_size_size.pass.cpp21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
32 test(S(""), "", 0, 0, S::npos);
33 test(S(""), "irkhs", 0, 0, S::npos);
34 test(S(""), "kante", 0, 1, S::npos);
35 test(S(""), "oknlr", 0, 2, S::npos);
36 test(S(""), "pcdro", 0, 4, S::npos);
37 test(S(""), "bnrpe", 0, 5, S::npos);
38 test(S(""), "jtdaefblso", 0, 0, S::npos);
39 test(S(""), "oselktgbca", 0, 1, S::npos);
40 test(
[all...]
/external/libcxx/test/std/strings/basic.string/string.ops/string_find.first.of/
H A Dpointer_size_size.pass.cpp21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
32 test(S(""), "", 0, 0, S::npos);
33 test(S(""), "irkhs", 0, 0, S::npos);
34 test(S(""), "kante", 0, 1, S::npos);
35 test(S(""), "oknlr", 0, 2, S::npos);
36 test(S(""), "pcdro", 0, 4, S::npos);
37 test(S(""), "bnrpe", 0, 5, S::npos);
38 test(S(""), "jtdaefblso", 0, 0, S::npos);
39 test(S(""), "oselktgbca", 0, 1, S::npos);
40 test(
[all...]
/external/libcxx/test/std/strings/basic.string/string.ops/string_find.last.of/
H A Dpointer_size_size.pass.cpp21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
32 test(S(""), "", 0, 0, S::npos);
33 test(S(""), "irkhs", 0, 0, S::npos);
34 test(S(""), "kante", 0, 1, S::npos);
35 test(S(""), "oknlr", 0, 2, S::npos);
36 test(S(""), "pcdro", 0, 4, S::npos);
37 test(S(""), "bnrpe", 0, 5, S::npos);
38 test(S(""), "jtdaefblso", 0, 0, S::npos);
39 test(S(""), "oselktgbca", 0, 1, S::npos);
40 test(
[all...]
/external/libcxx/test/std/strings/string.view/string.view.find/
H A Dfind_first_not_of_pointer_size_size.pass.cpp22 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
33 test(S(""), "", 0, 0, S::npos);
34 test(S(""), "irkhs", 0, 0, S::npos);
35 test(S(""), "kante", 0, 1, S::npos);
36 test(S(""), "oknlr", 0, 2, S::npos);
37 test(S(""), "pcdro", 0, 4, S::npos);
38 test(S(""), "bnrpe", 0, 5, S::npos);
39 test(S(""), "jtdaefblso", 0, 0, S::npos);
40 test(S(""), "oselktgbca", 0, 1, S::npos);
41 test(
[all...]
H A Dfind_first_of_pointer_size_size.pass.cpp22 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
33 test(S(""), "", 0, 0, S::npos);
34 test(S(""), "irkhs", 0, 0, S::npos);
35 test(S(""), "kante", 0, 1, S::npos);
36 test(S(""), "oknlr", 0, 2, S::npos);
37 test(S(""), "pcdro", 0, 4, S::npos);
38 test(S(""), "bnrpe", 0, 5, S::npos);
39 test(S(""), "jtdaefblso", 0, 0, S::npos);
40 test(S(""), "oselktgbca", 0, 1, S::npos);
41 test(
[all...]
H A Dfind_last_of_pointer_size_size.pass.cpp22 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
33 test(S(""), "", 0, 0, S::npos);
34 test(S(""), "irkhs", 0, 0, S::npos);
35 test(S(""), "kante", 0, 1, S::npos);
36 test(S(""), "oknlr", 0, 2, S::npos);
37 test(S(""), "pcdro", 0, 4, S::npos);
38 test(S(""), "bnrpe", 0, 5, S::npos);
39 test(S(""), "jtdaefblso", 0, 0, S::npos);
40 test(S(""), "oselktgbca", 0, 1, S::npos);
41 test(
[all...]
H A Dfind_pointer_size_size.pass.cpp22 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
33 test(S(""), "", 0, 0, 0);
34 test(S(""), "abcde", 0, 0, 0);
35 test(S(""), "abcde", 0, 1, S::npos);
36 test(S(""), "abcde", 0, 2, S::npos);
37 test(S(""), "abcde", 0, 4, S::npos);
38 test(S(""), "abcde", 0, 5, S::npos);
39 test(S(""), "abcdeabcde", 0, 0, 0);
40 test(S(""), "abcdeabcde", 0, 1, S::npos);
41 test(
[all...]
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/
H A Dresult_type.pass.cpp24 test() function
33 test<unsigned short>();
34 test<unsigned int>();
35 test<unsigned long>();
36 test<unsigned long long>();
/external/ltp/testcases/network/nfsv4/acl/
H A Dcleanusers.py7 test = RandomGen() variable
8 test.getUserList()
9 test.getGroupList()
10 test.cleanUsers()
11 test.cleanGroups()
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/
H A Dcopy.pass.cpp36 test() function
52 test<input_iterator<const int*>, output_iterator<int*> >();
53 test<input_iterator<const int*>, input_iterator<int*> >();
54 test<input_iterator<const int*>, forward_iterator<int*> >();
55 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
56 test<input_iterator<const int*>, random_access_iterator<int*> >();
57 test<input_iterator<const int*>, int*>();
59 test<forward_iterator<const int*>, output_iterator<int*> >();
60 test<forward_iterator<const int*>, input_iterator<int*> >();
61 test<forward_iterato
[all...]
H A Dcopy_if.pass.cpp43 test() function
59 test<input_iterator<const int*>, output_iterator<int*> >();
60 test<input_iterator<const int*>, input_iterator<int*> >();
61 test<input_iterator<const int*>, forward_iterator<int*> >();
62 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
63 test<input_iterator<const int*>, random_access_iterator<int*> >();
64 test<input_iterator<const int*>, int*>();
66 test<forward_iterator<const int*>, output_iterator<int*> >();
67 test<forward_iterator<const int*>, input_iterator<int*> >();
68 test<forward_iterato
[all...]
H A Dcopy_n.pass.cpp39 test() function
55 test<input_iterator<const int*>, output_iterator<int*> >();
56 test<input_iterator<const int*>, input_iterator<int*> >();
57 test<input_iterator<const int*>, forward_iterator<int*> >();
58 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
59 test<input_iterator<const int*>, random_access_iterator<int*> >();
60 test<input_iterator<const int*>, int*>();
62 test<forward_iterator<const int*>, output_iterator<int*> >();
63 test<forward_iterator<const int*>, input_iterator<int*> >();
64 test<forward_iterato
[all...]
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_insert/
H A Dsize_pointer.pass.cpp24 test(S s, typename S::size_type pos, const typename S::value_type* str, S expected) function
55 test(S(""), 0, "", S(""));
56 test(S(""), 0, "12345", S("12345"));
57 test(S(""), 0, "1234567890", S("1234567890"));
58 test(S(""), 0, "12345678901234567890", S("12345678901234567890"));
59 test(S(""), 1, "", S("can't happen"));
60 test(S(""), 1, "12345", S("can't happen"));
61 test(S(""), 1, "1234567890", S("can't happen"));
62 test(S(""), 1, "12345678901234567890", S("can't happen"));
63 test(
[all...]
H A Dsize_size_char.pass.cpp24 test(S s, typename S::size_type pos, typename S::size_type n, function
56 test(S(""), 0, 0, '1', S(""));
57 test(S(""), 0, 5, '1', S("11111"));
58 test(S(""), 0, 10, '1', S("1111111111"));
59 test(S(""), 0, 20, '1', S("11111111111111111111"));
60 test(S(""), 1, 0, '1', S("can't happen"));
61 test(S(""), 1, 5, '1', S("can't happen"));
62 test(S(""), 1, 10, '1', S("can't happen"));
63 test(S(""), 1, 20, '1', S("can't happen"));
64 test(
[all...]
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
H A Diter_iter_pointer.pass.cpp25 test(S s, typename S::size_type pos1, typename S::size_type n1, const typename S::value_type* str, S expected) function
41 test(S(""), 0, 0, "", S(""));
42 test(S(""), 0, 0, "12345", S("12345"));
43 test(S(""), 0, 0, "1234567890", S("1234567890"));
44 test(S(""), 0, 0, "12345678901234567890", S("12345678901234567890"));
45 test(S("abcde"), 0, 0, "", S("abcde"));
46 test(S("abcde"), 0, 0, "12345", S("12345abcde"));
47 test(S("abcde"), 0, 0, "1234567890", S("1234567890abcde"));
48 test(S("abcde"), 0, 0, "12345678901234567890", S("12345678901234567890abcde"));
49 test(
[all...]

Completed in 310 milliseconds

1234567891011>>