Home
last modified time | relevance | path

Searched refs:tests (Results 1 – 25 of 2718) sorted by relevance

12345678910>>...109

/external/skia/gyp/
Dtests.gypi5 # Common gypi for unit tests.
39 '../tests/FontConfigParser.cpp',
49 '../tests/Test.cpp',
50 '../tests/Test.h',
52 '../tests/AAClipTest.cpp',
53 '../tests/ARGBImageEncoderTest.cpp',
54 '../tests/AnnotationTest.cpp',
55 '../tests/AsADashTest.cpp',
56 '../tests/AtomicTest.cpp',
57 '../tests/BadIcoTest.cpp',
[all …]
Dpathops_unittest.gypi5 # Common gypi for pathops unit tests.
21 '../tests/Test.cpp',
22 '../tests/Test.h',
24 '../tests/PathOpsAngleTest.cpp',
25 '../tests/PathOpsBoundsTest.cpp',
26 '../tests/PathOpsBuilderTest.cpp',
27 '../tests/PathOpsBuildUseTest.cpp',
28 '../tests/PathOpsConicIntersectionTest.cpp',
29 '../tests/PathOpsConicLineIntersectionTest.cpp',
30 '../tests/PathOpsCubicIntersectionTest.cpp',
[all …]
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/
DMANIFEST58 tests
59 tests/main/atgroup_00.css
60 tests/main/atgroup_01.css
61 tests/main/atgroup_02.css
62 tests/main/atgroup_03.css
63 tests/main/atgroup_04.css
64 tests/main/atgroup_05.css
65 tests/main/atgroup_06.css
66 tests/main/atgroup_07.css
67 tests/main/atgroup_08.css
[all …]
/external/skia/dm/
DAndroid.mk32 ../tests/Test.cpp \
33 ../tests/PathOpsAngleTest.cpp \
34 ../tests/PathOpsBoundsTest.cpp \
35 ../tests/PathOpsBuilderTest.cpp \
36 ../tests/PathOpsBuildUseTest.cpp \
37 ../tests/PathOpsConicIntersectionTest.cpp \
38 ../tests/PathOpsConicLineIntersectionTest.cpp \
39 ../tests/PathOpsCubicIntersectionTest.cpp \
40 ../tests/PathOpsCubicIntersectionTestData.cpp \
41 ../tests/PathOpsCubicLineIntersectionTest.cpp \
[all …]
/external/v8/test/webkit/
Drun-json-stringify-expected.txt4 PASS tests[i](nativeJSON) is tests[i](JSON)
8 PASS tests[i](nativeJSON) is tests[i](JSON)
12 PASS tests[i](nativeJSON) is tests[i](JSON)
16 PASS tests[i](nativeJSON) is tests[i](JSON)
20 PASS tests[i](nativeJSON) is tests[i](JSON)
24 PASS tests[i](nativeJSON) is tests[i](JSON)
28 PASS tests[i](nativeJSON) is tests[i](JSON)
32 PASS tests[i](nativeJSON) is tests[i](JSON)
36 PASS tests[i](nativeJSON) is tests[i](JSON)
40 PASS tests[i](nativeJSON) is tests[i](JSON)
[all …]
Dcomparison-operators.js42 var tests = [];
46 tests.push.apply(tests, makeTest(start, end, "==", relationship, expressionParts[i][2]));
47 tests.push.apply(tests, makeTest(start, end, "!=", relationship, expressionParts[i][2]));
48 tests.push.apply(tests, makeTest(start, end, "===", relationship, expressionParts[i][2]));
49 tests.push.apply(tests, makeTest(start, end, "!==", relationship, expressionParts[i][2]));
51 for (var i = 0; i < tests.length; i++) {
52 if ((r=tests[i][0]()) == tests[i][1])
53 testPassed(tests[i][0] + " is " + tests[i][1]);
55 testFailed(tests[i][0] + " is " + r + " and should be " + tests[i][1] + ".");
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
DAllTests.java19 package org.apache.harmony.jpda.tests.share;
55 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ArrayReference.GetValuesTest.class); in main()
56 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ArrayReference.LengthTest.class); in main()
57 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ArrayReference.SetValues002Test.class); in main()
58 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ArrayReference.SetValuesTest.class); in main()
59 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ArrayType.NewInstanceTest.class); in main()
60 …suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassLoaderReference.VisibleClassesTest.clas… in main()
61 …suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassObjectReference.ReflectedType002Test.cl… in main()
62 …suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassObjectReference.ReflectedTypeTest.class… in main()
63 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod002Test.class); in main()
[all …]
/external/libunwind/
D.gitignore33 tests/[GL]test-bt
34 tests/[GL]test-concurrent
35 tests/[GL]test-dyn1
36 tests/[GL]test-exc
37 tests/[GL]test-init
38 tests/[GL]test-resume-sig
39 tests/[GL]test-resume-sig-rt
40 tests/[GL]perf-simple
41 tests/Ltest-nomalloc
42 tests/Ltest-nocalloc
[all …]
/external/google-breakpad/src/testing/gtest/test/
Dgtest-unittest-api_test.cc87 TestInfo const** const tests = in GetSortedTests() local
91 tests[i] = test_case->GetTestInfo(i); in GetSortedTests()
93 std::sort(tests, tests + test_case->total_test_count(), in GetSortedTests()
95 return tests; in GetSortedTests()
158 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case); in TEST() local
160 EXPECT_STREQ("DISABLED_Dummy1", tests[0]->name()); in TEST()
161 EXPECT_STREQ("ApiTest", tests[0]->test_case_name()); in TEST()
162 EXPECT_TRUE(IsNull(tests[0]->value_param())); in TEST()
163 EXPECT_TRUE(IsNull(tests[0]->type_param())); in TEST()
164 EXPECT_FALSE(tests[0]->should_run()); in TEST()
[all …]
/external/gtest/test/
Dgtest-unittest-api_test.cc87 TestInfo const** const tests = in GetSortedTests() local
91 tests[i] = test_case->GetTestInfo(i); in GetSortedTests()
93 std::sort(tests, tests + test_case->total_test_count(), in GetSortedTests()
95 return tests; in GetSortedTests()
158 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case); in TEST() local
160 EXPECT_STREQ("DISABLED_Dummy1", tests[0]->name()); in TEST()
161 EXPECT_STREQ("ApiTest", tests[0]->test_case_name()); in TEST()
162 EXPECT_TRUE(IsNull(tests[0]->value_param())); in TEST()
163 EXPECT_TRUE(IsNull(tests[0]->type_param())); in TEST()
164 EXPECT_FALSE(tests[0]->should_run()); in TEST()
[all …]
/external/protobuf/gtest/test/
Dgtest-unittest-api_test.cc87 TestInfo const** const tests = in GetSortedTests() local
91 tests[i] = test_case->GetTestInfo(i); in GetSortedTests()
93 std::sort(tests, tests + test_case->total_test_count(), in GetSortedTests()
95 return tests; in GetSortedTests()
157 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case); in TEST() local
159 EXPECT_STREQ("DISABLED_Dummy1", tests[0]->name()); in TEST()
160 EXPECT_STREQ("ApiTest", tests[0]->test_case_name()); in TEST()
161 EXPECT_STREQ("", tests[0]->comment()); in TEST()
162 EXPECT_STREQ("", tests[0]->test_case_comment()); in TEST()
163 EXPECT_FALSE(tests[0]->should_run()); in TEST()
[all …]
/external/valgrind/memcheck/tests/
Dvarinfo5.stderr.exp-ppc642 at 0x........: croak (memcheck/tests/varinfo5so.c:30)
3 by 0x........: varinfo1_main (memcheck/tests/varinfo5so.c:52)
4 by 0x........: varinfo5_main (memcheck/tests/varinfo5so.c:154)
5 by 0x........: main (memcheck/tests/varinfo5.c:5)
8 by 0x........: varinfo1_main (memcheck/tests/varinfo5so.c:50)
9 by 0x........: varinfo5_main (memcheck/tests/varinfo5so.c:154)
10 by 0x........: main (memcheck/tests/varinfo5.c:5)
13 at 0x........: croak (memcheck/tests/varinfo5so.c:30)
14 by 0x........: varinfo1_main (memcheck/tests/varinfo5so.c:55)
15 by 0x........: varinfo5_main (memcheck/tests/varinfo5so.c:154)
[all …]
/external/apache-harmony/support/src/test/resources/tests/resources/ServiceLoader/
Dhyts_services.jar ... /tests.resources.ServiceLoader.ServiceMoreThanOne tests/ tests/resources/ tests/resources/impl/ tests
/external/harfbuzz_ng/test/shaping/
DMakefile.am24 run-tests.sh \
39 tests/arabic-fallback-shaping.tests \
40 tests/arabic-feature-order.tests \
41 tests/context-matching.tests \
42 tests/hangul-jamo.tests \
43 tests/indic-joiner-candrabindu.tests \
44 tests/indic-old-spec.tests \
45 tests/indic-pref-blocking.tests \
46 tests/mongolian-variation-selector.tests \
47 tests/zero-width-marks.tests \
[all …]
/external/chromium-trace/trace-viewer/third_party/Paste/Paste.egg-info/
DSOURCES.txt176 tests/__init__.py
177 tests/test_cgiapp.py
178 tests/test_cgitb_catcher.py
179 tests/test_config.py
180 tests/test_doctests.py
181 tests/test_errordocument.py
182 tests/test_fileapp.py
183 tests/test_fixture.py
184 tests/test_grantip.py
185 tests/test_gzipper.py
[all …]
/external/libdrm/
D.gitignore75 tests/auth
76 tests/dristat
77 tests/drmstat
78 tests/getclient
79 tests/getstats
80 tests/getversion
81 tests/lock
82 tests/gem_basic
83 tests/gem_flink
84 tests/gem_mmap
[all …]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestLeftRecursion.java51 String[] tests = { in testTernaryExpr() local
62 runTests(grammar, tests, "e"); in testTernaryExpr()
81 String[] tests = { in testDeclarationsUsingASTOperators() local
93 runTests(grammar, tests, "declarator"); in testDeclarationsUsingASTOperators()
112 String[] tests = { in testDeclarationsUsingRewriteOperators() local
124 runTests(grammar, tests, "declarator"); in testDeclarationsUsingRewriteOperators()
142 String[] tests = { in testExpressionsUsingASTOperators() local
156 runTests(grammar, tests, "e"); in testExpressionsUsingASTOperators()
174 String[] tests = { in testExpressionsUsingRewriteOperators() local
187 runTests(grammar, tests, "e"); in testExpressionsUsingRewriteOperators()
[all …]
/external/vboot_reference/
DMakefile239 RUNTEST = tests/test_using_qemu.sh
642 TESTLIB = ${BUILD}/tests/test.a
645 tests/test_common.c \
646 tests/timer_utils.c \
647 tests/crc32_test.c
655 tests/cgptlib_test \
656 tests/rollback_index2_tests \
657 tests/rollback_index3_tests \
658 tests/rsa_padding_test \
659 tests/rsa_utility_tests \
[all …]
/external/libopus/
DMakefile.am57tests/test_opus_api tests/test_opus_encode tests/test_opus_decode tests/test_opus_padding celt/tes…
59tests/test_unit_types celt/tests/test_unit_mathops celt/tests/test_unit_entropy celt/tests/test_un…
72 tests_test_opus_api_SOURCES = tests/test_opus_api.c tests/test_opus_common.h
75 tests_test_opus_encode_SOURCES = tests/test_opus_encode.c tests/test_opus_common.h
78 tests_test_opus_decode_SOURCES = tests/test_opus_decode.c tests/test_opus_common.h
81 tests_test_opus_padding_SOURCES = tests/test_opus_padding.c tests/test_opus_common.h
84 celt_tests_test_unit_cwrs32_SOURCES = celt/tests/test_unit_cwrs32.c
87 celt_tests_test_unit_dft_SOURCES = celt/tests/test_unit_dft.c
90 celt_tests_test_unit_entropy_SOURCES = celt/tests/test_unit_entropy.c
93 celt_tests_test_unit_laplace_SOURCES = celt/tests/test_unit_laplace.c
[all …]
/external/bouncycastle/
DREADME.android51 7) Run tests to make sure things are working:
53 Some suggested tests by area:
65 …libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/AlgorithmParameterGener…
66 …libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/AlgorithmParameterGener…
67 …libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/AlgorithmParametersSpiT…
68 …libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/AlgorithmParametersTest…
69 …libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/AlgorithmParametersTest…
71 libcore/luni/src/test/java/tests/targets/security/cert/CertPathBuilderTestPKIX.java
73 libcore/luni/src/test/java/tests/targets/security/cert/CertPathValidatorTestPKIX.java
75 libcore/luni/src/test/java/tests/security/cert/CertStoreSpiTest.java
[all …]
/external/jemalloc/test/unit/
Datomic.c12 const p##_test_t tests[] = { \
32 for (i = 0; i < sizeof(tests)/sizeof(p##_test_t); i++) { \
34 t accum = tests[i].accum0; \
36 tests[i].accum0, \
39 assert_##ta##_eq(atomic_add_##p(&accum, tests[i].x), \
40 (t)((tc)tests[i].accum0 + (tc)tests[i].x), \
42 i, tests[i].accum0, tests[i].x); \
46 accum = tests[i].accum0; \
47 assert_##ta##_eq(atomic_sub_##p(&accum, tests[i].x), \
48 (t)((tc)tests[i].accum0 - (tc)tests[i].x), \
[all …]
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2.egg-info/
DSOURCES.txt87 tests/extras_appengine_auth_models_test.py
88 tests/extras_appengine_sessions_memcache_test.py
89 tests/extras_appengine_sessions_ndb_test.py
90 tests/extras_appengine_users_test.py
91 tests/extras_auth_test.py
92 tests/extras_config_test.py
93 tests/extras_i18n_test.py
94 tests/extras_jinja2_test.py
95 tests/extras_json_test.py
96 tests/extras_local_app_test.py
[all …]
/external/google-breakpad/src/testing/gtest/scripts/
Dgen_gtest_pred_impl.py429 tests = (
449 tests += """
455 tests += Iter(n, 'const T%s& v%s', sep=""",
458 tests += """) {
464 tests += """
469 tests += Iter(n, 'const char* e%s', sep=""",
472 tests += Iter(n, """,
475 tests += """) {
482 tests += Iter(n, 'e%s', sep=' << " + " << ')
484 tests += """
[all …]
/external/protobuf/gtest/scripts/
Dgen_gtest_pred_impl.py431 tests = (
451 tests += """
457 tests += Iter(n, 'const T%s& v%s', sep=""",
460 tests += """) {
466 tests += """
471 tests += Iter(n, 'const char* e%s', sep=""",
474 tests += Iter(n, """,
477 tests += """) {
484 tests += Iter(n, 'e%s', sep=' << " + " << ')
486 tests += """
[all …]
/external/icu/icu4j/main/shared/build/
Dlocations.properties15 icu4j.test-framework.dir = ${shared.dir}/../tests/framework
16 icu4j.core-tests.dir = ${shared.dir}/../tests/core
17 icu4j.collate-tests.dir = ${shared.dir}/../tests/collate
18 icu4j.charset-tests.dir = ${shared.dir}/../tests/charset
19 icu4j.localespi-tests.dir = ${shared.dir}/../tests/localespi
20 icu4j.packaging-tests.dir = ${shared.dir}/../tests/packaging
21 icu4j.translit-tests.dir = ${shared.dir}/../tests/translit
22 icu4j.testall.dir = ${shared.dir}/../tests/testall
30 icu4j.perf-tests.dir = ${shared.dir}/../../perf-tests

12345678910>>...109