HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 201 - 225 of 4017) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/v8/test/mjsunit/regress/
regress-294.js 33 function test(x) { function
43 test("hund");
  /external/v8/test/mjsunit/
string-externalize.js 32 function test() { function
92 // Run the test many times to ensure IC-s don't break things.
94 test();
sum-0-plus-undefined-is-NaN.js 31 * @fileoverview Test addition of 0 and undefined.
36 function test(x, y, expectNaN) { function
44 test(0, 1, false);
45 test(0, undefined, true);
  /libcore/luni/src/test/etc/loading-test-jar/
Test1.java 17 package test; package
23 public static String test() { method in class:Test1
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.binary.search/equal.range/
equal_range.pass.cpp 26 test(Iter first, Iter last, const T& value) function
41 test()
55 test(Iter(v.data()), Iter(v.data()+v.size()), x);
63 test(d, e, x);
65 test<forward_iterator<const int*> >();
66 test<bidirectional_iterator<const int*> >();
67 test<random_access_iterator<const int*> >();
68 test<const int*>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.binary.search/lower.bound/
lower_bound.pass.cpp 25 test(Iter first, Iter last, const T& value) function
36 test()
50 test(Iter(v.data()), Iter(v.data()+v.size()), x);
58 test(d, e, x);
60 test<forward_iterator<const int*> >();
61 test<bidirectional_iterator<const int*> >();
62 test<random_access_iterator<const int*> >();
63 test<const int*>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/
upper_bound.pass.cpp 25 test(Iter first, Iter last, const T& value) function
36 test()
50 test(Iter(v.data()), Iter(v.data()+v.size()), x);
58 test(d, e, x);
60 test<forward_iterator<const int*> >();
61 test<bidirectional_iterator<const int*> >();
62 test<random_access_iterator<const int*> >();
63 test<const int*>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
alloc.pass.cpp 23 test(const Allocator& a) function
32 test<int>(std::allocator<int>());
33 test<NotConstructible>(test_allocator<NotConstructible>(3));
35 test<int>(min_allocator<int>());
36 test<NotConstructible>(min_allocator<NotConstructible>{});
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
construct_size.pass.cpp 22 test(typename C::size_type n) function
36 test<std::vector<int> >(50);
37 test<std::vector<DefaultOnly> >(500);
40 test<std::vector<int, min_allocator<int>> >(50);
41 test<std::vector<DefaultOnly, min_allocator<DefaultOnly>> >(500);
construct_size_value.pass.cpp 22 test(typename C::size_type n, const typename C::value_type& x) function
33 test<std::vector<int> >(50, 3);
34 test<std::vector<int, stack_allocator<int, 50> > >(50, 5);
36 test<std::vector<int, min_allocator<int>> >(50, 3);
construct_size_value_alloc.pass.cpp 20 test(typename C::size_type n, const typename C::value_type& x, function
33 test<std::vector<int> >(50, 3, std::allocator<int>());
35 test<std::vector<int, min_allocator<int>> >(50, 3, min_allocator<int>());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
construct_size.pass.cpp 22 test(typename C::size_type n) function
34 test<std::vector<bool> >(50);
36 test<std::vector<bool, min_allocator<bool>> >(50);
construct_size_value.pass.cpp 22 test(typename C::size_type n, const typename C::value_type& x) function
33 test<std::vector<bool> >(50, 3);
35 test<std::vector<bool, min_allocator<bool>> >(50, 3);
construct_size_value_alloc.pass.cpp 22 test(typename C::size_type n, const typename C::value_type& x, function
35 test<std::vector<bool> >(50, 3, std::allocator<bool>());
37 test<std::vector<bool, min_allocator<bool>> >(50, 3, min_allocator<bool>());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.cons/
container.pass.cpp 21 test(C c) function
28 test(std::vector<int>());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op=/
rv_value.pass.cpp 28 test(C c) function
40 test(std::vector<std::unique_ptr<int> >());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/
container.pass.cpp 21 test(C c) function
28 test(std::list<int>());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/
rv_value.pass.cpp 27 test(C c) function
39 test(std::list<std::unique_ptr<int> >());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.cons/
test.pass.cpp 21 test(C c) function
28 test(std::vector<int>());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/
is_specialized.pass.cpp 10 // test numeric_limits
25 // More convenient to test it here.
31 void test() function
45 test<bool>();
46 test<char>();
47 test<wchar_t>();
49 test<char16_t>();
50 test<char32_t>();
52 test<signed char>();
53 test<unsigned char>()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
denorm_min.pass.cpp 10 // test numeric_limits
19 test(T expected) function
29 test<bool>(false);
30 test<char>(0);
31 test<signed char>(0);
32 test<unsigned char>(0);
33 test<wchar_t>(0);
35 test<char16_t>(0);
36 test<char32_t>(0);
38 test<short>(0)
    [all...]
digits.pass.cpp 10 // test numeric_limits
19 test() function
21 static_assert(std::numeric_limits<T>::digits == expected, "digits test 1");
22 static_assert(std::numeric_limits<const T>::digits == expected, "digits test 2");
23 static_assert(std::numeric_limits<volatile T>::digits == expected, "digits test 3");
24 static_assert(std::numeric_limits<const volatile T>::digits == expected, "digits test 4");
29 test<bool, 1>();
30 test<char, std::numeric_limits<char>::is_signed ? 7 : 8>();
31 test<signed char, 7>();
32 test<unsigned char, 8>()
    [all...]
digits10.pass.cpp 10 // test numeric_limits
19 test() function
21 static_assert(std::numeric_limits<T>::digits10 == expected, "digits10 test 1");
22 static_assert(std::numeric_limits<T>::is_bounded, "digits10 test 5");
23 static_assert(std::numeric_limits<const T>::digits10 == expected, "digits10 test 2");
24 static_assert(std::numeric_limits<const T>::is_bounded, "digits10 test 6");
25 static_assert(std::numeric_limits<volatile T>::digits10 == expected, "digits10 test 3");
26 static_assert(std::numeric_limits<volatile T>::is_bounded, "digits10 test 7");
27 static_assert(std::numeric_limits<const volatile T>::digits10 == expected, "digits10 test 4");
28 static_assert(std::numeric_limits<const volatile T>::is_bounded, "digits10 test 8")
    [all...]
epsilon.pass.cpp 10 // test numeric_limits
20 test(T expected) function
30 test<bool>(false);
31 test<char>(0);
32 test<signed char>(0);
33 test<unsigned char>(0);
34 test<wchar_t>(0);
36 test<char16_t>(0);
37 test<char32_t>(0);
39 test<short>(0)
    [all...]
has_denorm.pass.cpp 10 // test numeric_limits
18 test() function
20 static_assert(std::numeric_limits<T>::has_denorm == expected, "has_denorm test 1");
21 static_assert(std::numeric_limits<const T>::has_denorm == expected, "has_denorm test 2");
22 static_assert(std::numeric_limits<volatile T>::has_denorm == expected, "has_denorm test 3");
23 static_assert(std::numeric_limits<const volatile T>::has_denorm == expected, "has_denorm test 4");
28 test<bool, std::denorm_absent>();
29 test<char, std::denorm_absent>();
30 test<signed char, std::denorm_absent>();
31 test<unsigned char, std::denorm_absent>()
    [all...]

Completed in 317 milliseconds

1 2 3 4 5 6 7 891011>>