Home
last modified time | relevance | path

Searched refs:toTest (Results 1 – 25 of 26) sorted by relevance

12

/external/guava/guava-tests/test/com/google/common/base/
DToStringHelperTest.java38 String toTest = Objects.toStringHelper(this).toString(); in testConstructor_instance() local
39 assertEquals("ToStringHelperTest{}", toTest); in testConstructor_instance()
43 String toTest = Objects.toStringHelper(this).toString(); in testConstructorLenient_instance() local
44 assertTrue(toTest, toTest.matches(".*\\{\\}")); in testConstructorLenient_instance()
49 String toTest = Objects.toStringHelper(new TestClass()).toString(); in testConstructor_innerClass() local
50 assertEquals("TestClass{}", toTest); in testConstructor_innerClass()
54 String toTest = Objects.toStringHelper(new TestClass()).toString(); in testConstructorLenient_innerClass() local
55 assertTrue(toTest, toTest.matches(".*\\{\\}")); in testConstructorLenient_innerClass()
60 String toTest = Objects.toStringHelper(new Object() {}).toString(); in testConstructor_anonymousClass() local
61 assertEquals("{}", toTest); in testConstructor_anonymousClass()
[all …]
/external/tpm2/
DCryptSelfTest.c22 ALGORITHM_VECTOR *toTest // IN: the vector of the algorithms to test in CryptRunSelfTests() argument
30 if(TEST_BIT(alg, *toTest)) in CryptRunSelfTests()
32 TPM_RC result = CryptTestAlgorithm(alg, toTest); in CryptRunSelfTests()
91 TPML_ALG *toTest, // IN: list of algorithms to be tested in CryptIncrementalSelfTest() argument
98 pAssert(toTest != NULL && toDoList != NULL); in CryptIncrementalSelfTest()
99 if(toTest->count > 0) in CryptIncrementalSelfTest()
102 for(i = 0; i < toTest->count; i++) in CryptIncrementalSelfTest()
104 TPM_ALG_ID alg = toTest->algorithms[i]; in CryptIncrementalSelfTest()
167 ALGORITHM_VECTOR *toTest in CryptTestAlgorithm() argument
175 TPM_RC TestAlgorithm(TPM_ALG_ID alg, ALGORITHM_VECTOR *toTest); in CryptTestAlgorithm()
[all …]
DCryptSelfTest_fp.h11 TPML_ALG *toTest, // IN: list of algorithms to be tested
17 TPM_RC CryptTestAlgorithm(TPM_ALG_ID alg, ALGORITHM_VECTOR *toTest);
DIncrementalSelfTest.c29 result = CryptIncrementalSelfTest(&in->toTest, &out->toDoList); in TPM2_IncrementalSelfTest()
DIncrementalSelfTest_fp.h12 typedef struct { TPML_ALG toTest; } IncrementalSelfTest_In; member
DMarshal_IncrementalSelfTest.c43 result = TPML_ALG_Unmarshal(&target->toTest, buffer, size); in IncrementalSelfTest_In_Unmarshal()
Dpart4.txt23974 …7 ALGORITHM_VECTOR *toTest // IN: the vector of the algorithms to te…
23983 16 if(TEST_BIT(alg, *toTest))
23985 18 TPM_RC result = CryptTestAlgorithm(alg, toTest);
24036 …s function is used to perform an incremental self-test. This implementation will perform the toTest
24045 TPM_RC_TESTING if toTest list is not empty
24046 TPM_RC_VALUE an algorithm in the toTest list is not implemented
24050 46 TPML_ALG *toTest, // IN: list of algorithms to be tested
24058 54 pAssert(toTest != NULL && toDoList != NULL);
24059 55 if(toTest->count > 0)
24061 57 // Transcribe the toTest list into the toTestVector
[all …]
Dpart3.txt2041 NOTE 1 The toTest list indicates the algorithms that software would like the TPM to test …
2045 …The implementation may treat algorithms on the toTest list as either 'test each completely' or 'te…
2048 EXAMPLE If the toTest list includes AES and CTR mode, it may be interpreted as a request t…
2053 If toTest contains an algorithm that has already been tested, it will not be tested again.
2059 the algorithms on the toTest list are scheduled to be tested by this command.
2065 Making toTest an empty list allows the determination of the algorithms that remain untested without
2067 If toTest is not an empty list, the TPM shall return TPM_RC_SUCCESS for this command and then return
2074 NOTE 5 If none of the algorithms listed in toTest is in the toDoList, then no tests will …
2107 TPML_ALG toTest list of algorithms that should be tested
2138 TPM_RC_VALUE an algorithm in the toTest list is not implemented
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DULocaleTest.java1621 String toTest [][] = { in TestOrientation() local
1631 for (int i = 0; i < toTest.length; ++i) { in TestOrientation()
1632 ULocale loc = new ULocale(toTest[i][0]); in TestOrientation()
1635 if (!co.equals(toTest[i][1])) { in TestOrientation()
1636 …errln("Locale \"" + toTest[i][0] + "\" should have \"" + toTest[i][1] + "\" character orientation,… in TestOrientation()
1638 else if (!lo.equals(toTest[i][2])) { in TestOrientation()
1639 …errln("Locale \"" + toTest[i][0] + "\" should have \"" + toTest[i][2] + "\" line orientation, but … in TestOrientation()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DULocaleTest.java1617 String toTest [][] = { in TestOrientation() local
1627 for (int i = 0; i < toTest.length; ++i) { in TestOrientation()
1628 ULocale loc = new ULocale(toTest[i][0]); in TestOrientation()
1631 if (!co.equals(toTest[i][1])) { in TestOrientation()
1632 …errln("Locale \"" + toTest[i][0] + "\" should have \"" + toTest[i][1] + "\" character orientation,… in TestOrientation()
1634 else if (!lo.equals(toTest[i][2])) { in TestOrientation()
1635 …errln("Locale \"" + toTest[i][0] + "\" should have \"" + toTest[i][2] + "\" line orientation, but … in TestOrientation()
/external/icu/icu4c/source/test/cintltst/
Dcloctst.c2980 static const OrientationStruct toTest [] = { in TestOrientation() local
2994 for (; i < sizeof(toTest) / sizeof(toTest[0]); ++i) { in TestOrientation()
2997 const char* const localeId = toTest[i].localeId; in TestOrientation()
2999 const ULayoutType expectedCO = toTest[i].character; in TestOrientation()
3001 const ULayoutType expectedLO = toTest[i].line; in TestOrientation()
/external/icu/icu4c/source/test/intltest/
Dusettest.cpp1740 UnicodeSet &toTest = bitsToSet(i, aa); in TestExhaustive() local
1743 checkRoundTrip(toTest); in TestExhaustive()
1745 checkSerializeRoundTrip(toTest, ec); in TestExhaustive()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DTransliteratorTest.java3182 UnicodeSet toTest = disorderedMarks; in TestSourceTargetSet2() local
3192 for (String s : toTest) { in TestSourceTargetSet2()
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DTransliteratorTest.java3178 UnicodeSet toTest = disorderedMarks; in TestSourceTargetSet2() local
3188 for (String s : toTest) { in TestSourceTargetSet2()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/tpm2/generator/
Draw_commands.txt3175 The toTest list indicates the algorithms that software would like the TPM to test in anticipation of
3179 If toTest contains an algorithm that has already been tested, it will not be tested again.
3186 the algorithms on the toTest list are scheduled to be tested by this command.
3187 Making toTest an empty list allows the determination of the algorithms that remain untested without
3189 If toTest is not an empty list, the TPM shall return TPM_RC_SUCCESS for this command and then return
3199 If none of the algorithms listed in toTest is in the toDoList, then no tests will be performed.
3247 toTest
3324 return CryptIncrementalSelfTest(&in->toTest, &out->toDoList);
Draw_commands_fixed.txt3175 The toTest list indicates the algorithms that software would like the TPM to test in anticipation of
3179 If toTest contains an algorithm that has already been tested, it will not be tested again.
3186 the algorithms on the toTest list are scheduled to be tested by this command.
3187 Making toTest an empty list allows the determination of the algorithms that remain untested without
3189 If toTest is not an empty list, the TPM shall return TPM_RC_SUCCESS for this command and then return
3199 If none of the algorithms listed in toTest is in the toDoList, then no tests will be performed.
3247 toTest
3324 return CryptIncrementalSelfTest(&in->toTest, &out->toDoList);
Dcommands.txt69 _NAME toTest
/external/guice/extensions/struts2/lib/
Dant-1.6.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/jarjar/lib/
Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...

12