Searched refs:enabled (Results 51 - 75 of 141) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/javax/management/
H A DNotificationBroadcasterSupport.java232 boolean enabled;
236 enabled = li.filter == null ||
246 if (enabled) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWTextAreaPeer.java189 public void setEnabled(final boolean enabled) { argument
190 getViewport().getView().setEnabled(enabled);
191 super.setEnabled(enabled);
H A DLWListPeer.java235 public void setEnabled(final boolean enabled) { argument
236 getView().setEnabled(enabled);
237 super.setEnabled(enabled);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCMenuItem.java40 private final AtomicBoolean enabled = new AtomicBoolean(true); field in class:CMenuItem
131 return enabled.get();
140 if (enabled.compareAndSet(!b, b)) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DJavaThreadsPanel.java198 private void setActionsEnabled(boolean enabled) { argument
199 if (actionsEnabled != enabled) {
201 manager.setActionEnabled(InspectAction.VALUE_COMMAND, enabled);
202 manager.setActionEnabled(MemoryAction.VALUE_COMMAND, enabled);
203 manager.setActionEnabled(JavaStackTraceAction.VALUE_COMMAND, enabled);
204 actionsEnabled = enabled;
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticFramework.hpp126 bool enabled) {
131 this->_is_enabled = enabled;
320 // manages the status of the diagnostic command (hidden, enabled). A DCmdFactory
339 DCmdFactory(int num_arguments, bool enabled, bool hidden) { argument
341 _enabled = enabled;
360 // enabled flag to false.
377 DCmdFactoryImpl(bool enabled, bool hidden) : argument
378 DCmdFactory(DCmdClass::num_arguments(), enabled, hidden) { }
122 DCmdInfo(const char* name, const char* description, const char* impact, int num_arguments, bool enabled) argument
H A DmemoryManager.hpp193 void set_notification_enabled(bool enabled) { _notification_enabled = enabled; } argument
H A DlowMemoryDetector.cpp148 // recompute enabled flag
150 bool enabled = false; local
155 enabled = true;
159 _enabled_for_collected_pools = enabled;
/openjdk7/jdk/test/javax/swing/JSlider/4987336/
H A Dbug4987336.java70 private static JSlider createSlider(boolean enabled, argument
82 result.setEnabled(enabled);
/openjdk7/hotspot/src/share/vm/runtime/
H A DbiasedLocking.hpp174 static bool enabled();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DHttpConfigFeature.java92 this.enabled = true;
H A DSchemaValidationFeature.java60 * The instance created will be enabled.
78 this.enabled = true;
H A DStreamingAttachmentFeature.java73 this.enabled = true;
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DTabsDlg.java175 public void enableApplyButton(boolean enabled) argument
177 applyAction.setEnabled(enabled);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJApplet.java275 * @param enabled true if <code>add</code> and <code>setLayout</code>
287 protected void setRootPaneCheckingEnabled(boolean enabled) { argument
288 rootPaneCheckingEnabled = enabled;
H A DJWindow.java366 * @param enabled true if <code>add</code> and <code>setLayout</code>
378 protected void setRootPaneCheckingEnabled(boolean enabled) { argument
379 rootPaneCheckingEnabled = enabled;
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpAdaptorServerMBean.java219 * Returns <CODE>true</CODE> if authentication traps are enabled.
221 * When this feature is enabled, the SNMP protocol adaptor sends
226 * @return <CODE>true</CODE> if authentication traps are enabled, <CODE>false</CODE> otherwise.
233 * @param enabled Flag indicating if traps need to be sent.
235 public void setAuthTrapEnabled(boolean enabled); argument
241 * When this feature is enabled, the SNMP protocol adaptor sends a response with <CODE>noSuchName</CODE>
254 * @param enabled Flag indicating if responses need to be sent.
256 public void setAuthRespEnabled(boolean enabled); argument
/openjdk7/jdk/src/windows/classes/sun/awt/
H A DWin32GraphicsEnvironment.java234 * Returns true if dwm composition is currently enabled, false otherwise.
236 * @return true if dwm composition is enabled, false otherwise
249 * @param enabled indicates the state of dwm composition
251 private static void dwmCompositionChanged(boolean enabled) { argument
252 isDWMCompositionEnabled = enabled;
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A D_AppMenuBarHandler.java42 private static native void nativeSetMenuState(final int menu, final boolean visible, final boolean enabled); argument
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DApplicationDelegate.m130 - (void)_updatePreferencesMenu:(BOOL)prefsAvailable enabled:(BOOL)prefsEnabled {
159 - (void)_updateAboutMenu:(BOOL)aboutAvailable enabled:(BOOL)aboutEnabled {
223 [self _updateAboutMenu:YES enabled:YES];
745 (JNIEnv *env, jclass clz, jint menuID, jboolean visible, jboolean enabled)
753 [delegate _updateAboutMenu:visible enabled:enabled];
756 [delegate _updatePreferencesMenu:visible enabled:enabled];
H A DCMenuItem.m159 - (void)setJavaEnabled:(BOOL) enabled {
163 fIsEnabled = enabled;
175 BOOL enabled = NO;
177 enabled = fIsEnabled;
179 return enabled;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvThreadState.hpp158 void reset_current_location(jvmtiEvent event, bool enabled);
H A DjvmtiExtensions.cpp37 static jvmtiError JNICALL IsClassUnloadingEnabled(const jvmtiEnv* env, jboolean* enabled, ...) { argument
38 if (enabled == NULL) {
41 *enabled = (jboolean)ClassUnloading;
47 // unloading is enabled or disabled. We also have a single extension event
62 (char*)"Tell if class unloading is enabled (-noclassgc)",
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaSplitPaneDividerUI.java57 if ("enabled".equals(propName)) {
58 final boolean enabled = splitPane.isEnabled();
59 if (leftButton != null) leftButton.setEnabled(enabled);
60 if (rightButton != null) rightButton.setEnabled(enabled);
/openjdk7/jdk/src/share/native/sun/awt/debug/
H A Ddebug_trace.h48 extern void DTrace_EnableAll(dbool_t enabled);
49 extern void DTrace_EnableFile(const char * file, dbool_t enabled);
50 extern void DTrace_EnableLine(const char * file, int linenum, dbool_t enabled);

Completed in 67 milliseconds

123456