Searched refs:checkResult (Results 1 - 22 of 22) sorted by relevance

/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DJoinerTest.java61 checkResult(J, ITERABLE_1, "1");
62 checkResult(J, ITERABLE_12, "1-2");
63 checkResult(J, ITERABLE_123, "1-2-3");
91 checkResult(onChar, ITERABLE_1, "1");
92 checkResult(onChar, ITERABLE_12, "1-2");
93 checkResult(onChar, ITERABLE_123, "1-2-3");
102 checkResult(skipNulls, ITERABLE_1, "1");
103 checkResult(skipNulls, ITERABLE_12, "1-2");
104 checkResult(skipNulls, ITERABLE_123, "1-2-3");
105 checkResult(skipNull
177 private static void checkResult(Joiner joiner, Iterable<Integer> parts, String expected) { method in class:JoinerTest
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DJoinerTest.java63 checkResult(J, ITERABLE_1, "1");
64 checkResult(J, ITERABLE_12, "1-2");
65 checkResult(J, ITERABLE_123, "1-2-3");
93 checkResult(onChar, ITERABLE_1, "1");
94 checkResult(onChar, ITERABLE_12, "1-2");
95 checkResult(onChar, ITERABLE_123, "1-2-3");
104 checkResult(skipNulls, ITERABLE_1, "1");
105 checkResult(skipNulls, ITERABLE_12, "1-2");
106 checkResult(skipNulls, ITERABLE_123, "1-2-3");
107 checkResult(skipNull
179 private static void checkResult(Joiner joiner, Iterable<Integer> parts, String expected) { method in class:JoinerTest
[all...]
/external/icu/icu4c/source/i18n/
H A Duspoof.cpp335 USpoofCheckResult* checkResult,
347 int32_t result = uspoof_check2UnicodeString(sc, idStr, checkResult, status);
371 USpoofCheckResult* checkResult,
378 int32_t result = uspoof_check2UnicodeString(sc, idStr, checkResult, status);
504 int32_t checkImpl(const SpoofImpl* This, const UnicodeString& id, CheckResult* checkResult, UErrorCode* status) { argument
506 U_ASSERT(checkResult != NULL);
507 checkResult->clear();
515 checkResult->fRestrictionLevel = idRestrictionLevel;
524 checkResult->fNumerics = numerics; // UnicodeSet::operator=
585 checkResult
333 uspoof_check2(const USpoofChecker *sc, const UChar* id, int32_t length, USpoofCheckResult* checkResult, UErrorCode *status) argument
369 uspoof_check2UTF8(const USpoofChecker *sc, const char *id, int32_t length, USpoofCheckResult* checkResult, UErrorCode *status) argument
590 uspoof_check2UnicodeString(const USpoofChecker *sc, const icu::UnicodeString &id, USpoofCheckResult* checkResult, UErrorCode *status) argument
738 CheckResult* checkResult = new CheckResult(); local
747 uspoof_closeCheckResult(USpoofCheckResult* checkResult) argument
754 uspoof_getCheckResultChecks(const USpoofCheckResult *checkResult, UErrorCode *status) argument
761 uspoof_getCheckResultRestrictionLevel(const USpoofCheckResult *checkResult, UErrorCode *status) argument
768 uspoof_getCheckResultNumerics(const USpoofCheckResult *checkResult, UErrorCode *status) argument
[all...]
/external/deqp/framework/common/
H A DtcuResultCollector.hpp56 bool checkResult (bool condition, qpTestResult result, const std::string& msg);
H A DtcuResultCollector.cpp87 bool ResultCollector::checkResult (bool condition, qpTestResult result, const std::string& msg) function in class:tcu::ResultCollector
101 return checkResult(condition, QP_TEST_RESULT_FAIL, msg);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DTextTrieMapTest.java80 checkResult(itr, TESTCASES[i][1]);
92 checkResult(itr, TESTCASES[i][1]);
102 checkResult(itr, new Object[]{FOO, SUN});
116 checkResult(itr, TESTCASES[i][2]);
128 checkResult(itr, TESTCASES[i][2]);
138 checkResult(itr, new Object[]{SUN, FOO, BAR});
151 private void checkResult(Iterator itr, Object expected) { method in class:TextTrieMapTest
/external/icu/icu4c/source/i18n/unicode/
H A Duspoof.h234 * USpoofCheckResult* checkResult = uspoof_openCheckResult(&status);
235 * int32_t bitmask = uspoof_check2(sc, str, -1, checkResult, &status);
238 * int32_t failures2 = uspoof_getCheckResultChecks(checkResult, &status);
246 * uspoof_closeCheckResult(checkResult);
265 * LocalUSpoofCheckResultPointer checkResult(uspoof_openCheckResult(&status));
266 * int32_t bitmask = uspoof_check2UnicodeString(sc.getAlias(), str, checkResult.getAlias(), &status);
269 * int32_t failures2 = uspoof_getCheckResultChecks(checkResult.getAlias(), &status);
327 * LocalUSpoofCheckResultPointer checkResult(uspoof_openCheckResult(&status));
328 * int32_t bitmask = uspoof_check2UnicodeString(sc.getAlias(), str, checkResult.getAlias(), &status);
330 * URestrictionLevel restrictionLevel = uspoof_getCheckResultRestrictionLevel(checkResult
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DTextTrieMapTest.java79 checkResult(itr, TESTCASES[i][1]);
91 checkResult(itr, TESTCASES[i][1]);
101 checkResult(itr, new Object[]{FOO, SUN});
115 checkResult(itr, TESTCASES[i][2]);
127 checkResult(itr, TESTCASES[i][2]);
137 checkResult(itr, new Object[]{SUN, FOO, BAR});
150 private void checkResult(Iterator itr, Object expected) { method in class:TextTrieMapTest
/external/smali/smalidea/src/test/java/org/jf/smalidea/
H A DLightCodeInsightParsingTestCase.java87 protected void doTest(boolean checkResult) { argument
109 if (checkResult){
110 checkResult(name, f);
129 checkResult(name + suffix, myFile);
137 checkResult(myFilePrefix + name, myFile);
155 protected void checkResult(@NonNls @TestDataFile String targetDataName, final PsiFile file) throws IOException { method in class:LightCodeInsightParsingTestCase
180 protected void checkResult(@TestDataFile @NonNls String targetDataName, final String text) throws IOException { method in class:LightCodeInsightParsingTestCase
H A DSmaliClassModifierListTest.java118 myFixture.checkResult(
135 myFixture.checkResult(
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkDefs.hpp55 #define VK_CHECK(EXPR) vk::checkResult((EXPR), #EXPR, __FILE__, __LINE__)
56 #define VK_CHECK_MSG(EXPR, MSG) vk::checkResult((EXPR), MSG, __FILE__, __LINE__)
218 void checkResult (VkResult result, const char* message, const char* file, int line);
H A DvkDefs.cpp77 void checkResult (VkResult result, const char* msg, const char* file, int line) function in namespace:vk
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/text/
H A DSpoofCheckerTest.java370 int checkResult = sc.areConfusable(s1, s2);
371 assertEquals("", SpoofChecker.MIXED_SCRIPT_CONFUSABLE | SpoofChecker.WHOLE_SCRIPT_CONFUSABLE, checkResult);
576 CheckResult checkResult = new CheckResult();
586 boolean actualValue = sc.failsChecks(testString, checkResult);
588 expectedLevel, checkResult.restrictionLevel);
619 CheckResult checkResult = new CheckResult();
627 boolean actualValue = sc.failsChecks(testString, checkResult);
628 assertEquals("", expected, checkResult.numerics);
640 CheckResult checkResult = new CheckResult();
642 sc.failsChecks(identifier, checkResult);
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
H A DSpoofCheckerTest.java369 int checkResult = sc.areConfusable(s1, s2);
370 assertEquals("", SpoofChecker.MIXED_SCRIPT_CONFUSABLE | SpoofChecker.WHOLE_SCRIPT_CONFUSABLE, checkResult);
575 CheckResult checkResult = new CheckResult();
585 boolean actualValue = sc.failsChecks(testString, checkResult);
587 expectedLevel, checkResult.restrictionLevel);
618 CheckResult checkResult = new CheckResult();
626 boolean actualValue = sc.failsChecks(testString, checkResult);
627 assertEquals("", expected, checkResult.numerics);
639 CheckResult checkResult = new CheckResult();
641 sc.failsChecks(identifier, checkResult);
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DSpoofChecker.java155 * SpoofChecker.CheckResult checkResult = new SpoofChecker.CheckResult();
156 * boolean result = sc.failsChecks("pаypаl", checkResult);
157 * System.out.println(checkResult.checks); // 16
1219 * @param checkResult
1223 public boolean failsChecks(String text, CheckResult checkResult) { argument
1227 if (checkResult != null) {
1228 checkResult.position = 0;
1229 checkResult.numerics = null;
1230 checkResult.restrictionLevel = null;
1238 if (checkResult !
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DSpoofChecker.java154 * SpoofChecker.CheckResult checkResult = new SpoofChecker.CheckResult();
155 * boolean result = sc.failsChecks("pаypаl", checkResult);
156 * System.out.println(checkResult.checks); // 16
1275 * @param checkResult
1280 public boolean failsChecks(String text, CheckResult checkResult) { argument
1284 if (checkResult != null) {
1285 checkResult.position = 0;
1286 checkResult.numerics = null;
1287 checkResult.restrictionLevel = null;
1295 if (checkResult !
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dspooftest.c475 USpoofCheckResult* checkResult = uspoof_openCheckResult(&status); local
492 result2 = uspoof_check2(sc, str, -1, checkResult, &status);
496 // Checks from checkResult should be same as those from bitmask
497 TEST_ASSERT_EQ(result1 & USPOOF_ALL_CHECKS, uspoof_getCheckResultChecks(checkResult, &status));
499 // Restriction level from checkResult should be same as that from bitmask
500 URestrictionLevel restrictionLevel = uspoof_getCheckResultRestrictionLevel(checkResult, &status);
512 uspoof_closeCheckResult(checkResult);
/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiBufferViewAccessTests.cpp70 tcu::TestStatus checkResult (deInt8 factor = 1);
776 tcu::TestStatus BufferViewTestInstance::checkResult (deInt8 factor) function in class:vkt::api::__anon3714::BufferViewTestInstance
825 tcu::TestStatus testStatus = checkResult();
843 return checkResult(factor);
/external/icu/icu4c/source/test/intltest/
H A Ditspoof.cpp60 USpoofCheckResult *checkResult; \
61 checkResult = uspoof_openCheckResult(&status); \
68 uspoof_closeCheckResult(checkResult); \
634 uspoof_check2UnicodeString(sc, testString, checkResult, &status);
635 UBool mixedNumberFailure = ((uspoof_getCheckResultChecks(checkResult, &status) & USPOOF_MIXED_NUMBERS) != 0);
637 const UnicodeSet* actualSet = UnicodeSet::fromUSet(uspoof_getCheckResultNumerics(checkResult, &status));
/external/deqp/modules/egl/
H A DteglResizeTests.cpp419 m_status.checkResult(compareCorners(oldSurface, newSurface),
478 m_status.checkResult(bufPp10km.x() >= 1 && bufPp10km.y() >= 1,
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/cldr/
H A DTestCLDRVsICU.java203 void checkResult(String value) { method in class:TestCLDRVsICU.Handler
598 handler.checkResult(lastChars.toString());
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/cldr/
H A DTestCLDRVsICU.java202 void checkResult(String value) { method in class:TestCLDRVsICU.Handler
597 handler.checkResult(lastChars.toString());

Completed in 653 milliseconds