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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/re/re.results/re.results.all/
get_allocator.pass.cpp 23 test(const Allocator& a) function
33 test<char>(test_allocator<std::sub_match<const char*> >(3));
34 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3));
  /external/libcxx/test/std/re/re.results/re.results.const/
allocator.pass.cpp 23 test(const Allocator& a) function
33 test<char>(test_allocator<std::sub_match<const char*> >(3));
34 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3));
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_insert/
iter_char.pass.cpp 26 test(S& s, typename S::const_iterator p, typename S::value_type c, S expected) function
44 test(s, s.begin(), '1', S("1"));
45 test(s, s.begin(), 'a', S("a1"));
46 test(s, s.end(), 'b', S("a1b"));
47 test(s, s.end()-1, 'c', S("a1cb"));
48 test(s, s.end()-2, 'd', S("a1dcb"));
49 test(s, s.end()-3, '2', S("a12dcb"));
50 test(s, s.end()-4, '3', S("a132dcb"));
51 test(s, s.end()-5, '4', S("a1432dcb"));
52 test(s, s.begin()+1, '5', S("a51432dcb"))
    [all...]
  /external/libcxx/test/std/utilities/memory/allocator.tag/
allocator_arg.pass.cpp 17 void test(std::allocator_arg_t) {} function
21 test(std::allocator_arg);
  /external/libcxx/test/std/utilities/ratio/ratio.ratio/
ratio.pass.cpp 10 // test ratio: The static data members num and den shall have thcommon
16 void test() function
24 test<1, 1, 1, 1>();
25 test<1, 10, 1, 10>();
26 test<10, 10, 1, 1>();
27 test<10, 1, 10, 1>();
28 test<12, 4, 3, 1>();
29 test<12, -4, -3, 1>();
30 test<-12, 4, -3, 1>();
31 test<-12, -4, 3, 1>()
    [all...]
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.cons/
rep.pass.cpp 24 test(R r) function
36 test<std::chrono::duration<int> >(5);
37 test<std::chrono::duration<int, std::ratio<3, 2> > >(5);
38 test<std::chrono::duration<Rep, std::ratio<3, 2> > >(Rep(3));
39 test<std::chrono::duration<double, std::ratio<2, 3> > >(5.5);
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/
tuple.include.array.pass.cpp 28 void test() function
46 test<std::array<int, 5>, 5, int, 0>();
47 test<std::array<int, 5>, 5, int, 1>();
48 test<std::array<const char *, 4>, 4, const char *, 3>();
49 test<std::array<volatile int, 4>, 4, volatile int, 3>();
50 test<std::array<char *, 3>, 3, char *, 1>();
51 test<std::array<char *, 3>, 3, char *, 2>();
tuple.include.utility.pass.cpp 25 void test() function
43 test<std::pair<int, int>, 2, int, 0>();
44 test<std::pair<int, int>, 2, int, 1>();
45 test<std::pair<const int, int>, 2, int, 1>();
46 test<std::pair<int, volatile int>, 2, volatile int, 1>();
47 test<std::pair<char *, int>, 2, char *, 0>();
48 test<std::pair<char *, int>, 2, int, 1>();
tuple_element.pass.cpp 27 void test() function
43 test<std::tuple<int>, 0, int>();
44 test<std::tuple<char, int>, 0, char>();
45 test<std::tuple<char, int>, 1, int>();
46 test<std::tuple<int*, char, int>, 0, int*>();
47 test<std::tuple<int*, char, int>, 1, char>();
48 test<std::tuple<int*, char, int>, 2, int>();
tuple_size.pass.cpp 24 void test() function
38 test<std::tuple<>, 0>();
39 test<std::tuple<int>, 1>();
40 test<std::tuple<char, int>, 2>();
41 test<std::tuple<char, char*, int>, 3>();
  /external/llvm/test/MC/ARM/
target-expressions.s 16 .type test,%function
17 test: label
48 @ CHECK-LABEL: test:
  /external/v8/test/mjsunit/
array-push-unshift-read-only-length.js 7 function test(mode) { function
42 test("fast properties");
44 test("normalized");
array-shift3.js 8 function test(a) { function
12 assertEquals(["element 1",{}], test([0,,{}]));
13 assertEquals(["element 1",10], test([9,,10]));
14 %OptimizeFunctionOnNextCall(test);
15 assertEquals(["element 1",10], test([9,,10]));
bounds-checks-elimination.js 10 function test(f, arg1, arg2, expected) { function
17 test(function f0() {
21 test(function f1() {
25 test(function f2() {
29 test(function f3() {
33 test(function f4(b) {
37 test(function f5(b) {
41 test(function f6(b) {
47 test(function f7(b) {
53 test(function f8(b)
    [all...]
global-load-from-eval-in-with.js 32 function test(obj, source) { function
38 // Test shadowing in eval scope.
39 test({ x: 42 }, "assertEquals(42, x)");
40 test({ y: 42 }, "assertEquals(27, x)");
42 // Test shadowing in local scope inside an eval scope.
43 test({ x: 42 }, "function f() { assertEquals(42, x) }; f();");
44 test({ y: 42 }, "function f() { assertEquals(27, x) }; f();");
46 // Test shadowing in local scope inside an eval scope. Deeper nesting
48 test({ x: 42 }, "function f() { function g() { assertEquals(42, x) }; g() }; f();");
49 test({ y: 42 }, "function f() { function g() { assertEquals(27, x) }; g() }; f();")
    [all...]
  /external/v8/test/mjsunit/compiler/
alloc-object-huge.js 32 // Test that huge constructors (more than 256 this assignments) are
35 // Test huge constructor when being inlined into hydrogen.
36 function test() { function
39 test();
40 test();
41 %OptimizeFunctionOnNextCall(test);
42 var o = test();
46 // Test huge constructor with specialized constructor stub.
regress-3260426.js 29 // (false in a test context). This should happen even when inlined
33 function test() { return always_false() ? 0 : 1; } function
35 assertEquals(1, test());
regress-loadfield.js 30 // Regression test for GVN on field loads.
38 function test(a) { function
64 test(a);
66 %OptimizeFunctionOnNextCall(test);
67 test(a);
69 test("");
regress-rep-change.js 30 // Regression test for the case where a phi has two input operands with
33 function test(start) { function
43 test(0);
46 %OptimizeFunctionOnNextCall(test);
47 test(0);
  /external/v8/test/mjsunit/es6/
generators-poisoned-properties.js 9 function test(f) { function
33 function *sloppy() { test(sloppy); }
34 function *strict() { "use strict"; test(strict); }
36 test(sloppy);
37 test(strict);
  /external/v8/test/mjsunit/regress/
regress-1132.js 28 // Test the case when exception is thrown from the parser when lazy
33 // If the test starts to fail in Genesis, consider increasing this constant.
35 function test() { function
37 test(1, test(1));
46 test();
regress-1166.js 34 function test(x) { return observe(1, ((false || false), x + 1)); } function
36 for (var i = 0; i < 5; ++i) test(0);
37 %OptimizeFunctionOnNextCall(test);
38 test(0);
40 test("a");
regress-1181.js 28 // The first count times, test is called with an integer argument and
29 // crankshaft produces code for int32 representation. Test that the
34 function test(x) { function
41 %DeoptimizeFunction(test);
45 i = test(x / 100);
regress-1237.js 33 function test(x) { function
37 for (var i = 0; i < 5; ++i) test(0);
38 %OptimizeFunctionOnNextCall(test);
39 test(0);
41 test("a");
regress-1531.js 28 // Regression test for computing elements keys of arguments object. Should
30 function test(x) { function
36 assertEquals(["0", "10"], test(0));
38 // Regression test for lookup after delete of a dictionary-mode arguments

Completed in 604 milliseconds

1 2 3 4 5 6 7 8 91011>>