HomeSort by relevance Sort by last modified time
    Searched refs:tests (Results 51 - 75 of 4865) sorted by null

1 23 4 5 6 7 8 91011>>

  /libcore/support/src/test/java/tests/resources/ServiceLoader/
ServiceForWrongNameTest.java 18 package tests.resources.ServiceLoader;
ServiceIn2File.java 18 package tests.resources.ServiceLoader;
ServiceIn2FileWithEmptyConfig.java 18 package tests.resources.ServiceLoader;
ServiceMoreThanOne.java 18 package tests.resources.ServiceLoader;
ServiceWithDuplicateSons.java 18 package tests.resources.ServiceLoader;
  /libcore/support/src/test/java/tests/security/
TestHelper.java 17 package tests.security;
  /libcore/support/src/test/java/tests/support/
Support_Proxy_ParentException.java 18 package tests.support;
Support_Proxy_SubException.java 18 package tests.support;
  /sdk/testapps/aidlTest/mainProject/src/com/android/tests/aidl/main/
IRemoteService.aidl 17 package com.android.tests.aidl.main;
19 import com.android.tests.aidl.lib.MyParcelable;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
unit_test.c 7 void run_tests(struct test tests[])
10 for (i = 0; tests[i].name; i++) {
11 printf("Test %s\n", tests[i].name);
12 memset(&tests[i].result, 0, sizeof(tests[i].result));
13 tests[i].test_func(&tests[i].result);
14 printf("Test %s (%d/%d) pass\n", tests[i].name,
15 tests[i].result.pass, tests[i].result.test_count)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
unit_test.c 7 void run_tests(struct test tests[])
10 for (i = 0; tests[i].name; i++) {
11 printf("Test %s\n", tests[i].name);
12 memset(&tests[i].result, 0, sizeof(tests[i].result));
13 tests[i].test_func(&tests[i].result);
14 printf("Test %s (%d/%d) pass\n", tests[i].name,
15 tests[i].result.pass, tests[i].result.test_count)
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
runptests.c 30 /* Data structure to describe the tests. */
38 } tests[] = variable in typeref:struct:test
50 for (cnt = 0; cnt < sizeof (tests) / sizeof (tests[0]); ++cnt)
51 if (tests[cnt].str == NULL)
53 printf ("\n%s\n%.*s\n", tests[cnt].reg,
54 (int) strlen (tests[cnt].reg),
57 else if (tests[cnt].reg == NULL)
58 printf ("!!! %s\n", tests[cnt].str);
65 printf ("regexp: \"%s\", string: \"%s\" -> ", tests[cnt].reg
    [all...]
bug-regex27.c 26 struct tests struct
32 } tests[] = { variable in typeref:struct:tests
46 for (i = 0; i < sizeof (tests) / sizeof (tests[i]); ++i)
49 if (regcomp (&r, tests[i].regex, tests[i].cflags))
55 int rv = regexec (&r, tests[i].string, 0, NULL, 0);
56 if (rv != tests[i].retval)
59 i, rv, tests[i].retval);
  /external/chromium_org/third_party/skia/tests/
PathOpsDVectorTest.cpp 11 static const SkDPoint tests[] = { variable
21 static const size_t tests_count = SK_ARRAY_COUNT(tests);
25 SkDVector v1 = tests[index + 1] - tests[index];
27 SkDVector v2 = tests[index] - tests[index + 1];
31 SkDPoint p = tests[index + 1] + v2;
32 REPORTER_ASSERT(reporter, p == tests[index]);
35 v1 = tests[index + 1] - tests[index]
    [all...]
  /external/llvm/utils/lit/utils/
check-coverage 17 # If invoked with no arguments, run all the tests.
19 set -- "tests"
32 rm -f tests/.coverage
33 find tests -name .coverage.\* -exec rm {} \;
35 # Next, run the tests.
39 find tests/* -name .coverage.\* -exec mv {} tests \;
42 (cd tests && python -m coverage combine)
45 (cd tests && python -m coverage report)
49 (cd tests && python -m coverage html
    [all...]
  /external/skia/tests/
PathOpsDVectorTest.cpp 11 static const SkDPoint tests[] = { variable
21 static const size_t tests_count = SK_ARRAY_COUNT(tests);
25 SkDVector v1 = tests[index + 1] - tests[index];
27 SkDVector v2 = tests[index] - tests[index + 1];
31 SkDPoint p = tests[index + 1] + v2;
32 REPORTER_ASSERT(reporter, p == tests[index]);
35 v1 = tests[index + 1] - tests[index]
    [all...]
  /external/skia/dm/
Android.mk 284 ../tests/PathOpsAngleTest.cpp \
285 ../tests/PathOpsBoundsTest.cpp \
286 ../tests/PathOpsCubicIntersectionTest.cpp \
287 ../tests/PathOpsCubicIntersectionTestData.cpp \
288 ../tests/PathOpsCubicLineIntersectionTest.cpp \
289 ../tests/PathOpsCubicQuadIntersectionTest.cpp \
290 ../tests/PathOpsCubicReduceOrderTest.cpp \
291 ../tests/PathOpsCubicToQuadsTest.cpp \
292 ../tests/PathOpsDCubicTest.cpp \
293 ../tests/PathOpsDLineTest.cpp
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest-unittest-api_test.cc 33 // This file contains tests verifying correctness of data provided via
83 // Returns the array of pointers to all tests in a particular test case
87 TestInfo const** const tests = local
91 tests[i] = test_case->GetTestInfo(i);
93 std::sort(tests, tests + test_case->total_test_count(),
95 return tests;
111 // We can only test the accessors that do not change value while tests run.
112 // Since tests can be run in any order, the values the accessors that track
158 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case) local
280 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case); local
    [all...]
  /external/gtest/test/
gtest-unittest-api_test.cc 33 // This file contains tests verifying correctness of data provided via
83 // Returns the array of pointers to all tests in a particular test case
87 TestInfo const** const tests = local
91 tests[i] = test_case->GetTestInfo(i);
93 std::sort(tests, tests + test_case->total_test_count(),
95 return tests;
111 // We can only test the accessors that do not change value while tests run.
112 // Since tests can be run in any order, the values the accessors that track
158 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case) local
280 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case); local
    [all...]
  /external/protobuf/gtest/test/
gtest-unittest-api_test.cc 33 // This file contains tests verifying correctness of data provided via
83 // Returns the array of pointers to all tests in a particular test case
87 TestInfo const** const tests = local
91 tests[i] = test_case->GetTestInfo(i);
93 std::sort(tests, tests + test_case->total_test_count(),
95 return tests;
117 // We can only test the accessors that do not change value while tests run.
118 // Since tests can be run in any order, the values the accessors that track
157 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case) local
281 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case); local
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-unittest-api_test.cc 33 // This file contains tests verifying correctness of data provided via
83 // Returns the array of pointers to all tests in a particular test case
87 TestInfo const** const tests = local
91 tests[i] = test_case->GetTestInfo(i);
93 std::sort(tests, tests + test_case->total_test_count(),
95 return tests;
111 // We can only test the accessors that do not change value while tests run.
112 // Since tests can be run in any order, the values the accessors that track
158 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case) local
280 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case); local
    [all...]
  /external/valgrind/main/helgrind/tests/
filter_stderr 5 $dir/../../tests/filter_stderr_basic |
8 $dir/../../tests/filter_addresses |
12 # as these make some tests more scheduling sensitive -- those where
38 $dir/../../helgrind/tests/filter_helgrind "$@"
  /external/valgrind/main/memcheck/tests/
filter_stderr 5 $dir/../../tests/filter_stderr_basic |
8 $dir/../../tests/filter_addresses |
28 $dir/../../memcheck/tests/filter_memcheck "$@"
  /external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/mock/
MockPropertyChangeListener2.java 18 package org.apache.harmony.beans.tests.support.mock;
28 org.apache.harmony.beans.tests.support.mock.MockPropertyChangeEvent e);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
Class2Prepare.java 26 package org.apache.harmony.jpda.tests.jdwp.Events;
28 import org.apache.harmony.jpda.tests.framework.LogWriter;

Completed in 1497 milliseconds

1 23 4 5 6 7 8 91011>>