Searched defs:Test (Results 1 - 25 of 240) sorted by last modified time

12345678910

/external/vixl/tools/
H A Dpresubmit.py142 class Test: class in inherits:
212 lint = Test('cpp lint', 'cpplint.py ' + lint_args + tracked_files)
227 tester.AddTest(Test('cctest release (debugger)',
229 tester.AddTest(Test('cctest debug (debugger)',
231 tester.AddTest(Test('cctest release (simulator)',
233 tester.AddTest(Test('cctest debug (simulator)',
236 tester.AddTest(Test('cctest release', command('--cctest=cctest')))
237 tester.AddTest(Test('cctest debug', command('--cctest=cctest_g')))
H A Dtest.py71 class Test: class in inherits:
130 return map(Test, names)
/external/valgrind/main/VEX/priv/
H A Dhost_arm64_defs.h655 } Test; member in union:__anon31763::__anon31764
/external/valgrind/main/drd/tests/
H A Dstd_list.cpp2 * Test program that triggers strcpy() from one thread and a memory allocation
39 class Test { class
61 Test *casted = reinterpret_cast<Test*>(instance);
70 Test *casted = reinterpret_cast<Test*>(instance);
82 Test instance1;
83 Test instance2;
H A Dtsan_unittest.cpp158 struct Test{ struct
161 Test(void_func_void_t f, int flags) function in struct:Test
165 Test() : f_(0), flags_(0) {} function in struct:Test
181 std::map<int, Test> TheMapOfTests;
191 TheMapOfTests[id] = Test(f, flags);
238 for (std::map<int,Test>::iterator it = TheMapOfTests.begin();
244 for (std::map<int,Test>::iterator it = TheMapOfTests.begin();
261 for (std::map<int,Test>::iterator it = TheMapOfTests.begin();
2083 // test41: TN. Test for race that appears when loading a dynamic symbol. {{{1
3639 // test75: TN. Test fo
[all...]
/external/valgrind/main/memcheck/tests/
H A Dnew_override.cpp4 class Test { class
18 Test *toto;
22 toto = new Test[2];
/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/skia/src/pathops/
H A DSkDLineIntersection.cpp395 bool SkIntersections::Test(const SkDLine& a, const SkDLine& b) { function in class:SkIntersections
/external/skia/src/xml/
H A DSkJS.cpp206 void SkJS::Test(void* hwnd) { function in class:SkJS
/external/skia/tests/
H A DPathOpsSkpClipTest.cpp21 #include "Test.h"
265 static void Test(int dirNo, const char* filename, TestStep testStep) { function in struct:TestResult
896 TestResult::Test(result.fDirNo, filename.c_str(), kEncodeFiles);
H A DSkpSkGrTest.cpp28 #include "Test.h"
81 static void Test(int dirNo, const char* filename, TestStep testStep, bool verbose) { function in struct:TestResult
650 TestResult::Test(state.fDirsFound[index], state.fFilesFound[index], kEncodeFiles,
753 TestResult::Test(dirIndex, filename.c_str(), kCompareBits, reporter->verbose());
754 TestResult::Test(dirIndex, filename.c_str(), kEncodeFiles, reporter->verbose());
H A DTest.cpp8 #include "Test.h"
30 void Reporter::startTest(Test* test) {
38 void Reporter::endTest(Test* test) {
44 Test::Test() : fReporter(NULL), fPassed(true) {} function in class:Test
46 Test::~Test() {
50 void Test::setReporter(Reporter* r) {
54 const char* Test::getName() {
95 void Test
[all...]
H A DTest.h21 class Test;
30 void startTest(Test*);
32 void endTest(Test*);
40 virtual void onStart(Test*) {}
42 virtual void onEnd(Test*) {}
50 class Test { class in namespace:skiatest
52 Test();
53 virtual ~Test();
79 class GpuTest : public Test{
81 GpuTest() : Test(), fGrContextFactor
[all...]
/external/regex-re2/re2/testing/
H A Dcompile_test.cc5 // Test prog.cc, compile.cc
23 struct Test { struct in namespace:re2
28 static Test tests[] = {
107 const re2::Test& t = tests[i];
H A Dparse_test.cc5 // Test parse.cc, dump.cc, and tostring.cc.
16 struct Test { struct in namespace:re2
27 static Test tests[] = {
111 // Test precedences
117 // Test flattening.
124 // Test Perl quoted literals
130 // Test Perl \A and \z
140 // Test named captures
201 void TestParse(const Test* tests, int ntests, Regexp::ParseFlags flags,
231 // Test tha
[all...]
H A Dregexp_benchmark.cc15 void Test();
23 void Test() { function in namespace:re2
H A Dsimplify_test.cc5 // Test simplify.cc.
14 struct Test { struct in namespace:re2
19 static Test tests[] = {
81 // Test that operators simplify their arguments.
/external/regex-re2/util/
H A Dtest.cc11 struct Test { struct
16 static Test tests[10000];
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/protobuf/gtest/include/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
94 // This flag controls whether Google Test catches all test-thrown exceptions
100 // to let Google Test decide.
107 // This flag causes the Google Test to list tests. None of the tests listed
111 // This flag controls whether Google Test emits a detailed XML report to a file
115 // This flags control whether Google Test prints the elapsed time for each
126 // This flag controls whether Google Test include
262 class Test { class in namespace:testing
[all...]
/external/protobuf/gtest/src/
H A Dgtest.cc32 // The Google C++ Testing Framework (Google Test)
119 // Indicates that this translation unit is part of Google Test's
282 // Google Test. Useful for catching the user mistake of not initializing
283 // Google Test before calling RUN_ALL_TESTS().
286 // Test. g_init_gtest_count is set to the number of times
486 // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the
490 // Google Test should handle an exception if:
503 // Google Test. The 'result' parameter specifies where to report the
513 // Google Test. The 'result' parameter specifies where to report the
533 // The d'tor restores the test part result reporter used by Google Test
1892 Test::Test() function in class:testing::Test
[all...]
/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...]
H A Dgtest_unittest.cc32 // Tests for Google Test itself. This verifies that the basic constructs of
33 // Google Test work.
60 // Indicates that this translation unit is part of Google Test's
143 using testing::Test;
245 EXPECT_EQ(GetTypeId<Test>(), GetTypeId<Test>());
248 class SubClassOfTest : public Test {};
249 class AnotherSubClassOfTest : public Test {};
261 // is called from inside Google Test or outside of it.
886 class VectorShuffleTest : public Test {
6125 class Test {}; class in namespace:my_namespace::testing
[all...]
/external/protobuf/python/google/protobuf/internal/
H A Dreflection_test.py204 # Test a scalar.
299 # Test simple, single-level nesting when we set a scalar.
323 # Test nesting when we add an element to a repeated field in a submessage.
338 # Test nesting many levels deep.
542 # TODO(robinson): Test all other scalar field types.
553 # TODO(robinson): Test all other scalar field types.
577 # Test single retrieval.
580 # Test out-of-bounds indices.
583 # Test incorrect types passed to __getitem__.
587 # Test singl
1442 def Test(i, expected_varint_size): function in function:ByteSizeTest.testVarints
[all...]

Completed in 365 milliseconds

12345678910