Searched refs:Test (Results 51 - 75 of 3856) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2002-03-12-ArrayInitialization.c15 struct Test { int X; double Y; }; struct
17 struct Test Array[10] = { { 2, 12.0 }, { 3, 24.0 } };
H A D2003-06-23-GCC-fold-infinite-recursion.c3 double Test(double A, double B, double C, double D) { function
H A D2002-02-17-ArgumentAddress.c13 struct Test { short X, x; int Y, Z; }; struct
15 int Testing(struct Test *A) {
19 int Test2(int X, struct Test A, int Y) {
22 int Test3(struct Test A, struct Test B) {
26 struct Test Test4(struct Test A) {
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DCssTokensTest.java36 import org.junit.Test;
55 @Test
83 @Test
130 @Test
139 @Test
144 @Test
154 @Test
224 @Test
229 @Test
238 @Test
[all...]
H A DHtmlSanitizerTest.java35 import org.junit.Test;
40 @Test
46 @Test
51 @Test
56 @Test
62 @Test
68 @Test
75 @Test
82 @Test
89 @Test
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Dnasm-forceident.asm7 global $Test
9 $Test:
/external/clang/test/PCH/
H A Dtypo2.cpp7 void func(struct Test);
11 ::Yest *T; // expected-error{{did you mean 'Test'}}
12 // expected-note@7{{'Test' declared here}}
/external/clang/test/SemaCXX/
H A Dprefetch-enum.cpp7 void Test() { function
H A Dwarn-new-overaligned-3.cpp8 struct Test { struct in namespace:test1
18 Test t;
19 new Test; // expected-warning {{type 'test1::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
20 new Test[10]; // expected-warning {{type 'test1::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
/external/junit/src/junit/framework/
H A DTest.java4 * A <em>Test</em> can be run and collect its results.
8 public interface Test { interface
/external/chromium_org/v8/test/mjsunit/compiler/
H A Darray-length.js32 function Test(a0, a2, a5) { function
41 for (var i = 0; i < 5; i++) Test(a0, a2, a5);
43 %OptimizeFunctionOnNextCall(Test);
44 Test(a0, a2, a5);
46 for (var i = 0; i < 5; i++) Test(a0, a2, a5);
47 %OptimizeFunctionOnNextCall(Test);
48 Test(a0, a2, a5);
H A Dsafepoint.js30 function Test(o) { function
39 assertTrue(Test(o) === this);
H A Dthis-property-refs.js28 // Test references to properties of this.
29 function Test() { class
36 Test.prototype.test0 = function () {
40 Test.prototype.test1 = function() {
44 Test.prototype.test2 = function() {
50 var t = new Test();
H A Dpic.js36 function Test(o) { function
45 assertTrue(SetXY(o, Test) === Test);
46 assertTrue(Test === GetX(o), "Test === GetX(o)");
59 Test(o1);
60 Test(o2);
61 Test(o3);
63 %OptimizeFunctionOnNextCall(Test);
64 Test(o
[all...]
/external/valgrind/main/none/tests/x86/
H A Dfaultstatus.stderr.exp2 Test 1: PASS
3 Test 2: PASS
4 Test 3: PASS
5 Test 4: PASS
6 Test 5: disInstr: unhandled instruction bytes: 0x........ 0x........ 0x........ 0x........
/external/chromium_org/v8/test/webkit/
H A Ddictionary-no-cache.js24 description("Test to ensure that we handle caching of prototype chains containing dictionaries.");
26 var Test = function(){}; function
31 Test.prototype['myMethod' + i] = function(){};
34 var test1 = new Test();
38 Test.prototype.myAdditionalMethod = function(){};
39 var test2 = new Test();
47 var Test = function(){};
49 Test.prototype['myMethod' + i] = function(){};
51 var test1 = new Test();
55 delete (Test
30 Test.prototype['myMethod' + i] = function(){}; class
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dheap-checker-death_unittest.sh72 Test() { function
73 # Note: make sure these varnames don't conflict with any vars outside Test()!
99 echo "Test was taking unexpectedly long time to run and so we aborted it."
126 Test 120 0 "^PASS$" "" HEAPCHECK="" || exit 1
129 Test 120 0 "^PASS$" "" HEAP_CHECKER_TEST_NO_THREADS=1 || exit 2
131 # Test that --test_cancel_global_check works
132 Test 20 0 "Canceling .* whole-program .* leak check$" "" \
134 Test 20 0 "Canceling .* whole-program .* leak check$" "" \
137 # Test that very early log messages are present and controllable:
140 Test 6
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dheap-checker-death_unittest.sh72 Test() { function
73 # Note: make sure these varnames don't conflict with any vars outside Test()!
99 echo "Test was taking unexpectedly long time to run and so we aborted it."
126 Test 120 0 "^PASS$" "" HEAPCHECK="" || exit 1
129 Test 120 0 "^PASS$" "" HEAP_CHECKER_TEST_NO_THREADS=1 || exit 2
131 # Test that --test_cancel_global_check works
132 Test 20 0 "Canceling .* whole-program .* leak check$" "" \
134 Test 20 0 "Canceling .* whole-program .* leak check$" "" \
137 # Test that very early log messages are present and controllable:
140 Test 6
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1439135.js29 function Test() { function
40 Test();
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DException.pm1 package Test::ANTLR::Runtime::Exception;
3 use Test::More;
7 BEGIN { extends 'My::Test::Class' }
9 sub constructor : Test(1) {
15 sub constructor_message : Test(1) {
21 sub throw : Test(1) {
/external/junit/src/junit/extensions/
H A DTestDecorator.java4 import junit.framework.Test;
9 * test decorators. Test decorator subclasses can be introduced to add behaviour
13 public class TestDecorator extends Assert implements Test {
14 protected Test fTest;
16 public TestDecorator(Test test) {
40 public Test getTest() {
/external/valgrind/main/none/tests/ppc64/
H A Dtest_isa_2_06_part2.stdout.exp0 Test VSX vector single arg instructions
21 Test VSX floating point compare and basic arithmetic instructions
692 Test bit permute double
695 Test xxsel instruction
699 Test xxspltw instruction
705 Test div extensions
794 Test floating point convert [word | doubleword] unsigned, with round toward zero
943 Test stdbrx instruction
946 Test floating point arithmetic instructions -- with a{d|s}p or m{d|s}p
1478 Test scala
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DTypedArrayTest.java13 import org.junit.Test;
25 @Test
30 @Test
36 @Test
42 @Test
47 @Test
52 @Test
57 @Test
62 @Test
67 @Test
[all...]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestHeteroAST.java30 import org.junit.Test;
32 /** Test hetero trees in parsers and tree parsers */
38 @Test public void testToken() throws Exception {
55 @Test public void testTokenCommonTree() throws Exception {
67 @Test public void testTokenWithQualifiedType() throws Exception {
84 @Test public void testNamedType() throws Exception {
102 @Test public void testTokenWithLabel() throws Exception {
119 @Test public void testTokenWithListLabel() throws Exception {
136 @Test public void testTokenRoot() throws Exception {
153 @Test publi
[all...]
H A DTestSets.java30 import org.junit.Test;
32 /** Test the set stuff in lexer and parser */
40 @Test public void testSeqDoesNotBecomeSet() throws Exception {
54 @Test public void testParserSet() throws Exception {
63 @Test public void testParserNotSet() throws Exception {
72 @Test public void testParserNotToken() throws Exception {
81 @Test public void testParserNotTokenWithLabel() throws Exception {
90 @Test public void testRuleAsSet() throws Exception {
99 @Test public void testRuleAsSetAST() throws Exception {
109 @Test publi
[all...]

Completed in 1530 milliseconds

1234567891011>>