Searched defs:Test (Results 101 - 125 of 139) sorted by relevance

123456

/external/v8/test/preparser/
H A Dtestcfg.py101 def Test(name, source, expectation): function in function:PreparserTestConfiguration.ParsePythonTestTemplates
118 Test(testname, testsource, expectation)
120 execfile(pathname, {"Test": Test, "Template": Template})
149 # created environment (defining the Template and Test functions)
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp3.cpp62 void Test() { function
/external/clang/test/CodeGenCXX/
H A Dvalue-init.cpp88 struct Test { struct in namespace:PR9801
89 Test() : i(10) {} function in struct:PR9801::Test
90 Test(int i) : i(i) {} function in struct:PR9801::Test
97 Test t;
100 struct Test3 : public Test { };
108 Test partial[3] = { 1 };
113 Test empty[3] = {};
H A Ddebug-info-use-after-free.cpp277 Test { class in namespace:n1
286 n1::Test {
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/clang/test/SemaCXX/
H A Dqualified-id-lookup.cpp146 void Test() { function in namespace:PR6830
H A Dnested-name-spec.cpp201 class Test { class in namespace:test1
H A Dtypo-correction.cpp44 // Test the improvement from passing a callback object to CorrectTypo in
69 // Test the improvement from passing a callback object to CorrectTypo in
79 // Test the improvement from passing a callback object to CorrectTypo in
86 // Test the typo-correction callback in Sema::DiagnoseUnknownTypeName.
108 // Test the typo-correction callback in Sema::DiagnoseInvalidRedeclaration.
117 // Test the improved typo correction for the Parser::ParseCastExpr =>
129 // Test the typo-correction callback in BuildRecoveryCallExpr.
133 void Test() { function
/external/icu4c/test/intltest/
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/llvm/utils/lit/lit/
H A Dmain.py17 import Test namespace
131 result = Test.UNRESOLVED
177 return Test.TestSuite(cfg.name, source_root, exec_root, cfg), ()
253 yield Test.Test(ts, path_in_suite, lc)
401 group = OptionGroup(parser, "Test Execution")
422 group = OptionGroup(parser, "Test Selection")
538 print '-- Test Suites --'
607 t.setResult(Test.UNRESOLVED, '', 0.0)
620 for title,code in (('Unexpected Passing Tests', Test
[all...]
/external/openfst/src/test/
H A Dalgo_test.h74 void Test(const Fst<Arc> &T1, const Fst<Arc> &T2, const Fst<Arc> &T3) { function in class:fst::WeightedTester
886 void Test(const Fst<Arc> &A1, const Fst<Arc> &A2, const Fst<Arc> &A3) {}
905 void Test(const Fst<Arc> &A1, const Fst<Arc> &A2, const Fst<Arc> &A3) {
1084 // Test equivalence using union-find algorithm
1087 // Test equivalence by checking if (S1 - S2) U (S2 - S1) is empty
1172 void Test() {
1186 weighted_tester.Test(T1, T2, T3);
1198 unweighted_tester.Test(A1, A2, A3);
/external/skia/src/xml/
H A DSkJS.cpp206 void SkJS::Test(void* hwnd) { function in class:SkJS
/external/v8/test/cctest/
H A Dtest-alloc.cc109 // Test that we can allocate in old pointer space and code space.
119 static Handle<Object> Test() { function
128 Handle<Object> o = Test();
/external/webkit/Tools/CSSTestSuiteHarness/harness/
H A Dharness.js194 function Test(testInfoLine) class
229 Test.prototype.runForFormat = function(format)
240 Test.prototype.completedForFormat = function(format)
251 Test.prototype.statusForFormat = function(format)
407 var test = new Test(lines[i]);
856 warning += 'Test via the browser\'s Print Preview.';
1666 window.console.log('Test ' + item.test + ' was in the database but is no longer in the suite; deleting.');
/external/clang/test/CXX/special/class.copy/
H A Dimplicit-move.cpp211 struct Test { struct in namespace:DR1402
/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-4.cpp133 void Test() { function in namespace:PR5755
/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...]
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/llvm/tools/bugpoint/
H A DMiscompilation.cpp248 // Test to see if the function is misoptimized if we ONLY run it on the
464 // Test to see if the function is misoptimized if we ONLY run it on the
689 /// "Test" portion of the program is misoptimized. If so, return true. In any
692 static bool TestOptimizer(BugDriver &BD, Module *Test, Module *Safe, argument
697 Module *Optimized = BD.runPassesOn(Test, BD.getPassesToRun(),
700 delete Test;
760 static void CleanupAndPrepareModules(BugDriver &BD, Module *&Test, argument
763 Test = BD.performFinalCleanups(Test);
769 // the Test modul
925 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/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/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/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/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...]

Completed in 647 milliseconds

123456