Searched defs:actual (Results 51 - 75 of 412) sorted by relevance

1234567891011>>

/external/compiler-rt/test/Unit/
H A Dunorddf2vfp_test.c25 int actual = __unorddf2vfp(a, b); local
27 if (actual != expected)
29 a, b, actual, expected);
30 return actual != expected;
H A Dunordsf2vfp_test.c25 int actual = __unordsf2vfp(a, b); local
27 if (actual != expected)
29 a, b, actual, expected);
30 return actual != expected;
/external/elfutils/tests/
H A Dhash.c37 unsigned long int actual = elf_hash (name); local
39 return actual != expected;
/external/icu4c/common/
H A Dlocbased.h52 * object. Either the valid or the actual locale may be
62 * object. Either the valid or the actual locale may be
74 * @param actual the ID of the actual locale
76 void setLocaleIDs(const char* valid, const char* actual);
82 char* actual; member in class:LocaleBased
86 valid(validAlias), actual(actualAlias) {
92 valid((char*)validAlias), actual((char*)actualAlias) {
/external/junit/src/org/junit/internal/
H A DExactComparisonCriteria.java7 protected void assertElementsEqual(Object expected, Object actual) { argument
8 Assert.assertEquals(expected, actual);
H A DInexactComparisonCriteria.java13 protected void assertElementsEqual(Object expected, Object actual) { argument
15 Assert.assertEquals((Double)expected, (Double)actual, fDelta);
17 Assert.assertEquals((Float)expected, (Float)actual, fDelta);
/external/skia/src/svg/
H A DSkSVG.cpp24 size_t actual = stream->read(data, size); variable
25 SkASSERT(size == actual);
27 return parser.parse(data, actual, &fErrorCode, &fErrorLineNumber);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Object/
H A Dregress-72773.js36 var actual = ''; variable
56 actual = getJSClass(e);
72 reportCompare(expect, actual, status);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Array/
H A Dregress-305002.js40 var actual = ''; variable
54 actual = [].every(callback) && notcalled;
56 reportCompare(expect, actual, summary);
H A Dregress-304828.js40 var actual = ''; variable
53 actual = Array.prototype.join.call(value);
57 actual = e + '';
59 reportCompare(expect, actual, summary + ': join');
66 actual = Array.prototype.reverse.call(value) + '';
70 actual = e + '';
72 reportCompare(expect, actual, summary + ': reverse');
79 actual = Array.prototype.sort.call(value) + '';
83 actual = e + '';
85 reportCompare(expect, actual, summar
[all...]
/external/easymock/src/org/easymock/
H A DArgumentsMatcher.java39 * @param actual
40 * the actual arguments.
43 boolean matches(Object[] expected, Object[] actual); argument
/external/easymock/src/org/easymock/internal/
H A DAlwaysMatcher.java25 public boolean matches(Object[] expected, Object[] actual) { argument
H A DArrayMatcher.java27 public boolean argumentMatches(Object expected, Object actual) { argument
28 return new ArrayEquals(expected).matches(actual);
/external/icu4c/test/cintltst/
H A Dcgendtst.c38 UGender actual; local
43 actual = ugender_getListGender(actual_gi, kAllFemale, LENGTHOF(kAllFemale), &status);
48 if (actual != UGENDER_FEMALE) {
49 log_err("Expected UGENDER_FEMALE got %d\n", actual);
/external/mockito/src/org/mockito/internal/invocation/
H A DArgumentsComparator.java16 public boolean argumentsMatch(InvocationMatcher invocationMatcher, Invocation actual) { argument
17 Object[] actualArgs = actual.getArguments();
18 return argumentsMatch(invocationMatcher, actualArgs) || varArgsMatch(invocationMatcher, actual);
34 private boolean varArgsMatch(InvocationMatcher invocationMatcher, Invocation actual) { argument
35 if (!actual.getMethod().isVarArgs()) {
41 Object[] rawArgs = actual.getRawArguments();
/external/mockito/src/org/mockito/internal/junit/
H A DJUnitTool.java26 public static AssertionError createArgumentsAreDifferentException(String message, String wanted, String actual) { argument
29 AssertionError throwable = (AssertionError) clazz.getConstructors()[0].newInstance(message, wanted, actual);
/external/mockito/src/org/mockito/internal/reporting/
H A DSmartPrinter.java12 * Makes sure both wanted and actual are printed consistently (single line or multiline)
19 private final String actual; field in class:SmartPrinter
21 public SmartPrinter(InvocationMatcher wanted, Invocation actual, Integer ... indexesOfMatchersToBeDescribedWithExtraTypeInfo) { argument
23 printSettings.setMultiline(wanted.toString().contains("\n") || actual.toString().contains("\n"));
27 this.actual = printSettings.print(actual);
35 return actual;
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
H A Dexec-001.js31 testcases[0] = { expect:"PASSED", actual:"PASSED", description:"NO TESTS EXIST" };
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
H A Dreplace-001.js58 testcases[0] = { expect:"PASSED", actual:"PASSED", description:"NO TESTS EXIST" };
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Array/
H A D15.4.4.3-1.js40 var actual = ''; variable
48 actual = n;
63 reportCompare(expect, actual, summary);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Date/
H A D15.9.5.3.js45 var actual = ''; variable
61 actual = typeof (now.toDateString());
66 actual = Date.prototype.toDateString.length;
73 actual = (Date.parse(now.toDateString()) - (midnight(now)).valueOf()) == 0;
114 testcases[tc++] = new TestCase( SECTION, status, expect, actual);
123 actual = Date.parse(givenDate.toDateString());
142 testcases[tc].actual,
143 testcases[tc].description + " = " + testcases[tc].actual );
H A D15.9.5.5.js45 var actual = ''; variable
61 actual = typeof (now.toLocaleString());
66 actual = Date.prototype.toLocaleString.length;
77 testcases[tc++] = new TestCase( SECTION, status, expect, actual);
87 testcases[tc].actual,
88 testcases[tc].description + " = " + testcases[tc].actual );
H A D15.9.5.6.js45 var actual = ''; variable
61 actual = typeof (now.toLocaleDateString());
66 actual = Date.prototype.toLocaleDateString.length;
73 actual = (Date.parse(now.toLocaleDateString()) - (midnight(now)).valueOf()) == 0;
114 testcases[tc++] = new TestCase( SECTION, status, expect, actual);
123 actual = Date.parse(givenDate.toLocaleDateString());
142 testcases[tc].actual,
143 testcases[tc].description + " = " + testcases[tc].actual );
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-68498-002.js36 var actual = [ ]; variable
44 function f(s) {eval(s); actual[0]=y; return delete y;}
47 // Set the actual-results array. The next line will set actual[0] and actual[1] in one shot
48 actual[1] = f('var y = 42');
49 actual[2] = 'y' in self && y;
70 reportCompare(expect[i], actual[i], getStatus(i));
H A Dregress-68498-003.js37 var actual = [ ]; variable
48 // Set the actual-results array -
49 actual[0] = f('var y = 43');
50 actual[1] = 'y' in self && y;
51 actual[2] = delete y;
52 actual[3] = 'y' in self;
74 reportCompare(expect[i], actual[i], getStatus(i));

Completed in 986 milliseconds

1234567891011>>