Searched defs:updated (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest6199676.java78 private boolean updated; field in class:Test6199676
89 else if (this.updated) {
103 this.updated = true;
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DRow.java76 * object has been updated. <code>true</code> indicates that it has
77 * been updated; <code>false</code> indicates that it has not.
80 private boolean updated; field in class:Row
256 * <code>updated</code> field.
258 * updated; <code>false</code> if it has not
263 return(updated);
267 * Sets the <code>updated</code> field for this <code>Row</code> object to
273 // only mark something as updated if one or
277 updated = true;
298 * Sets the <code>updated</cod
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Debug.cpp118 int updated = ::GetUpdateRgn(hwnd, rgn, FALSE); local
H A Dawt_Component.cpp2177 int updated = ::GetUpdateRgn(GetHWnd(), rgn, FALSE); local
2185 if (updated == COMPLEXREGION || updated == SIMPLEREGION) {
4500 * immediately after a displayChange is not yet updated to its
4503 * updated, but a WM_PALETTECHANGED message is never sent.
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEPollArrayWrapper.java102 // Number of updated pollfd entries
103 int updated; field in class:EPollArrayWrapper
257 updated = epollWait(pollArrayAddress, NUM_EPOLLEVENTS, timeout, epfd);
258 for (int i=0; i<updated; i++) {
265 return updated;
H A DDevPollArrayWrapper.java104 // Number of updated pollfd entries
105 int updated; field in class:DevPollArrayWrapper
220 updated = poll0(pollArrayAddress, NUM_POLLFDS, timeout, wfd);
221 for (int i=0; i<updated; i++) {
228 return updated;
233 // Populate pollfd array with updated masks
257 // populate pollfd array with updated event

Completed in 69 milliseconds