/external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/ |
7.6.js | 301 testcases[tc].actual, 303 testcases[tc].actual );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8.2.1.js | 95 testcases[tc].actual, 97 testcases[tc].actual );
|
15.8.2.11.js | 90 testcases[tc].actual, 92 testcases[tc].actual );
|
15.8.2.12.js | 88 testcases[tc].actual, 90 testcases[tc].actual );
|
15.8.2.17.js | 91 testcases[tc].actual, 93 testcases[tc].actual );
|
15.8.2.6.js | 100 testcases[tc].actual, 102 testcases[tc].actual );
|
15.8.2.9.js | 97 testcases[tc].actual, 99 testcases[tc].actual );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.1.js | 129 testcases[tc].actual, 131 testcases[tc].actual );
|
15.5.2.js | 104 testcases[tc].actual, 106 testcases[tc].actual );
|
15.5.4.4-2.js | 118 testcases[tc].actual, 120 testcases[tc].actual );
|
15.5.4.5-2.js | 118 testcases[tc].actual, 120 testcases[tc].actual );
|
15.5.4.5-3.js | 125 testcases[tc].actual, 127 testcases[tc].actual );
|
15.5.4.6-1.js | 148 testcases[tc].actual, 149 testcases[tc].description +" = "+ testcases[tc].actual );
|
15.5.4.8-2.js | 240 testcases[tc].actual, 242 testcases[tc].actual );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/TypeConversion/ |
9.2.js | 103 testcases[tc].actual, 105 testcases[tc].actual );
|
9.6.js | 63 testcases[tc].actual, 65 testcases[tc].actual );
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_2/Array/ |
splice1.js | 115 " actual spliced: " + String(actualSpliced) + "\n" + 117 " actual removed: " + String(actualRemoved) + "\n" + 142 testcases[tc].actual, 144 testcases[tc].actual );
|
splice2.js | 113 " actual spliced: " + String(actualSpliced) + "\n" + 115 " actual removed: " + String(actualRemoved) + "\n" + 140 testcases[tc].actual, 142 testcases[tc].actual );
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_2/function/ |
tostring-2.js | 159 testcases[tc].actual, 161 testcases[tc].actual );
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
NodeImpl.java | 270 * Checks whether a required string matches an actual string. This utility 275 * @param actual The actual string. 276 * @return True if and only if the actual string matches the required one. 278 private static boolean matchesName(String required, String actual, boolean wildcard) { 284 return (actual == null); 287 return required.equals(actual); 295 * @return True if and only if the actual name matches the required one. 308 * @return True if and only if the actual namespace and local name match 552 String actual = lookupNamespaceURI(prefix) local 557 String actual = lookupNamespaceURI(null); \/\/ null yields the default namespace local [all...] |
/packages/apps/Email/tests/src/com/android/exchange/ |
CalendarSyncEnablerTest.java | 120 private static void checkNotificationEmailAddresses(String actual, Account[] baseAccounts, 122 // Build and sort actual string array. 123 final String[] actualArray = TextUtils.split(actual, " ");
|
/external/webkit/WebKitTools/pywebsocket/test/ |
test_dispatch.py | 99 for expected, actual in zip(expected_paths, paths): 100 self.assertEqual(expected, actual) 128 for expected, actual in zip(expected_warnings, warnings): 129 self.assertEquals(expected, actual)
|
/frameworks/base/core/tests/coretests/src/com/android/internal/net/ |
DomainNameValidatorTest.java | 135 Boolean actual = DomainNameValidator.match(certificate, thisDomain); local 136 assertEquals(message, (Object) expected, (Object) actual); 169 boolean actual = DomainNameValidator.matchDns(thisDomain, thatDomain); 170 assertEquals(message, expected, actual); 174 * Test {@link DomainNameValidator#match} with actual certificates.
|
/cts/tests/tests/view/src/android/view/cts/ |
SurfaceViewTest.java | 158 SurfaceHolder actual = mMockSurfaceView.getHolder(); local 159 assertNotNull(actual); 160 assertTrue(actual instanceof SurfaceHolder);
|
/external/chromium/third_party/icu/source/test/intltest/ |
restsnew.cpp | 36 #define CONFIRM_EQ(actual,expected) if ((expected)==(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of " + (expected)); } 37 #define CONFIRM_GE(actual,expected) if ((actual)>=(expected)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x >= " + (expected)); } 38 #define CONFIRM_NE(actual,expected) if ((expected)!=(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x != " + (expected)); } 40 #define CONFIRM_UErrorCode(actual,expected) if ((expected)==(actual)) { record_pass(); } else { record_fail(); errln(action + (Unico (…) [all...] |