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

12345

/openjdk7/hotspot/src/share/vm/utilities/
H A DquickSort.hpp131 static bool compare_arrays(int* actual, int* expected, int length);
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DJavaKeyStore.java764 byte computed[], actual[];
766 actual = new byte[computed.length];
767 dis.readFully(actual);
769 if (computed[i] != actual[i]) {
H A DPolicyParser.java483 // disallow WILDCARD_CLASS && actual name
1204 public ParsingException(int line, String expect, String actual) { argument
1206 "], found [" + actual + "]");
1208 ("line.number.expected.expect.found.actual."));
1209 Object[] source = {new Integer(line), expect, actual};
/openjdk7/jdk/test/java/util/concurrent/FutureTask/
H A DCustomized.java40 static void equal(long expected, AtomicLong actual) { argument
41 equal(expected, actual.get());
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokers.java347 WrongMethodTypeException newWrongMethodTypeException(MethodType actual, MethodType expected) { argument
349 return new WrongMethodTypeException("expected "+expected+" but found "+actual);
358 MethodType actual = mh.type();
359 if (actual != expected)
360 throw newWrongMethodTypeException(expected, actual);
369 //MethodType actual = mh.type();
H A DMethodHandleImpl.java458 // but the actual exception raised by an arity mismatch should be WMTE
897 Class<?> actual = Reflection.getCallerClass();
898 if (actual != expected && actual != expected2)
899 throw new InternalError("found "+actual.getName()+", expected "+expected.getName()
/openjdk7/jdk/test/java/lang/invoke/
H A DInvokeGenericTest.java126 Object actual = calledLog.get(calledLog.size() - 1);
127 if (expected.equals(actual) && verbosity < 9) return;
130 System.out.println("actual: "+actual);
132 System.out.println("act. types: "+getClasses(actual));
133 assertEquals("previous method call", expected, actual);
H A DMethodHandlesTest.java140 Object actual = calledLog.get(calledLog.size() - 1);
141 if (expected.equals(actual) && verbosity < 9) return;
144 System.out.println("actual: "+actual);
146 System.out.println("act. types: "+getClasses(actual));
147 assertEquals("previous method call", expected, actual);
2683 String actual = "";
2688 case 1: actual += x; continue;
2689 case 3: actual += ((String)x).substring((int)(Object)l.get(1), (int)(Object)l.get(2)); continue;
2691 actual
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDT.cpp1016 ULONG actual = 1; local
1018 res = pEnumFormatEtc->Next((ULONG)1, &tmp, &actual);
1341 ULONG actual = 0; local
1344 switch (res = m_istream->Read((void *)&b, (ULONG)1, &actual)) {
1349 return (jint)(actual == 0 ? -1 : b);
1394 ULONG actual = 0; local
1398 switch (res = m_istream->Read((void *)(local + off), (ULONG)len, &actual)) {
1401 int eof = (actual == 0);
1404 return (jint)(!eof ? actual : -1);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DXmlPolicyModelUnmarshaller.java323 * Method checks whether the actual name of the end tag is equal to the expected name - the name of currently unmarshalled
327 * @param element The actual element.
328 * @throws PolicyException If the actual element name did not match the expected element.
331 final QName actual = element.getName();
332 if (!expected.equals(actual)) {
333 throw LOGGER.logSevereException(new PolicyException(LocalizationMessages.WSP_0003_UNMARSHALLING_FAILED_END_TAG_DOES_NOT_MATCH(expected, actual)));
/openjdk7/jdk/test/sun/java2d/OpenGL/
H A DDrawBufImgOp.java379 Color actual = new Color(testImg.getRGB(x, y));
380 if (!isSameColor(expected, actual, tolerance)) {
383 " actual="+actual+
H A DGradientPaints.java262 Color actual = new Color(testImg.getRGB(x, y));
263 if (!isSameColor(expected, actual, tolerance)) {
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DJceKeyStore.java861 byte computed[], actual[];
863 actual = new byte[computed.length];
864 dis.readFully(actual);
866 if (computed[i] != actual[i]) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/client/
H A DHttpClientTransport.java317 WSChunkedOuputStream(OutputStream actual, int chunkSize) { argument
318 super(actual);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFFileParser.java782 int actual = num_buckets * 4 + num_chains * 4 + 8;
783 if (length != actual) {
785 actual + "bytes, expected to " +
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DConstantPool.java718 int actual = cp.get(reference_index).getTag();
720 switch (actual) {
723 expected = actual;
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCryptoPolicyParser.java703 ParsingException(int line, String expect, String actual) { argument
704 super("line "+line+": expected '"+expect+"', found '"+actual+"'");
/openjdk7/jdk/test/java/util/Locale/
H A DInternationalBAT.java261 byte[] expected, byte[] actual) {
267 dumpBytes(actual);
260 reportConversionError(String encoding, byte[] expected, byte[] actual) argument
/openjdk7/langtools/test/tools/javac/varargs/7042566/
H A DT7042566.java299 for (TypeKind actual : actuals) {
300 if (!actual.isSubtypeOf(formals.head))
/openjdk7/jdk/test/java/lang/Math/
H A DPowTests.java141 double actual;
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DPolicyParser.java364 // disallow WILDCARD_CLASS && actual name
950 public ParsingException(int line, String expect, String actual) { argument
952 expect + rb.getString(".found.") + actual +
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DWrapper.java371 private static ClassCastException newClassCastException(Class<?> actual, Class<?> expected) { argument
372 return new ClassCastException(actual + " is not compatible with " + expected);
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp391 void check_type (CellTypeState expected, CellTypeState actual);
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java1367 ImageCanvas actual; field in class:RenderClipTest.ErrorWindow
1375 actual = new ImageCanvas();
1381 addImagePanel(actual, "Actual clipped");
1399 actual.setImage(imgtst);
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME107 actual image scaling function (see below). Most of the definitions
256 file <img_scaleloop.h> to do the actual work. When you compile this file

Completed in 144 milliseconds

12345