OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:suite
(Results
201 - 225
of
314
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/guava/guava-tests/test/com/google/common/collect/
SetOperationsTest.java
43
public static Test
suite
() {
method in class:SetOperationsTest
44
TestSuite
suite
= new TestSuite();
local
46
suite
.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() {
57
suite
.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() {
68
suite
.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() {
79
suite
.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() {
90
suite
.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() {
105
suite
.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() {
118
suite
.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() {
130
suite
.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator()
[
all
...]
SynchronizedBiMapTest.java
33
public static TestSuite
suite
() {
method in class:SynchronizedBiMapTest
34
TestSuite
suite
= new TestSuite(SynchronizedBiMapTest.class);
local
35
suite
.addTestSuite(AbstractBiMapTests.class);
36
return
suite
;
ForwardingSortedSetTest.java
105
public static Test
suite
(){
method in class:ForwardingSortedSetTest
106
TestSuite
suite
= new TestSuite();
local
108
suite
.addTestSuite(ForwardingSortedSetTest.class);
109
suite
.addTest(
124
return
suite
;
/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
...]
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
ConnectivityManagerStressTestRunner.java
49
TestSuite
suite
= new InstrumentationTestSuite(this);
local
50
suite
.addTestSuite(WifiApStress.class);
51
suite
.addTestSuite(WifiStressTest.class);
52
return
suite
;
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestRunner.java
74
TestSuite
suite
= new InstrumentationTestSuite(this);
local
75
suite
.addTestSuite(BluetoothStressTest.class);
76
return
suite
;
/frameworks/base/telephony/tests/telephonytests/src/com/android/frameworks/telephonytests/
TelephonyMockRilTestRunner.java
39
TestSuite
suite
= new InstrumentationTestSuite(this);
local
40
suite
.addTestSuite(MockRilTest.class);
42
return
suite
;
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESKeySpecTest.java
285
public static Test
suite
() {
method in class:DESKeySpecTest
OAEPParameterSpecTest.java
157
public static Test
suite
() {
method in class:OAEPParameterSpecTest
RC2ParameterSpecTest.java
205
public static Test
suite
() {
method in class:RC2ParameterSpecTest
SecretKeySpecTest.java
261
public static Test
suite
() {
method in class:SecretKeySpecTest
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
EclipseTestCollector.java
41
* Searches through given plugin, adding all TestCase classes to given
suite
42
* @param
suite
- TestSuite to add to
45
* that start with this package name will be added to
suite
48
public void addTestCases(TestSuite
suite
, Plugin plugin, String expectedPackage) {
65
suite
.addTestSuite((Class<? extends TestCase>)testClass);
77
* Returns true if given class should be added to
suite
/system/core/libctest/
ctest.c
32
/** A
suite
of tests. */
41
/** Gets the test
suite
. Creates it if necessary. */
43
static TestSuite*
suite
= NULL;
local
45
if (
suite
!= NULL) {
46
return
suite
;
49
suite
= calloc(1, sizeof(TestSuite));
50
assert(
suite
!= NULL);
52
suite
->out = tmpfile();
53
assert(
suite
->out != NULL);
55
return
suite
;
71
TestSuite*
suite
= getTestSuite();
local
88
TestSuite*
suite
= getTestSuite();
local
114
TestSuite*
suite
= getTestSuite();
local
152
TestSuite*
suite
= getTestSuite();
local
[
all
...]
/frameworks/base/test-runner/src/android/test/suitebuilder/
TestSuiteBuilder.java
59
* @param clazz Use the class from your .apk. Use the class name for the test
suite
name.
158
* Override the default name for the
suite
being built. This should generally be called if you
163
* @param newSuiteName Prefix of name to give the
suite
being built.
174
* @return The
suite
containing the requested tests.
179
// Keep track of current class so we know when to create a new sub-
suite
.
196
TestSuite
suite
= new TestSuite(getSuiteName());
local
197
suite
.addTest(new FailedToCreateTests(exception));
198
return
suite
;
204
* Subclasses use this method to determine the name of the
suite
.
206
* @return The package and
suite
name combined
[
all
...]
/cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java
51
* Main class to generate data from the test
suite
to later run from a shell
84
* the junit
suite
/tests adding order is used to generate the order of the
150
}.doRun(AllTests.
suite
());
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PBEKeySpecTest.java
301
public static Test
suite
() {
method in class:PBEKeySpecTest
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KSPrivateKeyEntryTest.java
181
public static Test
suite
() {
method in class:KSPrivateKeyEntryTest
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
X509CertFactoryImplTest.java
237
public static Test
suite
() {
method in class:X509CertFactoryImplTest
X509CertPathImplTest.java
173
public static Test
suite
() {
method in class:X509CertPathImplTest
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
SHA1ImplTest.java
247
public static Test
suite
() {
method in class:SHA1ImplTest
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
CertificateListTest.java
222
public static Test
suite
() {
method in class:CertificateListTest
EDIPartyNameTest.java
201
public static Test
suite
() {
method in class:EDIPartyNameTest
/external/guava/guava-testlib/src/com/google/common/collect/testing/
TestsForSetsInJavaUtil.java
41
* Generates a test
suite
covering the {@link Set} implementations in the
48
public static Test
suite
() {
method in class:TestsForSetsInJavaUtil
53
TestSuite
suite
= new TestSuite("java.util Sets");
local
54
suite
.addTest(testsForEmptySet());
55
suite
.addTest(testsForSingletonSet());
56
suite
.addTest(testsForHashSet());
57
suite
.addTest(testsForLinkedHashSet());
58
suite
.addTest(testsForEnumSet());
59
suite
.addTest(testsForTreeSetNatural());
60
suite
.addTest(testsForTreeSetWithComparator())
[
all
...]
/external/markdown/
regression-tests.py
215
def
suite
():
function
216
""" Build a test
suite
of the above tests and extension doctests. """
217
suite
= unittest.TestSuite()
218
suite
.addTest(unittest.makeSuite(TestMarkdown))
219
suite
.addTest(unittest.makeSuite(TestBlockParser))
220
suite
.addTest(unittest.makeSuite(TestBlockParserState))
221
suite
.addTest(unittest.makeSuite(TestHtmlStash))
222
suite
.addTest(unittest.makeSuite(TestOrderedDict))
228
suite
.addTest(DocTestSuite(module))
231
return
suite
[
all
...]
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_client_read.c
130
"cipher
suite
0x%04x", cipher_suite);
138
"cipher
suite
for a resumed connection (0x%04x != "
482
const struct tls_cipher_suite *
suite
;
local
536
"with the selected cipher
suite
");
543
suite
= tls_get_cipher_suite(conn->rl.cipher_suite);
544
if (
suite
&&
suite
->key_exchange == TLS_KEY_X_DH_anon) {
Completed in 4761 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>