Searched defs:visible (Results 51 - 58 of 58) sorted by relevance

123

/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformWindow.java209 protected boolean visible = false; // visibility status from native perspective field in class:CPlatformWindow
478 return this.visible;
522 public void setVisible(boolean visible) { argument
526 if (!visible) {
550 if (blocker == null || !visible) {
552 if (visible) {
575 this.visible = visible;
578 if (visible) {
601 if (visible) {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKEngine.java169 double visible);
631 double value, double min, double max, double visible) {
633 nativeSetRangeValue(widget, value, min, max, visible);
167 nativeSetRangeValue(int widgetType, double value, double min, double max, double visible) argument
630 setRangeValue(SynthContext context, Region id, double value, double min, double max, double visible) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A DShellFolder2.cpp1047 SHELLDETAILS *psd, ULONG visible)
1052 (jint)psd->fmt, (jboolean) visible);
1045 CreateColumnInfo(JNIEnv *pEnv, jclass *pClass, jmethodID *pConstructor, SHELLDETAILS *psd, ULONG visible) argument
H A Dawt_Component.cpp498 jboolean visible = env->GetBooleanField(target, AwtComponent::visibleID); local
499 m_visible = visible;
501 if (visible) {
3878 the visible position within the current composed text. See details at
6329 AwtComponent::visibleID = env->GetFieldID(cls, "visible", "Z");
7019 // See if visible state matches
7071 (targetVisible) ? "visible" : "hidden");
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWindowPeer.java1902 public void xSetVisible(boolean visible) { argument
1903 if (log.isLoggable(PlatformLogger.FINE)) log.fine("Setting visible on " + this + " to " + visible);
1906 this.visible = visible;
1907 if (visible) {
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dgtk2_interface.c2225 jdouble min, jdouble max, jdouble visible)
2235 adj->page_size = (gdouble)visible;
2224 gtk2_set_range_value(WidgetType widget_type, jdouble value, jdouble min, jdouble max, jdouble visible) argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java340 * True when the object is visible. An object that is not
341 * visible is not drawn on the screen.
347 boolean visible = true; field in class:Component
1253 * window is either packed or made visible.
1274 * Determines whether this component should be visible when its
1275 * parent is visible. Components are
1276 * initially visible, with the exception of top level components such
1278 * @return <code>true</code> if the component is visible,
1288 return visible;
1294 * until a toplevel window or null parent are visible,
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.hpp1181 // _external_suspend field change either not made yet or not visible
1478 // JavaThread is only safepoint visible when it is in Threads' thread list,
1479 // it is not visible until it is added to the list and becomes invisible
1483 void set_safepoint_visible(bool visible) { _safepoint_visible = visible; } argument

Completed in 74 milliseconds

123