Searched refs:expected (Results 351 - 358 of 358) sorted by relevance

<<1112131415

/openjdk7/jdk/test/java/lang/StrictMath/
H A DLog10Tests.java46 static int testLog10Case(double input, double expected) { argument
48 StrictMath.log10(input), expected);
H A DExpm1Tests.java45 static int testExpm1Case(double input, double expected) { argument
47 StrictMath.expm1(input), expected);
H A DHypotTests.java45 static int testHypotCase(double input1, double input2, double expected) { argument
47 StrictMath.hypot(input1, input2), expected);
/openjdk7/jdk/test/java/util/NavigableMap/
H A DLockStep.java186 static void equalNext(final Iterator<?> it, Object expected) { argument
189 equal(it.next(), expected);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMark.cpp815 // This is the start of the marking cycle, we're expected all
1200 // This is the end of the marking cycle, we're expected all
1423 // this region and set the corresponding bits in the expected region
1435 // We're not OK if expected marked bytes > actual marked bytes. It means
1440 "expected: " SIZE_FORMAT ", actual: " SIZE_FORMAT,
1446 // Verify the bit, for this region, in the actual and expected
1448 // We're not OK if the bit in the calculated expected region
1452 bool expected = _exp_region_bm->at(index); local
1454 if (expected && !actual) {
1457 "expected
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java578 SymtabEntry expected) throws IOException, ParseException
580 return scopedName( container, expected, true ) ;
583 SymtabEntry scopedName (SymtabEntry container, SymtabEntry expected, argument
627 // Make the entry the expected entry. The generators will
631 (entry = expected).name (name);
1930 int [] expected = {Token.Float, Token.Double};
2966 // Missing a semicolon is a common error. If a semicolon was expected,
577 scopedName(SymtabEntry container, SymtabEntry expected) argument
/openjdk7/jdk/test/java/util/Collection/
H A DMOAT.java994 static void equalNext(final Iterator<?> it, Object expected) { argument
997 equal(it.next(), expected);
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp1143 assert(UseConcMarkSweepGC, "CMS is expected to be on here");
1758 // may have expected from the combination they asked for. It's

Completed in 71 milliseconds

<<1112131415