HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 676 - 700 of 4552) sorted by null

<<21222324252627282930>>

  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string_oplt=/
string_string.pass.cpp 23 test(const S& lhs, const S& rhs, bool x) function
32 test(S(""), S(""), true);
33 test(S(""), S("abcde"), true);
34 test(S(""), S("abcdefghij"), true);
35 test(S(""), S("abcdefghijklmnopqrst"), true);
36 test(S("abcde"), S(""), false);
37 test(S("abcde"), S("abcde"), true);
38 test(S("abcde"), S("abcdefghij"), true);
39 test(S("abcde"), S("abcdefghijklmnopqrst"), true);
40 test(S("abcdefghij"), S(""), false)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.ops/string.accessors/
get_allocator.pass.cpp 22 test(const S& s, const typename S::allocator_type& a) function
32 test(S(""), A());
33 test(S("abcde", A(1)), A(1));
34 test(S("abcdefghij", A(2)), A(2));
35 test(S("abcdefghijklmnopqrst", A(3)), A(3));
41 test(S(""), A());
42 test(S("abcde", A()), A());
43 test(S("abcdefghij", A()), A());
44 test(S("abcdefghijklmnopqrst", A()), A());
  /external/libcxx/test/std/strings/basic.string/string.ops/string_compare/
pointer.pass.cpp 30 test(const S& s, const typename S::value_type* str, int x) function
39 test(S(""), "", 0);
40 test(S(""), "abcde", -5);
41 test(S(""), "abcdefghij", -10);
42 test(S(""), "abcdefghijklmnopqrst", -20);
43 test(S("abcde"), "", 5);
44 test(S("abcde"), "abcde", 0);
45 test(S("abcde"), "abcdefghij", -5);
46 test(S("abcde"), "abcdefghijklmnopqrst", -15);
47 test(S("abcdefghij"), "", 10)
    [all...]
string.pass.cpp 30 test(const S& s, const S& str, int x) function
39 test(S(""), S(""), 0);
40 test(S(""), S("abcde"), -5);
41 test(S(""), S("abcdefghij"), -10);
42 test(S(""), S("abcdefghijklmnopqrst"), -20);
43 test(S("abcde"), S(""), 5);
44 test(S("abcde"), S("abcde"), 0);
45 test(S("abcde"), S("abcdefghij"), -5);
46 test(S("abcde"), S("abcdefghijklmnopqrst"), -15);
47 test(S("abcdefghij"), S(""), 10)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.ops/string_find/
char_size.pass.cpp 21 test(const S& s, typename S::value_type c, typename S::size_type pos, function
31 test(const S& s, typename S::value_type c, typename S::size_type x) function
42 test(S(""), 'c', 0, S::npos);
43 test(S(""), 'c', 1, S::npos);
44 test(S("abcde"), 'c', 0, 2);
45 test(S("abcde"), 'c', 1, 2);
46 test(S("abcde"), 'c', 2, 2);
47 test(S("abcde"), 'c', 4, S::npos);
48 test(S("abcde"), 'c', 5, S::npos);
49 test(S("abcde"), 'c', 6, S::npos)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.ops/string_rfind/
char_size.pass.cpp 21 test(const S& s, typename S::value_type c, typename S::size_type pos, function
31 test(const S& s, typename S::value_type c, typename S::size_type x) function
42 test(S(""), 'b', 0, S::npos);
43 test(S(""), 'b', 1, S::npos);
44 test(S("abcde"), 'b', 0, S::npos);
45 test(S("abcde"), 'b', 1, 1);
46 test(S("abcde"), 'b', 2, 1);
47 test(S("abcde"), 'b', 4, 1);
48 test(S("abcde"), 'b', 5, 1);
49 test(S("abcde"), 'b', 6, 1)
    [all...]
  /external/libcxx/test/std/strings/basic.string/
types.pass.cpp 12 // Test nested types and default template args:
45 test() function
76 test<test_traits<char>, test_allocator<char> >();
77 test<std::char_traits<wchar_t>, std::allocator<wchar_t> >();
83 test<std::char_traits<char>, min_allocator<char> >();
  /external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.isbind/
is_bind_expression.pass.cpp 18 test(const T&) function
27 test<true>(std::bind(C()));
28 test<true>(std::bind(C(), std::placeholders::_2));
29 test<true>(std::bind<int>(C()));
30 test<false>(1);
31 test<false>(std::placeholders::_2);
is_placeholder.pass.cpp 18 test(const T&) function
27 test<1>(std::placeholders::_1);
28 test<2>(std::placeholders::_2);
29 test<3>(std::placeholders::_3);
30 test<4>(std::placeholders::_4);
31 test<5>(std::placeholders::_5);
32 test<6>(std::placeholders::_6);
33 test<7>(std::placeholders::_7);
34 test<8>(std::placeholders::_8);
35 test<9>(std::placeholders::_9)
    [all...]
  /external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.place/
placeholders.pass.cpp 19 test(const T& t) function
21 // Test default constructible.
24 // Test copy constructible.
33 test(std::placeholders::_1);
34 test(std::placeholders::_2);
35 test(std::placeholders::_3);
36 test(std::placeholders::_4);
37 test(std::placeholders::_5);
38 test(std::placeholders::_6);
39 test(std::placeholders::_7)
    [all...]
  /external/libcxx/test/std/utilities/function.objects/unord.hash/
integral.pass.cpp 28 test() function
45 test<bool>();
46 test<char>();
47 test<signed char>();
48 test<unsigned char>();
49 test<char16_t>();
50 test<char32_t>();
51 test<wchar_t>();
52 test<short>();
53 test<unsigned short>()
    [all...]
  /external/libcxx/test/std/utilities/time/time.clock/time.clock.hires/
consistency.pass.cpp 10 // This test uses new symbols that were not defined in the libc++ shipped on
24 void test(const _Tp &) {} function
33 test(std::chrono::high_resolution_clock::is_steady);
  /external/libcxx/test/std/utilities/time/time.clock/time.clock.steady/
consistency.pass.cpp 10 // This test uses new symbols that were not defined in the libc++ shipped on
25 void test(const _Tp &) {} function
34 test(std::chrono::steady_clock::is_steady);
  /external/libcxx/test/std/utilities/time/time.clock/time.clock.system/
consistency.pass.cpp 10 // This test uses new symbols that were not defined in the libc++ shipped on
24 void test(const _Tp &) {} function
34 test(std::chrono::system_clock::is_steady);
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.cast/
duration_cast.pass.cpp 25 test(const FromDuration& f, const ToDuration& d) function
36 test(std::chrono::milliseconds(7265000), std::chrono::hours(2));
37 test(std::chrono::milliseconds(7265000), std::chrono::minutes(121));
38 test(std::chrono::milliseconds(7265000), std::chrono::seconds(7265));
39 test(std::chrono::milliseconds(7265000), std::chrono::milliseconds(7265000));
40 test(std::chrono::milliseconds(7265000), std::chrono::microseconds(7265000000LL));
41 test(std::chrono::milliseconds(7265000), std::chrono::nanoseconds(7265000000000LL));
42 test(std::chrono::milliseconds(7265000),
44 test(std::chrono::duration<int, std::ratio<2, 3> >(9),
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.cons/
default.pass.cpp 25 test() function
37 test<std::chrono::duration<Rep> >();
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.special/
max.pass.cpp 23 void test() function
41 test<std::chrono::duration<int> >();
42 test<std::chrono::duration<Rep> >();
min.pass.cpp 23 void test() function
41 test<std::chrono::duration<int> >();
42 test<std::chrono::duration<Rep> >();
zero.pass.cpp 22 void test() function
40 test<std::chrono::duration<int> >();
41 test<std::chrono::duration<Rep> >();
  /external/libcxx/test/std/utilities/time/time.traits/time.traits.is_fp/
treat_as_floating_point.pass.cpp 19 test() function
29 test<int>();
30 test<unsigned>();
31 test<char>();
32 test<bool>();
33 test<float>();
34 test<double>();
35 test<long double>();
36 test<A>();
  /external/libcxx/test/std/utilities/time/time.traits/time.traits.specializations/
duration.pass.cpp 22 test() function
30 test<std::chrono::duration<int, std::ratio<1, 100> >,
33 test<std::chrono::duration<long, std::ratio<1, 100> >,
36 test<std::chrono::duration<char, std::ratio<1, 30> >,
39 test<std::chrono::duration<double, std::ratio<21, 1> >,
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_alpha.c 59 LLVMValueRef test; local
87 test = lp_build_cmp(&bld, func, alpha, ref);
89 lp_build_name(test, "alpha_mask");
91 lp_build_mask_update(mask, test);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/test/
IntegrationTest.java 16 package org.mockftpserver.test;
19 * Marker interface for integration test
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/test/
IntegrationTest.java 16 package org.mockftpserver.test;
19 * Marker interface for integration test
  /external/openssh/openbsd-compat/regress/
strduptest.c 23 test(const char *a) function
40 test("");
41 test("a");
42 test("\0");
43 test("abcdefghijklmnopqrstuvwxyz");

Completed in 1280 milliseconds

<<21222324252627282930>>