/external/webkit/JavaScriptCore/tests/mozilla/js1_2/statements/ |
switch.js | 118 testcases[tc].actual, 120 testcases[tc].actual );
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_3/Script/ |
new-001.js | 112 testcases[tc].actual, 114 testcases[tc].actual );
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_3/inherit/ |
proto_3.js | 79 testcases[tc].actual, 81 testcases[tc].actual );
|
proto_9.js | 63 testcases[tc].actual, 65 testcases[tc].actual );
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_3/regress/ |
new-001.js | 112 testcases[tc].actual, 114 testcases[tc].actual );
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DOMTestCase.java | 107 String fragment, Boolean isAbsolute, String actual) { 110 assertNotNull(assertID, actual); 112 String uri = actual; 114 int lastPound = actual.lastIndexOf("#"); 120 uri = actual.substring(0, lastPound); 121 actualFragment = actual.substring(lastPound + 1); 133 uri = actual.substring(0, lastQuestion); 134 actualQuery = actual.substring(lastQuestion + 1); 188 // Jar URL's will have any actual path like file:/c:/somedrive...
|
/system/media/opensles/libopensles/ |
IOutputMixExt.c | 229 unsigned actual = desired; local 230 if (track->mAvail < actual) { 231 actual = track->mAvail; 233 // force actual to be a frame multiple 234 if (actual > 0) { 243 for (j = 0; j < actual; j += sizeof(stereo), ++mixBuffer, ++source) { 249 for (j = 0; j < actual; j += sizeof(stereo), ++mixBuffer, ++source) { 257 for (j = 0; j < actual; j += sizeof(stereo), ++mixBuffer, ++source) { 263 memcpy(dstWriter, track->mReader, actual); 268 dstWriter = (char *) dstWriter + actual; [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
BlurMaskFilterTest.java | 85 private void checkColor(int expected, int actual, int alphaTolerance) { 86 assertEquals(Color.red(expected), Color.red(actual)); 87 assertEquals(Color.green(expected), Color.green(actual)); 88 assertEquals(Color.blue(expected), Color.blue(actual)); 89 assertEquals(Color.alpha(expected), Color.alpha(actual), alphaTolerance);
|
ColorMatrixColorFilterTest.java | 108 private void assertColor(int expected, int actual) { 109 assertEquals(Color.red(expected), Color.red(actual), TOLERANCE); 110 assertEquals(Color.green(expected), Color.green(actual), TOLERANCE); 111 assertEquals(Color.blue(expected), Color.blue(actual), TOLERANCE); 112 assertEquals(Color.alpha(expected), Color.alpha(actual), TOLERANCE);
|
LightingColorFilterTest.java | 92 private void assertColor(int expected, int actual) { 93 assertEquals(Color.alpha(expected), Color.alpha(actual), TOLERANCE); 94 assertEquals(Color.red(expected), Color.red(actual), TOLERANCE); 95 assertEquals(Color.green(expected), Color.green(actual), TOLERANCE); 96 assertEquals(Color.blue(expected), Color.blue(actual), TOLERANCE);
|
/external/easymock/src/org/easymock/internal/ |
ExpectedInvocation.java | 88 public boolean matches(Invocation actual) {
90 actual.getMock())
91 && this.invocation.getMethod().equals(actual.getMethod())
92 && matches(actual.getArguments()) : this.invocation.matches(
93 actual, matcher);
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-85721.js | 55 var actual = ''; variable 90 actual = elapsedTime(start); 91 reportCompare(isThisFast(FAST), isThisFast(actual), status); 264 actual = elapsedTime(start); 265 reportCompare(isThisFast(FAST), isThisFast(actual), status);
|
/packages/apps/Email/src/com/android/email/mail/ |
Sender.java | 147 private LimitViolationException(int msgResourceId, long actual, long limit) { 150 mActual = actual; 154 public static void check(int msgResourceId, long actual, long limit) 156 if (actual > limit) { 157 throw new LimitViolationException(msgResourceId, actual, limit);
|
/dalvik/libdex/ |
SysUtil.c | 38 * bytes. The actual segment may be larger because mmap() operates on 120 size_t length, actual; local 132 actual = read(fd, memPtr, length); 133 if (actual != length) { 134 LOGE("only read %d of %d bytes\n", (int) actual, (int) length); 394 ssize_t actual = TEMP_FAILURE_RETRY(write(fd, buf, count)); local 395 if (actual < 0) { 399 } else if (actual != (ssize_t) count) { 401 logMsg, (int) actual, count); 402 buf = (const void*) (((const u1*) buf) + actual); [all...] |
/frameworks/base/core/tests/coretests/src/android/view/ |
VelocityTest.java | 270 private void assertEqualFuzzy(float expected, float actual, float threshold) { 271 boolean fuzzyEqual = actual >= expected - threshold && actual <= expected + threshold; 272 Assert.assertTrue("Expected: <"+expected+"> but was: <"+actual+ 276 private void assertGreater(float minExpected, float actual) { 277 Assert.assertTrue("Expected: minimum <"+minExpected+"> but was: <"+actual+">", 278 actual > minExpected); 281 private void assertLower(float maxExpected, float actual) { 282 Assert.assertTrue("Expected: maximum <"+maxExpected+"> but was: <"+actual+">", 283 actual < maxExpected) [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/ |
jsref.js | 37 testcases[tc].actual, 39 testcases[tc].actual ); 51 this.actual = a; 56 this.passed = getTestCaseResult( this.expect, this.actual ); 82 function getTestCaseResult( expect, actual ) { 85 if ( actual != actual ) { 86 if ( typeof actual == "object" ) { 87 actual = "NaN object"; 89 actual = "NaN number" [all...] |
/external/chromium/third_party/icu/source/test/letest/ |
cletest.c | 284 static le_bool compareResults(const char *testID, TestResult *expected, TestResult *actual) 289 if (actual->glyphCount != expected->glyphCount) { 291 testID, expected->glyphCount, actual->glyphCount); 295 for (i = 0; i < actual->glyphCount; i += 1) { 296 if (actual->glyphs[i] != expected->glyphs[i]) { 298 testID, i, expected->glyphs[i], actual->glyphs[i]); 303 for (i = 0; i < actual->glyphCount; i += 1) { 304 if (actual->indices[i] != expected->indices[i]) { 306 testID, i, expected->indices[i], actual->indices[i]); 311 for (i = 0; i <= actual->glyphCount; i += 1) 452 TestResult actual; local [all...] |
/external/icu4c/test/letest/ |
cletest.c | 284 static le_bool compareResults(const char *testID, TestResult *expected, TestResult *actual) 289 if (actual->glyphCount != expected->glyphCount) { 291 testID, expected->glyphCount, actual->glyphCount); 295 for (i = 0; i < actual->glyphCount; i += 1) { 296 if (actual->glyphs[i] != expected->glyphs[i]) { 298 testID, i, expected->glyphs[i], actual->glyphs[i]); 303 for (i = 0; i < actual->glyphCount; i += 1) { 304 if (actual->indices[i] != expected->indices[i]) { 306 testID, i, expected->indices[i], actual->indices[i]); 311 for (i = 0; i <= actual->glyphCount; i += 1) 452 TestResult actual; local [all...] |
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
ClassLoaderReflectionTest.java | 217 private void assertParameterizedType(Type actual, Type raw, Type... args) { 218 assertTrue(actual.toString(), actual instanceof ParameterizedType); 219 ParameterizedType parameterizedType = (ParameterizedType) actual; 225 private void assertTypeVariable(TypeVariable actual, String name, Type... bounds) { 226 assertEquals(name, actual.getName()); 227 assertEquals(Arrays.<Type>asList(bounds), Arrays.asList(actual.getBounds()));
|
/external/gtest/test/ |
gtest_repeat_test.cc | 63 #define GTEST_CHECK_INT_EQ_(expected, actual) \ 66 const int actual_val = (actual);\ 68 ::std::cout << "Value of: " #actual "\n"\ 69 << " Actual: " << actual_val << "\n"\
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
nodeinsertbefore.java | 73 java.util.List actual = new java.util.ArrayList(); local 121 actual.add(childName); 123 assertEquals("nodeNames", expected, actual);
|
nodereplacechildnewchildexists.java | 73 java.util.List actual = new java.util.ArrayList(); local 120 actual.add(childName); 122 assertEquals("childNames", expected, actual);
|
/external/webkit/LayoutTests/fast/js/resources/ |
js-test-pre.js | 125 function shouldEvaluateTo(actual, expected) { 126 // A general-purpose comparator. 'actual' should be a string to be 131 shouldBeNull(actual); 133 shouldBeUndefined(actual); 137 actualValue = eval(actual); 139 testFailed("Evaluating " + actual + ": Threw exception " + e); 145 shouldBeTrue(actual + " == '" + expected + "'"); 147 shouldBe(actual, expected); 149 shouldBe("typeof " + actual, "'boolean'"); 151 shouldBeTrue(actual); [all...] |
/bootable/bootloader/legacy/include/boot/ |
usb.h | 74 void (*complete)(struct usb_request *req, unsigned actual, int status);
|
/bootable/recovery/minzip/ |
SysUtil.c | 29 * bytes. The actual segment may be larger because mmap() operates on 86 size_t length, actual; local 98 actual = read(fd, memPtr, length); 99 if (actual != length) { 100 LOGE("only read %d of %d bytes\n", (int) actual, (int) length);
|