HomeSort by relevance Sort by last modified time
    Searched full:suite (Results 401 - 425 of 5420) sorted by null

<<11121314151617181920>>

  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingSetTest.java 107 public static Test suite() { method in class:ForwardingSetTest
108 TestSuite suite = new TestSuite(); local
110 suite.addTestSuite(ForwardingSetTest.class);
111 suite.addTest(
122 suite.addTest(
133 return suite;
HashBiMapTest.java 55 @GwtIncompatible("suite")
56 public static Test suite() { method in class:HashBiMapTest
57 TestSuite suite = new TestSuite(); local
58 suite.addTest(BiMapTestSuiteBuilder.using(new HashBiMapGenerator())
68 suite.addTestSuite(HashBiMapTest.class);
69 return suite;
ForwardingMultisetTest.java 141 public static Test suite() { method in class:ForwardingMultisetTest
142 TestSuite suite = new TestSuite(); local
144 suite.addTestSuite(ForwardingMultisetTest.class);
145 suite.addTest(
156 suite.addTest(
168 suite.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() {
264 return suite;
  /external/guava/guava-tests/test/com/google/common/io/
CharSourceTester.java 47 TestSuite suite = new TestSuite(name); local
49 suite.addTest(suiteForString(factory, entry.getValue(), name, entry.getKey()));
51 return suite;
56 TestSuite suite = new TestSuite(name + " [" + desc + "]"); local
58 suite.addTest(new CharSourceTester(factory, string, name, desc, method));
60 return suite;
ResourcesTest.java 46 public static TestSuite suite() { method in class:ResourcesTest
47 TestSuite suite = new TestSuite(); local
48 suite.addTest(ByteSourceTester.tests("Resources.asByteSource[URL]",
50 suite.addTest(CharSourceTester.tests("Resources.asCharSource[URL, Charset]",
52 suite.addTestSuite(ResourcesTest.class);
53 return suite;
  /external/llvm/utils/lit/lit/
TestingConfig.py 8 TestingConfig - Information on the tests inside a suite.
143 # FIXME: This should really only be suite in test suite config
147 # FIXME: This should really only be suite in test suite config
154 """root attribute - The root configuration for the test suite."""
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/test/
AbstractDirectoryTestSuite.java 56 Test suite = buildAllTestsSuite(); local
57 addTest(suite);
74 * Return true if the specified class should be included in the test suite.
77 * @return true if the specified class should be included in the test suite
99 * @return the test suite as a Test
116 return builder.suite(getDirectory());
  /external/selinux/libsepol/tests/
test-expander.c 193 int expander_add_tests(CU_pSuite suite)
195 if (NULL == CU_add_test(suite, "expander_indexes", test_expander_indexes)) {
200 if (NULL == CU_add_test(suite, "expander_attr_mapping", test_expander_attr_mapping)) {
205 if (NULL == CU_add_test(suite, "expander_role_mapping", test_expander_role_mapping)) {
209 if (NULL == CU_add_test(suite, "expander_user_mapping", test_expander_user_mapping)) {
213 if (NULL == CU_add_test(suite, "expander_alias", test_expander_alias)) {
  /frameworks/base/test-runner/tests/src/android/test/
AndroidTestRunnerTest.java 148 // Use the test suite provided by the interface method rather than the static suite method.
204 public static Test suite() { method in class:AndroidTestRunnerTest.SampleTestSuiteProvider
205 return SampleTestSuite.suite();
210 public static TestSuite suite() { method in class:AndroidTestRunnerTest.SampleTestSuite
219 public static TestSuite suite() { method in class:AndroidTestRunnerTest.AndroidTestCaseTestSuite
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_distributed_transactions.py 141 suite = unittest.TestSuite()
143 suite.addTest(unittest.makeSuite(DBTxn_distributed))
144 suite.addTest(unittest.makeSuite(DBTxn_distributedSYNC))
146 suite.addTest(unittest.makeSuite(DBTxn_distributed_must_open_db))
147 suite.addTest(unittest.makeSuite(DBTxn_distributedSYNC_must_open_db))
148 return suite
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threading_local.py 211 suite = unittest.TestSuite()
212 suite.addTest(DocTestSuite('_threading_local'))
213 suite.addTest(unittest.makeSuite(ThreadLocalTest))
214 suite.addTest(unittest.makeSuite(PyThreadingLocalTest))
227 suite.addTest(DocTestSuite('_threading_local',
231 test_support.run_unittest(suite)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_distributed_transactions.py 141 suite = unittest.TestSuite()
143 suite.addTest(unittest.makeSuite(DBTxn_distributed))
144 suite.addTest(unittest.makeSuite(DBTxn_distributedSYNC))
146 suite.addTest(unittest.makeSuite(DBTxn_distributed_must_open_db))
147 suite.addTest(unittest.makeSuite(DBTxn_distributedSYNC_must_open_db))
148 return suite
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threading_local.py 211 suite = unittest.TestSuite()
212 suite.addTest(DocTestSuite('_threading_local'))
213 suite.addTest(unittest.makeSuite(ThreadLocalTest))
214 suite.addTest(unittest.makeSuite(PyThreadingLocalTest))
227 suite.addTest(DocTestSuite('_threading_local',
231 test_support.run_unittest(suite)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/
README.txt 4 1- Run the unit tests as a full "eclipse plugin" suite
6 3. Run the functional tests as a full "eclipse plugin" suite (require a real SDK)
12 1- Running the unit tests as a full "eclipse plugin" suite
15 Steps to run the test suite:
73 3- Running the functional tests as a full "eclipse plugin" suite
76 Steps to run the test suite:
  /external/llvm/docs/
TestingGuide.rst 36 The whole programs tests are referred to as the "LLVM test suite" (or
37 "test-suite") and are in the ``test-suite`` module in subversion. For
39 tests" in places, which is less ambiguous than "test-suite" and remains
56 ``test-suite``
59 The test suite contains whole programs, which are pieces of code which
74 The test-suite is located in the ``test-suite`` Subversion module.
79 The test suite contains tests to check quality of debugging information.
84 test suite for more information . This test suite is located in th
    [all...]
HowToReleaseLLVM.rst 92 #. Create the release branch for ``llvm``, ``clang``, the ``test-suite``, and
108 $ svn copy https://llvm.org/svn/llvm-project/test-suite/trunk \
109 https://llvm.org/svn/llvm-project/test-suite/branches/release_XY
126 $ svn co https://llvm.org/svn/llvm-project/test-suite/branches/release_XY test-suite-X.Y
134 Regenerate the configure scripts for both ``llvm`` and the ``test-suite``.
143 ``test-suite`` by tagging the branch with the respective release candidate
161 $ svn mkdir https://llvm.org/svn/llvm-project/test-suite/tags/RELEASE_XYZ
162 $ svn copy https://llvm.org/svn/llvm-project/test-suite/branches/release_XY \
163 https://llvm.org/svn/llvm-project/test-suite/tags/RELEASE_XYZ/rc
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_record.c 20 * tlsv1_record_set_cipher_suite - TLS record layer: Set cipher suite
22 * @cipher_suite: New cipher suite
25 * This function is used to prepare TLS record layer for cipher suite change.
33 const struct tls_cipher_suite *suite; local
36 wpa_printf(MSG_DEBUG, "TLSv1: Selected cipher suite: 0x%04x",
40 suite = tls_get_cipher_suite(cipher_suite);
41 if (suite == NULL)
44 if (suite->hash == TLS_HASH_MD5) {
47 } else if (suite->hash == TLS_HASH_SHA) {
50 } else if (suite->hash == TLS_HASH_SHA256)
    [all...]
tlsv1_common.c 103 * tls_get_cipher_suite - Get TLS cipher suite
104 * @suite: Cipher suite identifier
107 const struct tls_cipher_suite * tls_get_cipher_suite(u16 suite)
111 if (tls_cipher_suites[i].suite == suite)
129 const struct tls_cipher_suite *suite; local
132 suite = tls_get_cipher_suite(cipher);
133 if (suite == NULL)
136 switch (suite->key_exchange)
    [all...]
  /external/llvm/docs/CommandGuide/
lit.rst 62 string if not given). The meaning and use of these parameters is test suite
130 suite take the most time to execute. Note that this option is most useful
184 In the :program:`lit` model, every test must exist inside some *test suite*.
189 how to find and run the tests inside the test suite.
196 allowing the test suite configuration to control exactly how tests are
198 suite they are in, and their relative path inside the test suite. For
217 suite.
260 suite*. Test suites serve to define the format of the tests they contain, the
269 Once a test suite is discovered, its config file is loaded. Config file
    [all...]
  /external/boringssl/src/ssl/test/runner/
handshake_server.go 28 suite *cipherSuite
378 if hs.suite = c.tryCipherSuite(id, supportedList, c.vers, hs.ellipticOk, hs.ecdsaOk); hs.suite != nil {
383 if hs.suite == nil {
385 return false, errors.New("tls: no cipher suite supported by both client and server")
434 hs.suite = c.tryCipherSuite(hs.sessionState.cipherSuite, c.config.cipherSuites(), hs.sessionState.vers, hs.ellipticOk, hs.ecdsaOk)
435 if hs.suite == nil {
454 hs.hello.cipherSuite = hs.suite.id
463 hs.finishedHash = newFinishedHash(c.vers, hs.suite)
486 isPSK := hs.suite.flags&suitePSK !=
    [all...]
handshake_client.go 27 suite *cipherSuite
108 for _, suite := range cipherSuites {
109 if suite.id != suiteId {
114 if hello.vers < VersionTLS12 && suite.flags&suiteTLS12 != 0 {
118 if c.isDTLS && suite.flags&suiteNoDTLS != 0 && !c.config.Bugs.EnableAllCiphersInDTLS {
269 suite := mutualCipherSuite(c.config.cipherSuites(), serverHello.cipherSuite)
270 if suite == nil {
272 return fmt.Errorf("tls: server selected an unsupported cipher suite")
289 suite: suite,
    [all...]
cipher_suites.go 41 // suiteECDH indicates that the cipher suite involves elliptic curve
46 // suiteECDSA indicates that the cipher suite involves an ECDSA
48 // certificate is ECDSA. If this is not set then the cipher suite is
51 // suiteTLS12 indicates that the cipher suite should only be advertised
54 // suiteSHA384 indicates that the cipher suite uses SHA384 as the
57 // suiteNoDTLS indicates that the cipher suite cannot be used
60 // suitePSK indicates that the cipher suite authenticates with
79 // flags is a bitmask of the suite* values, above.
359 for _, suite := range cipherSuites {
360 if suite.id == want
    [all...]
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
XmlGenerator.java 42 * suite: x.y.z
48 * suite: x.y
168 for (TestSuite suite : sorted) {
169 writer.append("<TestSuite name=\"").append(suite.getName()).println("\">");
171 String namePart = suite.getName();
177 writeTestSuites(writer, suite.getSuites(), nameCollector);
178 writeTestCases(writer, suite.getCases(), nameCollector);
  /external/lldb/test/unittest2/test/
test_setups.py 15 suite = unittest2.TestSuite()
18 suite.addTests(tests)
22 # creating a nested suite exposes some potential bugs
24 realSuite.addTest(suite)
26 suite.addTest(unittest2.TestSuite())
247 suite = unittest2.TestSuite((first, second, third, fourth, fifth, sixth))
250 result = runner.run(suite)
463 suite = unittest2.defaultTestLoader.loadTestsFromTestCase(Test)
464 suite.debug()
496 suite = unittest2.TestSuite(
    [all...]
  /external/lldb/test/unittest2/
loader.py 12 from unittest2 import case, suite namespace
65 suiteClass = suite.TestSuite
69 """Return a suite of all tests cases contained in testCaseClass"""
70 if issubclass(testCaseClass, suite.TestSuite):
80 """Return a suite of all tests cases contained in the given module"""
98 """Return a suite of all tests cases given a string specifier.
145 """Return a suite of all tests cases found using the given sequence
317 suiteClass=suite.TestSuite):
321 suiteClass=suite.TestSuite):

Completed in 195 milliseconds

<<11121314151617181920>>