Searched refs:actual (Results 101 - 106 of 106) sorted by relevance

12345

/openjdk7/jdk/src/macosx/native/jobjc/src/core/
H A DPrimitiveCoder.hs229 -- Generate push and pop methods that convert and proxy to actual implementation.
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DTransTypes.java765 Type actual = actuals.head;
768 if (!types.isSameType(types.erasure(actual),
H A DAttr.java1419 // The types of the actual method arguments.
1422 // The types of the actual method type arguments.
1517 // whose formal argument types is exactly the list of actual
2838 private void assertConvertible(JCTree tree, Type actual, Type formal, Warner warn) { argument
2839 if (types.isConvertible(actual, formal, warn))
2843 && types.isSubtype(actual, types.supertype(formal))
2844 && types.isSubtypeUnchecked(actual, types.interfaces(formal), warn))
2849 chk.typeError(tree.pos(), diags.fragment("incompatible.types"), actual, formal);
2851 + " actual:" + actual
[all...]
H A DCheck.java778 // For matching pairs of actual argument types `a' and
795 // Let the actual arguments know their bound
805 Type actual = args.head;
806 if (!isTypeArgErroneous(actual) &&
808 !checkExtends(actual, bounds.head)) {
1084 // For matching pairs of actual argument types `a' and
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMark.cpp1435 // We're not OK if expected marked bytes > actual marked bytes. It means
1436 // we have missed accounting some objects during the actual marking.
1440 "expected: " SIZE_FORMAT ", actual: " SIZE_FORMAT,
1446 // Verify the bit, for this region, in the actual and expected
1449 // bitmap is set and the bit in the actual region bitmap is not.
1453 bool actual = _region_bm->at(index); local
1454 if (expected && !actual) {
1457 "expected: %s, actual: %s",
1459 BOOL_TO_STR(expected), BOOL_TO_STR(actual));
1466 // bit map and the corresponding bit in the actual bitma
[all...]
/openjdk7/jdk/test/java/util/regex/
H A DRegExTest.java3151 String expected, String actual) {
3156 System.err.println("Actual = " + actual);
3150 explainFailure(String pattern, String data, String expected, String actual) argument

Completed in 66 milliseconds

12345