Searched refs:test (Results 351 - 375 of 6019) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-643.js28 // Regression test for http://code.google.com/p/v8/issues/detail?id=643.
31 var test = {x:1};
32 var a = test;
34 return test.x;
H A Dregress-update-field-type-attributes.js5 function test(){ function
11 assertTrue(Object.isFrozen(test()));
12 assertTrue(Object.isFrozen(test()));
/external/clang/test/CodeGen/
H A D2002-02-13-ReloadProblem.c12 const char *rangematch(const char *pattern, int test, int c) { argument
14 if ((c <= test) | (tolower(c) <= tolower((unsigned char)test)))
/external/clang/test/Lexer/
H A Dchar-escapes.c3 int test['\\' == 92 ? 1 : -1]; variable
4 int test['\"' == 34 ? 1 : -1]; variable
5 int test['\'' == 39 ? 1 : -1]; variable
6 int test['\?' == 63 ? 1 : -1]; variable
7 int test['\a' == 7 ? 1 : -1]; variable
8 int test['\b' == 8 ? 1 : -1]; variable
9 int test['\e' == 27 ? 1 : -1]; // expected-warning {{non-standard escape}} variable
10 int test['\E' == 27 ? 1 : -1]; // expected-warning {{non-standard escape}} variable
11 int test['\f' == 12 ? 1 : -1]; variable
12 int test['\ variable
13 int test['\\r' == 13 ? 1 : -1]; variable
14 int test['\\t' == 9 ? 1 : -1]; variable
15 int test['\\v' == 11 ? 1 : -1]; variable
16 int test['\\xa' == 10 ? 1 : -1]; variable
17 int test['\\1' == 1 ? 1 : -1]; variable
18 int test['\\(' == 40 ? 1 : -1]; // expected-warning {{non-standard escape}} variable
19 int test['\\{' == 123 ? 1 : -1]; // expected-warning {{non-standard escape}} variable
20 int test['\\[' == 91 ? 1 : -1]; // expected-warning {{non-standard escape}} variable
21 int test['\\%' == 37 ? 1 : -1]; // expected-warning {{non-standard escape}} variable
[all...]
/external/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/
H A Dprecision.pass.cpp19 class test class in inherits:std::ios
23 test() function in class:test
31 const test t;
H A Dwidth.pass.cpp19 class test class in inherits:std::ios
23 test() function in class:test
31 const test t;
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/
H A Dpubsync.pass.cpp21 struct test struct in inherits:std::basic_streambuf
24 test() {} function in struct:test
30 test<char> t;
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/
H A Duflow.pass.cpp22 struct test struct in inherits:std::basic_streambuf
25 test() {} function in struct:test
31 test t;
H A Dunderflow.pass.cpp20 struct test struct in inherits:std::basic_streambuf
23 test() {} function in struct:test
28 test t;
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.pback/
H A Dpbackfail.pass.cpp22 struct test struct in inherits:std::basic_streambuf
25 test() {} function in struct:test
30 test t;
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/
H A Doverflow.pass.cpp20 struct test struct in inherits:std::basic_streambuf
23 test() {} function in struct:test
28 test t;
/external/libcxx/test/re/re.results/re.results.size/
H A Dmax_size.pass.cpp21 test() function
29 test<char>();
30 test<wchar_t>();
/external/libcxx/test/strings/basic.string/string.capacity/
H A Dresize_size.pass.cpp22 test(S s, typename S::size_type n, S expected) function
41 test(S(), 0, S());
42 test(S(), 1, S(1, '\0'));
43 test(S(), 10, S(10, '\0'));
44 test(S(), 100, S(100, '\0'));
45 test(S("12345"), 0, S());
46 test(S("12345"), 2, S("12"));
47 test(S("12345"), 5, S("12345"));
48 test(S("12345"), 15, S("12345\0\0\0\0\0\0\0\0\0\0", 15));
49 test(
[all...]
/external/libcxx/test/strings/basic.string/string.modifiers/string_append/
H A Dpointer_size.pass.cpp23 test(S s, const typename S::value_type* str, typename S::size_type n, S expected) function
34 test(S(), "", 0, S());
35 test(S(), "12345", 3, S("123"));
36 test(S(), "12345", 4, S("1234"));
37 test(S(), "12345678901234567890", 0, S());
38 test(S(), "12345678901234567890", 1, S("1"));
39 test(S(), "12345678901234567890", 3, S("123"));
40 test(S(), "12345678901234567890", 20, S("12345678901234567890"));
42 test(S("12345"), "", 0, S("12345"));
43 test(
[all...]
/external/libcxx/test/strings/basic.string/string.modifiers/string_assign/
H A Dpointer_size.pass.cpp23 test(S s, const typename S::value_type* str, typename S::size_type n, S expected) function
34 test(S(), "", 0, S());
35 test(S(), "12345", 3, S("123"));
36 test(S(), "12345", 4, S("1234"));
37 test(S(), "12345678901234567890", 0, S());
38 test(S(), "12345678901234567890", 1, S("1"));
39 test(S(), "12345678901234567890", 3, S("123"));
40 test(S(), "12345678901234567890", 20, S("12345678901234567890"));
42 test(S("12345"), "", 0, S());
43 test(
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DDeferredLegacyStyleInterpolationTest.cpp20 static bool test(CSSPropertyID propertyID, const String& string) function in class:blink::AnimationDeferredLegacyStyleInterpolationTest
33 EXPECT_TRUE(test(CSSPropertyCaptionSide, "inherit"));
38 EXPECT_FALSE(test(CSSPropertyColor, "rgb(10, 20, 30)"));
39 EXPECT_FALSE(test(CSSPropertyColor, "aqua"));
40 EXPECT_FALSE(test(CSSPropertyColor, "yellow"));
41 EXPECT_FALSE(test(CSSPropertyColor, "transparent"));
42 EXPECT_FALSE(test(CSSPropertyFloodColor, "aliceblue"));
43 EXPECT_FALSE(test(CSSPropertyFloodColor, "yellowgreen"));
44 EXPECT_FALSE(test(CSSPropertyFloodColor, "grey"));
45 EXPECT_TRUE(test(CSSPropertyColo
[all...]
/external/libcxx/test/numerics/numeric.ops/inner.product/
H A Dinner_product.pass.cpp29 test(Iter1 first1, Iter1 last1, Iter2 first2, T init, T x) function
36 test() function
41 test(Iter1(a), Iter1(a), Iter2(b), 0, 0);
42 test(Iter1(a), Iter1(a), Iter2(b), 10, 10);
43 test(Iter1(a), Iter1(a+1), Iter2(b), 0, 6);
44 test(Iter1(a), Iter1(a+1), Iter2(b), 10, 16);
45 test(Iter1(a), Iter1(a+2), Iter2(b), 0, 16);
46 test(Iter1(a), Iter1(a+2), Iter2(b), 10, 26);
47 test(Iter1(a), Iter1(a+sa), Iter2(b), 0, 56);
48 test(Iter
[all...]
H A Dinner_product_comp.pass.cpp31 test(Iter1 first1, Iter1 last1, Iter2 first2, T init, T x) function
39 test() function
44 test(Iter1(a), Iter1(a), Iter2(b), 1, 1);
45 test(Iter1(a), Iter1(a), Iter2(b), 10, 10);
46 test(Iter1(a), Iter1(a+1), Iter2(b), 1, 7);
47 test(Iter1(a), Iter1(a+1), Iter2(b), 10, 70);
48 test(Iter1(a), Iter1(a+2), Iter2(b), 1, 49);
49 test(Iter1(a), Iter1(a+2), Iter2(b), 10, 490);
50 test(Iter1(a), Iter1(a+sa), Iter2(b), 1, 117649);
51 test(Iter
[all...]
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-infoplist-process.py16 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) variable
22 test.set_configuration('One')
23 test.run_gyp('test1.gyp', chdir=CHDIR)
24 test.build('test1.gyp', test.ALL, chdir=CHDIR)
25 info_plist = test.built_file_path(INFO_PLIST_PATH, chdir=CHDIR)
26 test.must_exist(info_plist)
27 test.must_contain(info_plist, 'Foo')
28 test.must_contain(info_plist, 'Bar')
31 test
[all...]
H A Dgyptest-postbuild-copy-bundle.py19 test = TestGyp.TestGyp(formats=['ninja', 'xcode']) variable
22 test.run_gyp('test.gyp', chdir=CHDIR)
24 app_bundle_dir = test.built_file_path('Test app.app', chdir=CHDIR)
34 test.build('test.gyp', 'test_app', chdir=CHDIR)
35 test.must_exist(final_resource_path)
36 test.must_match(final_resource_path,
39 test.must_exist(final_plist_path)
40 test
[all...]
/external/libcxx/test/algorithms/alg.modifying.operations/alg.remove/
H A Dremove_copy.pass.cpp24 test() function
41 test<input_iterator<const int*>, output_iterator<int*> >();
42 test<input_iterator<const int*>, forward_iterator<int*> >();
43 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
44 test<input_iterator<const int*>, random_access_iterator<int*> >();
45 test<input_iterator<const int*>, int*>();
47 test<forward_iterator<const int*>, output_iterator<int*> >();
48 test<forward_iterator<const int*>, forward_iterator<int*> >();
49 test<forward_iterator<const int*>, bidirectional_iterator<int*> >();
50 test<forward_iterato
[all...]
H A Dremove_copy_if.pass.cpp26 test() function
44 test<input_iterator<const int*>, output_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*>, forward_iterator<int*> >();
52 test<forward_iterator<const int*>, bidirectional_iterator<int*> >();
53 test<forward_iterato
[all...]
/external/libcxx/test/algorithms/alg.modifying.operations/alg.replace/
H A Dreplace_copy.pass.cpp27 test() function
43 test<input_iterator<const int*>, output_iterator<int*> >();
44 test<input_iterator<const int*>, forward_iterator<int*> >();
45 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
46 test<input_iterator<const int*>, random_access_iterator<int*> >();
47 test<input_iterator<const int*>, int*>();
49 test<forward_iterator<const int*>, output_iterator<int*> >();
50 test<forward_iterator<const int*>, forward_iterator<int*> >();
51 test<forward_iterator<const int*>, bidirectional_iterator<int*> >();
52 test<forward_iterato
[all...]
H A Dreplace_copy_if.pass.cpp28 test() function
45 test<input_iterator<const int*>, output_iterator<int*> >();
46 test<input_iterator<const int*>, forward_iterator<int*> >();
47 test<input_iterator<const int*>, bidirectional_iterator<int*> >();
48 test<input_iterator<const int*>, random_access_iterator<int*> >();
49 test<input_iterator<const int*>, int*>();
51 test<forward_iterator<const int*>, output_iterator<int*> >();
52 test<forward_iterator<const int*>, forward_iterator<int*> >();
53 test<forward_iterator<const int*>, bidirectional_iterator<int*> >();
54 test<forward_iterato
[all...]
/external/libcxx/test/algorithms/alg.sorting/alg.lex.comparison/
H A Dlexicographical_compare.pass.cpp25 test() function
40 test<input_iterator<const int*>, input_iterator<const int*> >();
41 test<input_iterator<const int*>, forward_iterator<const int*> >();
42 test<input_iterator<const int*>, bidirectional_iterator<const int*> >();
43 test<input_iterator<const int*>, random_access_iterator<const int*> >();
44 test<input_iterator<const int*>, const int*>();
46 test<forward_iterator<const int*>, input_iterator<const int*> >();
47 test<forward_iterator<const int*>, forward_iterator<const int*> >();
48 test<forward_iterator<const int*>, bidirectional_iterator<const int*> >();
49 test<forward_iterato
[all...]

Completed in 319 milliseconds

<<11121314151617181920>>