Searched defs:Test (Results 176 - 200 of 221) sorted by relevance

123456789

/external/clang/test/Index/
H A Dprint-type-size.cpp52 struct Test { struct in namespace:basic
270 // Test complex class hierarchy
285 // Test that this somewhat complex class structure is laid out correctly.
/external/clang/test/SemaCXX/
H A Dtypo-correction.cpp48 // Test the improvement from passing a callback object to CorrectTypo in
73 // Test the improvement from passing a callback object to CorrectTypo in
83 // Test the improvement from passing a callback object to CorrectTypo in
90 // Test the typo-correction callback in Sema::DiagnoseUnknownTypeName.
112 // Test the typo-correction callback in Sema::DiagnoseInvalidRedeclaration.
121 // Test the improved typo correction for the Parser::ParseCastExpr =>
133 // Test the typo-correction callback in BuildRecoveryCallExpr.
137 void Test() { function
/external/icu4c/test/intltest/
H A Ditspoof.cpp35 errln("Test Failure at file %s, line %d: \"%s\" is false.", __FILE__, __LINE__, #expr);};}
38 dataerrln("Test Failure at file %s, line %d, %s: \"%s\" is false.", __FILE__, __LINE__, msg, #expr);};}
41 errln("Test Failure at file %s, line %d: \"%s\" (%d) != \"%s\" (%d)", \
45 errln("Test Failure at file %s, line %d: \"%s\" (%d) == \"%s\" (%d)", \
180 // Test cases chosen for substitutions of various lengths, and
261 errln("File %s, Line %d, Test case from line %d, status is %s", __FILE__, __LINE__, lineNum,
266 errln("File %s, Line %d, Test case from line %d, Actual and Expected skeletons differ.",
492 struct Test { struct
517 Test &test = tests[testNum];
548 // Test o
672 struct Test { struct
724 struct Test { struct
[all...]
/external/llvm/tools/bugpoint/
H A DMiscompilation.cpp248 // Test to see if the function is misoptimized if we ONLY run it on the
499 // Test to see if the function is misoptimized if we ONLY run it on the
724 /// "Test" portion of the program is misoptimized. If so, return true. In any
727 static bool TestOptimizer(BugDriver &BD, Module *Test, Module *Safe, argument
732 Module *Optimized = BD.runPassesOn(Test, BD.getPassesToRun(),
735 delete Test;
795 static void CleanupAndPrepareModules(BugDriver &BD, Module *&Test, argument
798 Test = BD.performFinalCleanups(Test);
804 // the Test modul
960 TestCodeGenerator(BugDriver &BD, Module *Test, Module *Safe, std::string &Error) argument
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java626 // Regression Test for JIRA 2192
630 Test test = new Test();
637 Test another = (Test) in.readObject();
642 //Regression Test for JIRA-2249
695 // Regression Test for JIRA-2340
963 // Regression Test for Harmony-2402
976 // Regression Test for Harmony-3916
1002 //Regression Test fo
1152 class Test implements Serializable { class in inherits:Serializable
[all...]
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dtable_test.cc477 void Test(Random* rnd) { function in class:leveldb::Harness
647 // Test empty table/block.
652 Test(&rnd);
677 // Test the empty key
683 Test(&rnd);
692 Test(&rnd);
703 Test(&rnd);
712 Test(&rnd);
731 Test(&rnd);
746 Test(
[all...]
/external/clang/test/CodeGenCXX/
H A Dconst-init-cxx11.cpp73 struct Test : Ts... { constexpr Test() : Ts()..., n(5) {} int n; }; struct in namespace:BaseClass
75 using Test1 = Test<N, C, Cs<1,2>, D, X<C,1>>;
/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...]
/external/skia/tests/
H A DPathOpsSkpClipTest.cpp20 #include "Test.h"
73 static void Test(int dirNo, const char* filename, TestStep testStep) { function in struct:TestResult
610 TestResult::Test(state.fDirsFound[index], state.fFilesFound[index], kEncodeFiles);
/external/valgrind/unittest/
H A Dbigtest.cc60 class Test{ class
71 Test() : Run_v_(0), Run_b_(0) {} function in class:Test
72 Test(int id, void_func_void_t _Run) : Run_v_(_Run), Run_b_(0) { function in class:Test
75 Test(int id, bool_func_void_t _Run) : Run_v_(0), Run_b_(_Run) { function in class:Test
89 typedef std::map<int, Test> MapOfTests;
211 the_map_of_tests[id] = Test(id, _Run);
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest.cc32 // The Google C++ Testing Framework (Google Test)
101 // Indicates that this translation unit is part of Google Test's
192 // Google Test. Useful for catching the user mistake of not initializing
193 // Google Test before calling RUN_ALL_TESTS().
196 // Test. g_parse_gtest_flags_called is set to true iff
234 // several places in Google Test. This implementation provides a reasonable
387 // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the
391 // Google Test should handle an exception if:
479 // Google Test. The 'result' parameter specifies where to report the
490 // The d'tor restores the test part result reporter used by Google Test
1666 Test::Test() function in class:testing::Test
[all...]
/external/chromium/testing/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
92 // This flag controls whether Google Test catches all test-thrown exceptions
98 // to let Google Test decide.
105 // This flag causes the Google Test to list tests. None of the tests listed
109 // This flag controls whether Google Test emits a detailed XML report to a file
113 // This flags control whether Google Test prints the elapsed time for each
124 // This flag controls whether Google Test include
356 class GTEST_API_ Test { class in namespace:testing
[all...]
/external/chromium_org/testing/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
93 // This flag controls whether Google Test catches all test-thrown exceptions
99 // to let Google Test decide.
106 // This flag causes the Google Test to list tests. None of the tests listed
110 // This flag controls whether Google Test emits a detailed XML report to a file
114 // This flags control whether Google Test prints the elapsed time for each
125 // This flag controls whether Google Test include
346 class GTEST_API_ Test { class in namespace:testing
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dp2ptransportchannel_unittest.cc123 class P2PTransportChannelTestBase : public testing::Test,
414 void Test(const Result& expected) { function in class:P2PTransportChannelTestBase
730 // Test the matrix of all the connectivity types we expect to see in the wild.
837 // Test matrix. Originator behavior defined by rows, receiever by columns.
940 // Test names are of the form P2PTransportChannelTest_TestOPENToNAT_FULL_CONE
949 TEST_F(P2PTransportChannelTest, z##Test##x##To##y##AsGiceNoneSharedUfrag) { \
955 Test(*kMatrix[x][y]); \
959 TEST_F(P2PTransportChannelTest, z##Test##x##To##y##AsGiceP0SharedUfrag) { \
965 Test(*kMatrix[x][y]); \
969 TEST_F(P2PTransportChannelTest, z##Test##
[all...]
/external/chromium_org/third_party/mesa/src/src/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
92 // This flag controls whether Google Test catches all test-thrown exceptions
98 // to let Google Test decide.
105 // This flag causes the Google Test to list tests. None of the tests listed
109 // This flag controls whether Google Test emits a detailed XML report to a file
113 // This flags control whether Google Test prints the elapsed time for each
124 // This flag controls whether Google Test include
356 class GTEST_API_ Test { class in namespace:testing
[all...]
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dreflection_test.py239 # Test a scalar.
328 # Test simple, single-level nesting when we set a scalar.
410 # Test nesting when we add an element to a repeated field in a submessage.
425 # Test nesting many levels deep.
664 # TODO(robinson): Test all other scalar field types.
675 # TODO(robinson): Test all other scalar field types.
770 # Test single retrieval.
773 # Test out-of-bounds indices.
776 # Test incorrect types passed to __getitem__.
780 # Test singl
1863 def Test(i, expected_varint_size): function in function:ByteSizeTest.testVarints
[all...]
/external/chromium_org/third_party/re2/re2/testing/
H A Dregexp_benchmark.cc15 void Test();
23 void Test() { function in namespace:re2
/external/chromium_org/tools/telemetry/third_party/png/
H A Dpng.py44 # 2006-06-17 Nicko: Test suite with various image generators.
2409 # === Internal Test Support ===
2503 class Test(unittest.TestCase): class in inherits:unittest.TestCase
2555 "Test colour type 3 and tRNS chunk (and 4-bit palette)."
2576 # Test for Issue 26
2579 # Test the pixels at row 9 columns 0 and 1.
2585 # Test for Issue 60
2592 "Test colour type 2 and tRNS chunk."
2593 # Test for Issue 25
2650 """Test tha
[all...]
/external/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
92 // This flag controls whether Google Test catches all test-thrown exceptions
98 // to let Google Test decide.
105 // This flag causes the Google Test to list tests. None of the tests listed
109 // This flag controls whether Google Test emits a detailed XML report to a file
113 // This flags control whether Google Test prints the elapsed time for each
124 // This flag controls whether Google Test include
356 class GTEST_API_ Test { class in namespace:testing
[all...]
/external/llvm/utils/unittest/googletest/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
92 // This flag controls whether Google Test catches all test-thrown exceptions
98 // to let Google Test decide.
105 // This flag causes the Google Test to list tests. None of the tests listed
109 // This flag controls whether Google Test emits a detailed XML report to a file
113 // This flags control whether Google Test prints the elapsed time for each
124 // This flag controls whether Google Test include
356 class GTEST_API_ Test { class in namespace:testing
[all...]
/external/mesa3d/src/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
92 // This flag controls whether Google Test catches all test-thrown exceptions
98 // to let Google Test decide.
105 // This flag causes the Google Test to list tests. None of the tests listed
109 // This flag controls whether Google Test emits a detailed XML report to a file
113 // This flags control whether Google Test prints the elapsed time for each
124 // This flag controls whether Google Test include
356 class GTEST_API_ Test { class in namespace:testing
[all...]
/external/open-vcdiff/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
344 class Test { class in namespace:testing
[all...]
/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/regex-re2/re2/testing/
H A Dregexp_benchmark.cc15 void Test();
23 void Test() { function in namespace:re2
/external/chromium/testing/gtest/src/
H A Dgtest.cc32 // The Google C++ Testing Framework (Google Test)
126 // Indicates that this translation unit is part of Google Test's
301 // Google Test. Useful for catching the user mistake of not initializing
302 // Google Test before calling RUN_ALL_TESTS().
305 // Test. g_init_gtest_count is set to the number of times
505 // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the
509 // Google Test should handle a SEH exception if:
535 // Google Test. The 'result' parameter specifies where to report the
545 // Google Test. The 'result' parameter specifies where to report the
565 // The d'tor restores the test part result reporter used by Google Test
1897 Test::Test() function in class:testing::Test
[all...]

Completed in 4521 milliseconds

123456789