Searched refs:test (Results 1 - 25 of 4228) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dbool-init.c4 _Bool test = &test; variable
H A D2003-06-29-MultipleFunctionDefinition.c5 extern __inline__ void test() { } function
7 void test() { function
H A Dblockwithlocalstatic.c4 // CHECK: @block_block_invoke.test = internal global i32
6 static int test=0;
7 return test;
9 // CHECK: @block1_block_invoke_2.test = internal global i32
11 static int test = 2;
14 // CHECK: @block2_block_invoke_3.test = internal global i32
16 static int test = 5;
17 return test;
H A D2007-09-14-NegatePointer.c4 int foo(unsigned char *test) { argument
5 return 0U - (unsigned int )test;
H A D2008-02-08-bitfield-bug.c3 struct test { struct
8 struct test *t;
/external/clang/test/SemaCXX/
H A Dshort-wchar-sign.cpp7 int test[(wchar_t(-1)<wchar_t(0)) == (sizeof(wchar_t) == 4) ?1:-1]; variable
/external/clang/test/Preprocessor/
H A Dpr2086.c3 #define test macro
5 #define test macro
8 #ifdef test
H A Dpr2086.h1 #ifndef test
4 #ifdef test
5 #undef test macro
H A Dinclude-macros.c1 // RUN: %clang_cc1 -E -Dtest=FOO -imacros %S/pr2086.h %s | grep 'HERE: test'
3 // This should not be expanded into FOO because pr2086.h undefs 'test'.
4 HERE: test
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-260.js32 function test() { eval("while(!function () { var x; });"); } function
33 test();
H A Dregress-6-9-regexp.js30 assertFalse(/[6-9]/.test('2'));
/external/v8/test/mjsunit/regress/
H A Dregress-260.js32 function test() { eval("while(!function () { var x; });"); } function
33 test();
H A Dregress-6-9-regexp.js30 assertFalse(/[6-9]/.test('2'));
/external/chromium_org/v8/test/webkit/
H A Dregexp-negative-special-characters.js25 "This test checks Unicode in negative RegExp character classes."
28 function test(pattern, str, expected_length) { function
38 test("\\s", " \\t\\f\\v\\r\\n", 0); // ASCII whitespace.
39 test("\\S", "Проверка", 0); // Cyrillic letters are non-whitespace...
40 test("\\s", "Проверка", 8); // ...and they aren't whitespace.
41 test("[\\s]", "Проверка", 8);
42 test("[\\S]", "Проверка", 0);
43 test("[^\\s]", "Проверка", 0);
44 test("[^\\S]", "Проверка", 8);
45 test("[\\
[all...]
/external/valgrind/main/none/tests/x86/
H A Daad_aam.stdout.exp0 test begins
2 test completed
/external/chromium_org/v8/test/mjsunit/
H A Dlocal-load-from-eval.js30 function test(source) { function
35 test("assertEquals(27, x);");
36 test("(function() { assertEquals(27, x) })();");
37 test("(function() { var y = 42; eval('1'); assertEquals(42, y); })();");
38 test("(function() { var y = 42; eval('var y = 2; var z = 2;'); assertEquals(2, y); })();");
/external/v8/test/mjsunit/
H A Dlocal-load-from-eval.js30 function test(source) { function
35 test("assertEquals(27, x);");
36 test("(function() { assertEquals(27, x) })();");
37 test("(function() { var y = 42; eval('1'); assertEquals(42, y); })();");
38 test("(function() { var y = 42; eval('var y = 2; var z = 2;'); assertEquals(2, y); })();");
/external/chromium_org/v8/test/webkit/fast/js/
H A Dnumeric-escapes-in-string-literals.js28 function test(_stringLiteral, _nonStrictResult, _strictResult) function
45 test("\\0", "\x00", "\x00");
46 test("\\1", "\x01");
47 test("\\7", "\x07");
48 test("\\8", "8");
49 test("\\9", "9");
53 test("\\00", "\x00");
54 test("\\000", "\x00");
55 test("\\0000", "\x000");
57 test("\\0
[all...]
/external/chromium_org/tools/gyp/test/many-actions/
H A Dgyptest-many-actions-unsorted.py14 test = TestGyp.TestGyp() variable
16 test.run_gyp('many-actions-unsorted.gyp')
17 test.build('many-actions-unsorted.gyp', test.ALL)
19 test.built_file_must_exist('generated_%d.h' % i)
23 test.touch('file1')
24 test.build('many-actions-unsorted.gyp', test.ALL)
26 test.touch('file0')
27 test
[all...]
/external/chromium_org/tools/gyp/test/hello/
H A Dgyptest-all.py14 test = TestGyp.TestGyp(workdir='workarea_all') variable
16 test.run_gyp('hello.gyp')
18 test.build('hello.gyp', test.ALL)
20 test.run_built_executable('hello', stdout="Hello, world!\n")
22 test.up_to_date('hello.gyp', test.ALL)
24 test.pass_test()
/external/chromium_org/tools/gyp/test/same-rule-output-file-name/
H A Dgyptest-all.py13 test = TestGyp.TestGyp() variable
15 test.run_gyp('subdirs.gyp', chdir='src')
17 test.relocate('src', 'relocate/src')
19 test.build('subdirs.gyp', test.ALL, chdir='relocate/src')
20 test.must_exist('relocate/src/subdir1/rule.txt')
21 test.must_exist('relocate/src/subdir2/rule.txt')
23 test.pass_test()
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-3260426.js29 // (false in a test context). This should happen even when inlined
33 function test() { return always_false() ? 0 : 1; } function
35 assertEquals(1, test());
/external/v8/test/mjsunit/compiler/
H A Dregress-3260426.js29 // (false in a test context). This should happen even when inlined
33 function test() { return always_false() ? 0 : 1; } function
35 assertEquals(1, test());
/external/chromium_org/tools/gyp/test/configurations/basics/
H A Dgyptest-configurations.py13 test = TestGyp.TestGyp() variable
15 test.run_gyp('configurations.gyp')
17 test.set_configuration('Release')
18 test.build('configurations.gyp')
19 test.run_built_executable('configurations', stdout="Release configuration\n")
21 test.set_configuration('Debug')
22 test.build('configurations.gyp')
23 test.run_built_executable('configurations', stdout="Debug configuration\n")
25 test.set_configuration('Foo')
26 test
[all...]
/external/chromium_org/tools/gyp/test/dependencies/
H A Dgyptest-double-dependency.py9 shared_library targets. Regression test for http://crbug.com/122588
14 test = TestGyp.TestGyp() variable
16 test.run_gyp('double_dependency.gyp')
19 test.pass_test()

Completed in 953 milliseconds

1234567891011>>