Searched defs:Test (Results 1 - 25 of 34) sorted by relevance

12

/external/v8/test/mjsunit/regress/
H A Dregress-1439135.js29 function Test() { function
40 Test();
/external/v8/test/mjsunit/compiler/
H A Dthis-property-refs.js30 // Test references to properties of this.
31 function Test() { class
38 Test.prototype.test0 = function () {
42 Test.prototype.test1 = function() {
46 Test.prototype.test2 = function() {
52 var t = new Test();
H A Dsimple-bailouts.js30 function Test() { class
41 // Test operations expected to stay on the fast path. Enumerate all binary
43 Test.prototype.test0 = function () {
47 Test.prototype.test1 = function() {
51 Test.prototype.test2 = function() {
55 Test.prototype.test3 = function() {
59 Test.prototype.test4 = function() {
63 Test.prototype.test5 = function() {
67 Test.prototype.test6 = function() {
71 Test
[all...]
/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()
H A Dequal_test.cpp67 struct Test { struct
69 Test();
72 Test(int val) : value(val) {} function in struct:Test
79 bool operator < (const Test& v1, int v2)
82 bool operator < (int v1, const Test& v2)
86 bool operator < (const Test& v1, const Test& v2)
105 vector<Test> tv;
106 vector<Test>::iterator it;
107 pair<vector<Test>
[all...]
/external/clearsilver/cs/
H A Dtest7.cs2 LOOP Test external variable declarations
/external/webkit/WebKitTools/WebKitAPITest/
H A DTest.h33 class Test { class in namespace:WebKitAPITest
35 ~Test() { }
44 class TEST_CLASS_NAME(testCaseName, testName) : public Test { \
/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/skia/tests/
H A DTest.cpp1 #include "Test.h"
15 void Reporter::startTest(Test* test) {
34 void Reporter::endTest(Test* test) {
42 Test::Test() : fReporter(NULL) {} function in class:Test
44 Test::~Test() {
48 void Test::setReporter(Reporter* r) {
52 const char* Test::getName() {
59 bool Test
[all...]
H A DTest.h10 class Test;
30 void startTest(Test*);
32 void endTest(Test*);
57 virtual void onStart(Test*) {}
59 virtual void onEnd(Test*) {}
62 Test* fCurrTest;
70 class Test { class in namespace:skiatest
72 Test();
73 virtual ~Test();
90 typedef SkTRegistry<Test*, voi
[all...]
/external/chromium/third_party/icu/source/test/intltest/
H A Drndmcoll.cpp84 TESTCASE(0, Test);
136 void RandomCollatorTest::Test(){ function in class:RandomCollatorTest
H A Didnaconf.cpp280 void IdnaConfTest::Test(void){ function in class:IdnaConfTest
340 void IdnaConfTest::Test(void) function in class:IdnaConfTest
348 TESTCASE(0,Test);
/external/gtest/test/
H A Dgtest_nc.cc33 // Test. Code here is NOT supposed to compile. Its purpose is to
34 // verify that certain incorrect usages of the Google Test API are
63 class MyTest : public testing::Test {
74 class MyTest : public testing::Test {
77 testing::Test::Setup(); // Tries to call SetUp() in the parent class.
113 class FooTest : public testing::Test {
117 class BarTest : public testing::Test {
132 class FooTest : public testing::Test {
136 class BarTest : public testing::Test {
151 class FooTest : public testing::Test {
211 void Test() { function
220 void Test() { function
[all...]
/external/icu4c/test/intltest/
H A Drndmcoll.cpp84 TESTCASE(0, Test);
136 void RandomCollatorTest::Test(){ function in class:RandomCollatorTest
H A Didnaconf.cpp280 void IdnaConfTest::Test(void){ function in class:IdnaConfTest
340 void IdnaConfTest::Test(void) function in class:IdnaConfTest
348 TESTCASE(0,Test);
/external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/
H A DTest.java8 public class Test { class
/external/protobuf/gtest/test/
H A Dgtest_nc.cc33 // Test. Code here is NOT supposed to compile. Its purpose is to
34 // verify that certain incorrect usages of the Google Test API are
63 class MyTest : public testing::Test {
74 class MyTest : public testing::Test {
77 testing::Test::Setup(); // Tries to call SetUp() in the parent class.
113 class FooTest : public testing::Test {
117 class BarTest : public testing::Test {
132 class FooTest : public testing::Test {
136 class BarTest : public testing::Test {
151 class FooTest : public testing::Test {
211 void Test() { function
220 void Test() { function
[all...]
/external/embunit/inc/
H A DTest.h33 * $Id: Test.h,v 1.4 2004/02/10 16:19:29 arms22 Exp $
54 typedef struct __Test Test; typedef in typeref:struct:__Test
61 #define Test_name(s) ((Test*)s)->isa->name(s)
62 #define Test_run(s,r) ((Test*)s)->isa->run(s,r)
63 #define Test_countTestCases(s) ((Test*)s)->isa->countTestCases(s)
/external/icu4c/samples/citer/
H A Dciter.cpp36 class Test class
43 void Test::TestUChariter() {
110 void Test::TestStringiter() {
180 Test t;
183 u_fprintf(out, "Test::TestUCharIter()\n");
188 u_fprintf(out, "Test::TestStringchariter()\n");
/external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/webkit/
H A Dbasesteps.py15 Test = buildStepWithDefaultTimeout(shell.Test) variable
H A Dsteps.py1 from webkit.basesteps import ShellCommand, SVN, Test, Compile, UploadCommand namespace
22 class LayoutTest(Test):
29 Test.commandComplete(self, cmd)
51 class JavaScriptCoreTest(Test):
59 Test.commandComplete(self, cmd)
/external/chromium/base/gfx/
H A Drect_unittest.cc9 typedef testing::Test RectTest;
115 static const struct Test { struct
173 static const struct Test { struct
/external/v8/test/cctest/
H A Dtest-alloc.cc90 // Test that we can allocate in old pointer space and code space.
99 static Handle<Object> Test() { function
108 Handle<Object> o = Test();
/external/skia/src/xml/
H A DSkJS.cpp214 void SkJS::Test(void* hwnd) { function in class:SkJS
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest.h32 // The Google C++ Testing Framework (Google Test)
34 // This header file defines the public API for Google Test. It should be
35 // included by any test program that uses Google Test.
47 // Acknowledgment: Google Test borrowed the idea of automatic test
54 // The following platform macros are used throughout Google Test:
100 // This flag controls whether Google Test includes Google Test internal
193 // In Google Test, a unit test program contains one or many TestCases, and
197 // explicitly derive from Test - the TEST macro automatically does
200 // The only time you derive from Test i
214 class Test { class in namespace:testing
[all...]

Completed in 287 milliseconds

12