Searched refs:test (Results 251 - 275 of 6019) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dcomparison-in-effect-context-deopt.js31 %DeoptimizeFunction(test);
41 function test(x) { function
45 test(x);
46 %OptimizeFunctionOnNextCall(test);
47 assertEquals("result", test(x));
H A Dregress-1166.js34 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");
H A Dregress-125515.js30 function test(a) { function
35 test(a);
36 test(a);
40 test(a);
41 test(a);
H A Dregress-397.js32 function test() { function
40 test();
41 test();
42 %OptimizeFunctionOnNextCall(test);
43 test();
H A Dregress-crbug-145961.js28 // This test causes the operands to be passed in as Integer32 registers.
30 function test() { function
36 assertEquals(0, test());
37 assertEquals(0, test());
38 %OptimizeFunctionOnNextCall(test);
39 assertEquals(0, test());
/external/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/
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/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/libcxx/test/algorithms/alg.modifying.operations/alg.copy/
H A Dcopy.pass.cpp23 test() function
39 test<input_iterator<const int*>, output_iterator<int*> >();
40 test<input_iterator<const int*>, input_iterator<int*> >();
41 test<input_iterator<const int*>, forward_iterator<int*> >();
42 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
43 test<input_iterator<const int*>, random_access_iterator<int*> >();
44 test<input_iterator<const int*>, int*>();
46 test<forward_iterator<const int*>, output_iterator<int*> >();
47 test<forward_iterator<const int*>, input_iterator<int*> >();
48 test<forward_iterato
[all...]
H A Dcopy_if.pass.cpp30 test() function
46 test<input_iterator<const int*>, output_iterator<int*> >();
47 test<input_iterator<const int*>, input_iterator<int*> >();
48 test<input_iterator<const int*>, forward_iterator<int*> >();
49 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
50 test<input_iterator<const int*>, random_access_iterator<int*> >();
51 test<input_iterator<const int*>, int*>();
53 test<forward_iterator<const int*>, output_iterator<int*> >();
54 test<forward_iterator<const int*>, input_iterator<int*> >();
55 test<forward_iterato
[all...]
H A Dcopy_n.pass.cpp23 test() function
39 test<input_iterator<const int*>, output_iterator<int*> >();
40 test<input_iterator<const int*>, input_iterator<int*> >();
41 test<input_iterator<const int*>, forward_iterator<int*> >();
42 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
43 test<input_iterator<const int*>, random_access_iterator<int*> >();
44 test<input_iterator<const int*>, int*>();
46 test<forward_iterator<const int*>, output_iterator<int*> >();
47 test<forward_iterator<const int*>, input_iterator<int*> >();
48 test<forward_iterato
[all...]
/external/libcxx/test/algorithms/alg.modifying.operations/alg.transform/
H A Dunary_transform.pass.cpp26 test() function
43 test<input_iterator<const int*>, output_iterator<int*> >();
44 test<input_iterator<const int*>, input_iterator<int*> >();
45 test<input_iterator<const int*>, forward_iterator<int*> >();
46 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
47 test<input_iterator<const int*>, random_access_iterator<int*> >();
48 test<input_iterator<const int*>, int*>();
50 test<forward_iterator<const int*>, output_iterator<int*> >();
51 test<forward_iterator<const int*>, input_iterator<int*> >();
52 test<forward_iterato
[all...]
/external/libcxx/test/strings/basic.string/string.modifiers/string_insert/
H A Dsize_pointer.pass.cpp23 test(S s, typename S::size_type pos, const typename S::value_type* str, S expected) function
45 test(S(""), 0, "", S(""));
46 test(S(""), 0, "12345", S("12345"));
47 test(S(""), 0, "1234567890", S("1234567890"));
48 test(S(""), 0, "12345678901234567890", S("12345678901234567890"));
49 test(S(""), 1, "", S("can't happen"));
50 test(S(""), 1, "12345", S("can't happen"));
51 test(S(""), 1, "1234567890", S("can't happen"));
52 test(S(""), 1, "12345678901234567890", S("can't happen"));
53 test(
[all...]
H A Dsize_size_char.pass.cpp23 test(S s, typename S::size_type pos, typename S::size_type n, function
46 test(S(""), 0, 0, '1', S(""));
47 test(S(""), 0, 5, '1', S("11111"));
48 test(S(""), 0, 10, '1', S("1111111111"));
49 test(S(""), 0, 20, '1', S("11111111111111111111"));
50 test(S(""), 1, 0, '1', S("can't happen"));
51 test(S(""), 1, 5, '1', S("can't happen"));
52 test(S(""), 1, 10, '1', S("can't happen"));
53 test(S(""), 1, 20, '1', S("can't happen"));
54 test(
[all...]
/external/chromium_org/tools/gyp/test/generator-output/
H A Dgyptest-mac-bundle.py16 test = TestGyp.TestGyp(formats=[]) variable
20 test.writable(test.workpath(MAC_BUNDLE_DIR), False)
21 test.run_gyp('test.gyp',
22 '--generator-output=' + test.workpath(GYPFILES_DIR),
24 test.writable(test.workpath(MAC_BUNDLE_DIR), True)
26 test.build('test
[all...]
/external/chromium_org/tools/gyp/test/sibling/
H A Dgyptest-all.py12 test = TestGyp.TestGyp() variable
14 test.run_gyp('build/all.gyp', chdir='src')
16 test.build('build/all.gyp', test.ALL, chdir='src')
24 if test.format in ('make', 'ninja', 'cmake'):
27 if test.format == 'xcode':
29 test.run_built_executable('program1',
33 if test.format == 'xcode':
35 test.run_built_executable('program2',
39 test
[all...]
/external/chromium_org/tools/gyp/test/win/
H A Dgyptest-link-nxcompat.py16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable
19 test.run_gyp('nxcompat.gyp', chdir=CHDIR)
20 test.build('nxcompat.gyp', test.ALL, chdir=CHDIR)
23 return test.run_dumpbin('/headers', test.built_file_path(exe, chdir=CHDIR))
27 test.fail_test()
31 test.fail_test()
35 test.fail_test()
37 test
[all...]
H A Dgyptest-link-outputfile.py16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable
19 test.run_gyp('outputfile.gyp', chdir=CHDIR)
20 test.build('outputfile.gyp', test.ALL, chdir=CHDIR)
22 test.built_file_must_exist('blorp.exe', chdir=CHDIR)
23 test.built_file_must_exist('blorp.dll', chdir=CHDIR)
24 test.built_file_must_exist('subdir/blorp.exe', chdir=CHDIR)
25 test.built_file_must_exist('blorp.lib', chdir=CHDIR)
26 test.built_file_must_exist('subdir/blorp.lib', chdir=CHDIR)
28 test
[all...]
/external/libcxx/test/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...]
H A Diter_iter_size_char.pass.cpp25 test(S s, typename S::size_type pos1, typename S::size_type n1, typename S::size_type n2, function
42 test(S(""), 0, 0, 0, '3', S(""));
43 test(S(""), 0, 0, 5, '3', S("33333"));
44 test(S(""), 0, 0, 10, '3', S("3333333333"));
45 test(S(""), 0, 0, 20, '3', S("33333333333333333333"));
46 test(S("abcde"), 0, 0, 0, '3', S("abcde"));
47 test(S("abcde"), 0, 0, 5, '3', S("33333abcde"));
48 test(S("abcde"), 0, 0, 10, '3', S("3333333333abcde"));
49 test(S("abcde"), 0, 0, 20, '3', S("33333333333333333333abcde"));
50 test(
[all...]
H A Diter_iter_pointer_size.pass.cpp25 test(S s, typename S::size_type pos1, typename S::size_type n1, const typename S::value_type* str, function
42 test(S(""), 0, 0, "", 0, S(""));
43 test(S(""), 0, 0, "12345", 0, S(""));
44 test(S(""), 0, 0, "12345", 1, S("1"));
45 test(S(""), 0, 0, "12345", 2, S("12"));
46 test(S(""), 0, 0, "12345", 4, S("1234"));
47 test(S(""), 0, 0, "12345", 5, S("12345"));
48 test(S(""), 0, 0, "1234567890", 0, S(""));
49 test(S(""), 0, 0, "1234567890", 1, S("1"));
50 test(
[all...]
/external/libcxx/test/strings/basic.string/string.ops/string_find.first.not.of/
H A Dchar_size.pass.cpp21 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(""), 'q', 0, S::npos);
43 test(S(""), 'q', 1, S::npos);
44 test(S("kitcj"), 'q', 0, 0);
45 test(S("qkamf"), 'q', 1, 1);
46 test(S("nhmko"), 'q', 2, 2);
47 test(S("tpsaf"), 'q', 4, 4);
48 test(S("lahfb"), 'q', 5, S::npos);
49 test(
[all...]
/external/chromium_org/tools/gyp/test/cflags/
H A Dgyptest-cflags.py12 In this test, gyp and build both run in same local environment.
20 test = TestGyp.TestGyp(formats=FORMATS) variable
25 test.run_gyp('cflags.gyp')
26 test.build('cflags.gyp')
29 test.run_built_executable('cflags', stdout=expect)
30 test.run_built_executable('cflags_host', stdout=expect)
32 test.sleep()
36 test.run_gyp('cflags.gyp')
37 test.build('cflags.gyp')
40 test
[all...]
/external/chromium_org/tools/gyp/test/intermediate_dir/
H A Dgyptest-intermediate-dir.py13 test = TestGyp.TestGyp() variable
15 test.run_gyp('test.gyp', chdir='src')
16 test.build('test.gyp', 'target1', chdir='src')
18 intermediate_file1 = test.read('src/outfile.txt')
19 test.must_contain(intermediate_file1, 'target1')
21 shared_intermediate_file1 = test.read('src/shared_outfile.txt')
22 test.must_contain(shared_intermediate_file1, 'shared_target1')
24 test
[all...]
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-postbuild.py16 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) variable
18 test.run_gyp('test.gyp', chdir='postbuilds')
20 test.build('test.gyp', test.ALL, chdir='postbuilds')
22 # See comment in test/subdirectory/gyptest-subdir-default.py
23 if test.format == 'xcode':
29 test.built_file_must_exist('el.a_touch',
30 type=test
[all...]
/external/chromium_org/tools/gyp/test/make/
H A Dgyptest-noload.py18 test = TestGyp.TestGyp(formats=['make']) variable
20 test.run_gyp('all.gyp', chdir='noload')
22 test.relocate('noload', 'relocate/noload')
24 test.build('build/all.gyp', test.ALL, chdir='relocate/noload')
25 test.run_built_executable('exe', chdir='relocate/noload',
28 # Just sanity test that NO_LOAD=lib doesn't break anything.
29 test.build('build/all.gyp', test.ALL, chdir='relocate/noload',
31 test
[all...]

Completed in 438 milliseconds

<<11121314151617181920>>