Searched refs:Test (Results 26 - 50 of 975) sorted by relevance

1234567891011>>

/external/junit/src/junit/framework/
H A DTestListener.java10 public void addError(Test test, Throwable t);
14 public void addFailure(Test test, AssertionFailedError t);
18 public void endTest(Test test);
22 public void startTest(Test test);
H A DTest.java4 * A <em>Test</em> can be run and collect its results.
8 public interface Test { interface
/external/stlport/test/unit/
H A D_template.cpp13 class Test : public CPPUNIT_NS::TestCase class in inherits:CPPUNIT_NS::TestCase
15 CPPUNIT_TEST_SUITE(Test);
23 CPPUNIT_TEST_SUITE_REGISTRATION(Test); variable
28 void Test::test()
/external/valgrind/main/helgrind/tests/
H A Dpth_spinlock.stderr.exp2 Test successful.
/external/v8/test/mjsunit/regress/
H A Dregress-95485.js28 function Test() { function
35 with ({Test: i})
42 assertEquals('XY', Test());
H A Dregress-1439135.js29 function Test() { function
40 Test();
/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/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.cpp6 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/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/embunit/inc/
H A DTestRunner.h43 void TestRunner_runTest(Test* test);
H A DTestResult.h42 /*typedef struct __TestResult TestResult;*//* -> Test.h*/
43 /*typedef struct __TestResult* TestResultRef;*//* -> Test.h*/
62 void TestResult_startTest(TestResult* self,Test* test);
63 void TestResult_endTest(TestResult* self,Test* test);
64 void TestResult_addFailure(TestResult* self,Test* test,const char* msg,int line,const char* file);
/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) {
H A DCommonToken.pm1 package Test::ANTLR::Runtime::CommonToken;
3 use Test::More;
9 BEGIN { extends 'My::Test::Class' }
11 sub constructor : Test(1) {
22 sub same : Test(2) {
27 sub not_same : Test(2) {
32 sub bool_eof : Test(1) {
H A DLexer.pm1 package Test::ANTLR::Runtime::Lexer;
3 use Test::More;
10 BEGIN { extends 'My::Test::Class' }
12 sub constructor : 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/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 433 milliseconds

1234567891011>>