HomeSort by relevance Sort by last modified time
    Searched full:tests (Results 351 - 375 of 5234) sorted by null

<<11121314151617181920>>

  /external/gtest/test/
gtest_unittest.cc 32 // Tests for Google Test itself. This verifies that the basic constructs of
156 // This line tests that we can define tests in an unnamed namespace.
159 // Tests GetTypeId.
184 // Tests FormatTimeInMillisAsSeconds().
212 // Tests that GTEST_IS_NULL_LITERAL_(x) is true when x is a null
224 // Tests that GTEST_IS_NULL_LITERAL_(x) is false when x is not a null
235 // Tests CodePointToUtf8().
237 // Tests that the NUL character L'\0' is encoded correctly.
243 // Tests that ASCII characters are encoded correctly
    [all...]
gtest-typed-test_test.cc 41 // ctor/dtor, and SetUp()/TearDown() work correctly in typed tests and
84 // This #ifdef block tests typed tests.
89 // Tests that SetUpTestCase()/TearDownTestCase(), fixture ctor/dtor,
90 // and SetUp()/TearDown() work correctly in typed tests
125 // Tests that multiple TYPED_TEST_CASE's can be defined in the same
145 // This also verifies that tests from different typed test cases can
149 // Tests that a typed test case can be defined in a namespace.
168 // This #ifdef block tests type-parameterized tests
188 const char* tests = "A, B, C"; local
196 const char* tests = "A,C, B"; local
    [all...]
gtest_output_test_.cc 65 // Tests catching fatal failures.
94 // Tests catching a fatal failure in a subroutine.
101 // Tests catching a fatal failure in a nested subroutine.
118 // Tests HasFatalFailure() after a failed EXPECT check.
125 // Tests interleaving user logging and Google Test assertions.
138 // Tests the SCOPED_TRACE macro.
153 // Tests that SCOPED_TRACE() obeys lexical scopes.
172 // Tests that SCOPED_TRACE works inside a loop.
183 // Tests that SCOPED_TRACE works in a subroutine.
191 // Tests that SCOPED_TRACE can be nested
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
ProviderPermissionTest.java 26 * Tests Permissions related to reading from and writing to providers
33 * <p>Tests Permission:
43 * <p>Tests Permission:
53 * <p>Tests Permission:
63 * <p>Tests Permission:
73 * <p>Tests Permission:
83 * <p>Tests Permission:
93 * <p>Tests Permission:
103 * <p>Tests Permission:
113 * <p>Tests Permission
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/helpers/
ParserFactoryTest.java 17 package tests.api.org.xml.sax.helpers;
26 import tests.util.TestEnvironment;
72 "tests.api.org.xml.sax.support.NoAccessParser");
83 "tests.api.org.xml.sax.support.NoInstanceParser");
94 "tests.api.org.xml.sax.support.NoSubclassParser");
105 "tests.api.org.xml.sax.support.DoNothingParser");
137 "tests.api.org.xml.sax.support.NoAccessParser");
146 "tests.api.org.xml.sax.support.NoInstanceParser");
155 "tests.api.org.xml.sax.support.NoSubclassParser");
163 "tests.api.org.xml.sax.support.DoNothingParser")
    [all...]
XMLReaderFactoryTest.java 17 package tests.api.org.xml.sax.helpers;
27 import tests.util.TestEnvironment;
67 "tests.api.org.xml.sax.support.NoAccessXMLReader");
77 "tests.api.org.xml.sax.support.NoInstanceXMLReader");
87 "tests.api.org.xml.sax.support.NoSubclassXMLReader");
99 "tests.api.org.xml.sax.support.DoNothingXMLReader");
134 "tests.api.org.xml.sax.support.NoAccessXMLReader");
142 "tests.api.org.xml.sax.support.NoInstanceXMLReader");
150 "tests.api.org.xml.sax.support.NoSubclassXMLReader");
158 "tests.api.org.xml.sax.support.DoNothingXMLReader")
    [all...]
  /external/expat/tests/
minicheck.c 4 * tests. This interface is based entirely on the portion of the
42 tc->next_tcase = suite->tests;
43 suite->tests = tc;
63 tcase_test_function *new_tests = realloc(tc->tests, new_size);
65 if (new_tests != tc->tests) {
66 free(tc->tests);
67 tc->tests = new_tests;
71 tc->tests[tc->ntests] = test;
117 tc = suite->tests;
136 (tc->tests[i])()
    [all...]
  /external/icu4c/test/perf/
README 7 The performance tests in ICU4C compares various aspects of ICU against previous versions of ICU,
8 Posix, and/or Windows. Some tests only run on Windows and are labeled accordingly.All of the
9 performance tests are driven by a perl-based script which calls the underlying C program and
15 The most up to date tests are in ICU 4.0 and later. In addition, most tests depend on data which are
33 4) Build the ICU performance tests either through Visual Studios or with the Makefile.
45 6) In the perf directory, there are several other directories for the various tests that can be run.
46 (e.g. convperf (Conversion tests)). Go to each directory and execute the perl script for each test
55 Note: After building the performance tests, it is a good idea to execute each C program to ensure that each
60 Note: Some tests take a while depending on the machine it is running on so a script to run each performance test'
    [all...]
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
AllTests.java 17 package org.apache.harmony.crypto.tests.javax.crypto.func;
23 * This is autogenerated source file. Includes tests for package org.apache.harmony.crypto.tests.javax.crypto;
33 TestSuite suite = new TestSuite("All tests for package org.apache.harmony.crypto.tests.javax.crypto.func;");
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
UndeclaredThrowableExceptionTests.java 1 package tests.api.java.lang.reflect;
19 * @tests java.lang.reflect.UndeclaredThrowableException#getCause()
34 * @tests java.lang.reflect.UndeclaredThrowableException#getUndeclaredThrowable()
50 * @tests java.lang.reflect.UndeclaredThrowableException#UndeclaredThrowableException(java.lang.Throwable)
67 * @tests java.lang.reflect.UndeclaredThrowableException#UndeclaredThrowableException(java.lang.Throwable, java.lang.String)
  /development/samples/ApiDemos/tests/
AndroidManifest.xml 17 <!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
19 package="com.example.android.apis.tests">
30 the package of com.example.android.apis. To run the tests use the command:
31 "adb shell am instrument -w com.example.android.apis.tests/android.test.InstrumentationTestRunner"
35 android:label="Tests for Api Demos."/>
  /development/samples/ApiDemos/tests/src/com/example/android/apis/
ApiDemosApplicationTests.java 26 * how to write and extend Application tests.
31 * com.example.android.apis.tests/android.test.InstrumentationTestRunner
47 * explain any and all failures in other tests. This is not guaranteed
48 * to run before other tests, as junit uses reflection to find the tests.
  /external/icu4c/test/intltest/
cpdtrtst.h 31 /*Tests the constructors */
33 /*Tests the function clone, and operator==()*/
35 /*Tests the function getCount()*/
37 /*Tests the function getTransliterator() and setTransliterators() and adoptTransliterators()*/
39 /*Tests the function handleTransliterate()*/
  /external/icu4c/test/perf/unisetperf/
unisetperf.pl 28 # tests will be done for all the programs. Results will be stored and connected
39 my $tests = {
63 runTests($options, $tests, $dataFiles);
76 $tests = {
86 runTests($options, $tests, $dataFiles);
  /frameworks/base/tests/ImfTest/tests/
AndroidManifest.xml 17 <!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
19 package="com.android.imftest.tests">
29 the package of com.android.imftest. To run the tests use the command:
30 "adb shell am instrument -w com.android.imftest.tests/android.test.InstrumentationTestRunner"
34 android:label="imf tests"/>
  /frameworks/base/tests/SmokeTest/tests/
AndroidManifest.xml 17 <!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
19 package="com.android.smoketest.tests">
30 the package of com.android.smoketest. To run the tests use the command:
31 "adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner"
35 android:label="System Smoke Tests"/>
  /packages/apps/Browser/tests/
AndroidManifest.xml 17 <!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
19 package="com.android.browser.tests">
30 the package of com.android.email. To run the tests use the command:
31 "adb shell am instrument -w com.android.browser.tests/android.test.InstrumentationTestRunner"
35 android:label="Tests for Browser."/>
  /packages/apps/Email/tests/
AndroidManifest.xml 17 <!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
19 package="com.android.email.tests">
30 the package of com.android.email. To run the tests use the command:
31 "adb shell am instrument -w com.android.email.tests/android.test.InstrumentationTestRunner"
35 android:label="Tests for Email."/>
  /packages/apps/QuickSearchBox/tests/
AndroidManifest.xml 17 <!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
19 package="com.android.quicksearchbox.tests">
29 the package of com.android.quicksearchbox. To run the tests use the command:
30 "adb shell am instrument -w com.android.quicksearchbox.tests/android.test.InstrumentationTestRunner"
34 android:label="Tests for SearchActivity"/>
  /packages/providers/DownloadProvider/tests/permission/
AndroidManifest.xml 19 package="com.android.providers.downloads.permission.tests">
26 The tests in this package are intended to verify that protected APIs or data
33 "adb shell am instrument -w com.android.providers.downloads.permission.tests/android.test.InstrumentationTestRunner"
36 android:targetPackage="com.android.providers.downloads.permission.tests"
37 android:label="Tests for Download provider permissions"/>
  /cts/tests/SignatureTest/tests/src/android/tests/sigtest/tests/
JDiffClassDescriptionTest.java 17 package android.tests.sigtest.tests;
20 import android.tests.sigtest.JDiffClassDescription;
21 import android.tests.sigtest.ResultObserver;
22 import android.tests.sigtest.SignatureTestActivity;
77 JDiffClassDescription clz = new JDiffClassDescription("android.tests.sigtest.tests.data", "NormalClass", observer);
92 JDiffClassDescription clz = new JDiffClassDescription("android.tests.sigtest.tests.data",
120 constructor.addException("android.tests.sigtest.tests.data.NormalException")
    [all...]
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_test.c 41 } tests[] = {
227 for (x = 0; x < (int)(sizeof(tests)/sizeof(tests[0])); x++) {
229 if ((err = eax_encrypt_authenticate_memory(idx, tests[x].key, tests[x].keylen,
230 tests[x].nonce, tests[x].noncelen, tests[x].header, tests[x].headerlen,
231 tests[x].plaintext, tests[x].msglen, outct, outtag, &len)) != CRYPT_OK)
    [all...]
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
CoreTestSuite.java 36 * JUnit TestSuite and removes tests after executing them. This is so the core
37 * tests actually have a chance to succeed, since they do consume quite some
38 * memory and many tests do not (have a chance to) cleanup properly after
39 * themselves. The class also implements our filtering mechanism for tests, so
40 * it becomes easy to only include or exclude tests based on their annotations
41 * (like, say, execute all Android-only tests that are not known to be broken).
46 * Include all normal tests in the suite.
51 * Include all broken tests in the suite.
61 * Include all Android-only tests in the suite.
66 * Include side-effective tests in the suite.
342 public Enumeration tests() { method in class:CoreTestSuite
    [all...]
  /dalvik/libcore/security/src/test/java/tests/security/interfaces/
RSAMultiPrimePrivateCrtKeyTest.java 17 package tests.security.interfaces;
30 import org.apache.harmony.security.tests.support.interfaces.RSAMultiPrimePrivateCrtKeyImpl;
64 * @tests java.security.interfaces.RSAMultiPrimePrivateCrtKey#getCrtCoefficient()
65 * @tests java.security.interfaces.RSAMultiPrimePrivateCrtKey#getPrimeExponentP()
66 * @tests java.security.interfaces.RSAMultiPrimePrivateCrtKey#getPrimeExponentQ()
67 * @tests java.security.interfaces.RSAMultiPrimePrivateCrtKey#getPrimeP()
68 * @tests java.security.interfaces.RSAMultiPrimePrivateCrtKey#getPrimeQ()
69 * @tests java.security.interfaces.RSAMultiPrimePrivateCrtKey#getPublicExponent()
125 * @tests java.security.interfaces.RSAMultiPrimePrivateCrtKey#getOtherPrimeInfo()
  /dalvik/libcore/support/src/test/java/tests/util/
FieldTestFileGenerator.java 18 package tests.util;
23 import tests.support.Support_GetPutFields;
24 import tests.support.Support_GetPutFieldsDeprecated;
25 import tests.support.Support_GetPutFieldsDefaulted;
29 * {@code tests.api.java.io.ObjectInputStreamGetFieldTest} and
30 * {@code tests.api.java.io.ObjectOutputStreamPutFieldTest}.
32 * {@code $ANDROID_BUILD_TOP/dalvik/libcore/luni/src/test/resources/tests/api/java/io}
33 * to be included at the correct location in the core tests package.
36 * {@code tests.support.Support_GetPutFieldsDefaulted} must be commented out. See the

Completed in 105 milliseconds

<<11121314151617181920>>