Searched refs:rv (Results 76 - 97 of 97) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DParagraphView.java870 float rv = 0.5f;
874 rv = 0f;
876 return rv;
976 boolean rv = false;
982 rv = true;
985 return rv;
H A DJTextComponent.java2348 boolean rv = isEnabled();
2349 if (rv) {
2352 return rv;
/openjdk7/jdk/src/windows/native/java/net/
H A DTwoStacksPlainSocketImpl.c409 int rv; local
448 rv = NET_BindV6(&v6bind, exclBind);
449 if (rv != -1) {
473 rv = NET_WinBind(fd, (struct sockaddr *)&him, len, exclBind);
476 if (rv == -1) {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java4214 * <code>rv</code> and returns <code>rv</code>.
4215 * If <code>rv</code> is <code>null</code> a new <code>Rectangle</code>
4220 * @param rv the return value, modified to the component's bounds
4221 * @return <code>rv</code>; if <code>rv</code> is <code>null</code>
4225 public Rectangle getBounds(Rectangle rv) { argument
4226 if (rv == null) {
4230 rv.setBounds(getX(), getY(), getWidth(), getHeight());
4231 return rv;
4247 getSize(Dimension rv) argument
4269 getLocation(Point rv) argument
[all...]
H A DJList.java2188 int[] rv = new int[n];
2189 System.arraycopy(rvTmp, 0, rv, 0, n);
2190 return rv;
2273 Object[] rv = new Object[n];
2274 System.arraycopy(rvTmp, 0, rv, 0, n);
2275 return rv;
H A DJTable.java2274 int[] rv = new int[n];
2275 System.arraycopy(rvTmp, 0, rv, 0, n);
2276 return rv;
/openjdk7/jdk/src/windows/classes/java/io/
H A DWin32FileSystem.java174 String rv = sb.toString();
175 return rv;
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c1100 jstring rv = NULL; local
1109 rv = (*env)->NewString(env, buf, len);
1116 rv = (*env)->NewString(env, lpBuf, len);
1127 return rv;
1134 jstring rv = NULL; local
1148 rv = (*env)->NewString(env, (const jchar *)path, (jsize)len);
1155 rv = (*env)->NewString(env, (const jchar *)lpBuf, (jsize)len);
1167 return rv;
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decc_impl.h126 #define CHECK_SEC_OK(func) if (SECSuccess != (rv = func)) goto cleanup
/openjdk7/jdk/src/windows/bin/
H A Dcmdtoargs.c198 void doexit(int rv) { argument
201 exit(rv);
/openjdk7/jdk/test/tools/launcher/
H A DTestHelper.java493 public TestResult(String str, int rv, List<String> oList, argument
498 exitValue = rv;
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Datomic_solaris_x86.inline.hpp242 volatile jlong_accessor evl, cvl, rv;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRawMonitor.cpp382 int rv = SimpleWait (THREAD, millis) ; local
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java2451 * Stores the bounds of this component into "return value" <b>rv</b> and
2452 * return <b>rv</b>. If rv is <code>null</code> a new
2458 * @param rv the return value, modified to the components bounds
2459 * @return rv
2461 public Rectangle getBounds(Rectangle rv) { argument
2462 if (rv == null) {
2466 rv.setBounds(getX(), getY(), getWidth(), getHeight());
2467 return rv;
2472 * Stores the width/height of this component into "return value" <b>rv</
2481 getSize(Dimension rv) argument
2502 getLocation(Point rv) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A DThemeReader.cpp812 jlong rv = -1; local
817 rv = duration;
820 return rv;
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmslut.c496 cmsUInt32Number rv, dim; local
500 for (rv = 1; b > 0; b--) {
505 rv *= dim;
508 if (rv > UINT_MAX / dim) return 0;
511 return rv;
H A Dcmstypes.c1729 cmsUInt32Number rv = 1, rc; local
1736 rv *= a;
1739 if (rv > UINT_MAX / a) return (size_t) -1;
1743 rc = rv * n;
1745 if (rv != rc / n) return (size_t) -1;
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4687 // to happen early in the wait interval. Specifically, after a spurious wakeup (rv ==
4694 DWORD rv = WAIT_TIMEOUT ; local
4700 rv = ::WaitForSingleObject (_ParkHandle, prd) ;
4701 assert (rv == WAIT_OBJECT_0 || rv == WAIT_TIMEOUT, "WaitForSingleObject failed") ;
4702 if (rv == WAIT_TIMEOUT) {
4732 DWORD rv = ::WaitForSingleObject (_ParkHandle, INFINITE) ; local
4733 assert (rv == WAIT_OBJECT_0, "WaitForSingleObject failed") ;
/openjdk7/jdk/src/share/bin/
H A Djava.c329 #define CHECK_EXCEPTION_LEAVE(rv) \
332 ret = (rv); \
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java1726 Object[] rv = (Object[]) returnValue;
1727 String rvs = Arrays.toString(rv);
1728 if (!Arrays.equals(args, rv)) {
1732 assertArrayEquals(args, rv);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp2879 off_t rv = ::lseek(fd, size-2, SEEK_SET); local
2880 if (rv != (off_t)-1) {
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp2630 off_t rv = ::lseek(fd, size-2, SEEK_SET); local
2631 if (rv != (off_t)-1) {

Completed in 237 milliseconds

1234