Searched refs:enabled (Results 1 - 25 of 141) sorted by relevance

123456

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DWebServiceFeature.java31 * enabled or disabled for a web service.
65 * Specifies if the feature is enabled or disabled
67 protected boolean enabled = false; field in class:WebServiceFeature
74 * Returns <code>true</code> if this feature is enabled.
76 * @return <code>true</code> if and only if the feature is enabled .
79 return enabled;
H A DRespectBindingFeature.java47 * to be enabled or disabled:
59 * With this feature enabled, if a required (<code>wsdl:required="true"</code>)
76 * one implementation may choose to behave as if this feature is enabled,
95 * The instance created will be enabled.
98 this.enabled = true;
104 * @param enabled specifies whether this feature should
105 * be enabled or not.
107 public RespectBindingFeature(boolean enabled) { argument
108 this.enabled = enabled;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/soap/
H A DMTOMFeature.java45 * to being enabled or disabled:
47 * <li> ENABLED: In this Mode, MTOM will be enabled. A receiver MUST accept
69 * MTOM is enabled, binary data above this size in bytes SHOULD be sent
78 * The instance created will be enabled.
81 this.enabled = true;
87 * @param enabled specifies if this feature should be enabled or not
89 public MTOMFeature(boolean enabled) { argument
90 this.enabled = enabled;
119 MTOMFeature(boolean enabled, int threshold) argument
[all...]
H A DAddressingFeature.java44 * to be enabled or disabled:
46 * <li> ENABLED: In this Mode, WS-Addressing will be enabled. It means
56 * If the feature is enabled, the <code>required</code> property determines
62 * If the web service developer has not explicitly enabled this feature,
72 * If addressing is enabled, a corresponding wsam:Addressing policy assertion
126 * If addressing is enabled, this property determines whether the endpoint
134 * If addressing is enabled, this property determines if endpoint requires
196 * use of addressing requirements. If <code>enabled</code> is true,
200 * @param enabled true enables ws-addressing i.e.ws-addressing
203 public AddressingFeature(boolean enabled) { argument
217 AddressingFeature(boolean enabled, boolean required) argument
235 AddressingFeature(boolean enabled, boolean required, Responses responses) argument
[all...]
/openjdk7/langtools/test/tools/javac/assert/
H A DAttach.java45 boolean enabled = false;
46 assert enabled=true;
47 return enabled;
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaAssertions.hpp36 static inline void setUserClassDefault(bool enabled);
38 static inline void setSystemClassDefault(bool enabled);
44 // Return true if command-line options have enabled assertions for the named
48 static bool enabled(const char* classname, bool systemClass);
60 const char* namefound, bool enabled);
76 inline bool enabled() const { return _enabled; } function in class:JavaAssertions::OptionList
91 inline void JavaAssertions::setUserClassDefault(bool enabled) { argument
93 tty->print_cr("JavaAssertions::setUserClassDefault(%d)", enabled);
94 _userDefault = enabled;
101 inline void JavaAssertions::setSystemClassDefault(bool enabled) { argument
[all...]
H A DjavaAssertions.cpp40 JavaAssertions::OptionList::OptionList(const char* name, bool enabled, argument
44 _enabled = enabled;
78 // JavaAssertion::enabled(), but that is done once per loaded class.
127 objArrayHandle names, typeArrayHandle enabled, TRAPS) {
128 // Fill in the parallel names and enabled (boolean) arrays. Start at the end
138 enabled->bool_at_put(index, p->enabled());
183 const char* typefound, const char* namefound, bool enabled) {
186 name, typefound, namefound[0] != '\0' ? namefound : "'default'", enabled);
190 bool JavaAssertions::enabled(cons function in class:JavaAssertions
126 fillJavaArrays(const OptionList* p, int len, objArrayHandle names, typeArrayHandle enabled, TRAPS) argument
182 trace(const char* name, const char* typefound, const char* namefound, bool enabled) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/addressing/
H A DOneWayFeature.java66 * Create an {@link OneWayFeature}. The instance created will be enabled.
69 this.enabled = true;
75 * @param enabled specifies whether this feature should
76 * be enabled or not.
78 public OneWayFeature(boolean enabled) { argument
79 this.enabled = enabled;
85 * @param enabled specifies whether this feature should be enabled or not.
88 public OneWayFeature(boolean enabled, WSEndpointReferenc argument
102 OneWayFeature(boolean enabled, WSEndpointReference replyTo, WSEndpointReference from, String relatesTo) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DMemberSubmissionAddressingFeature.java58 * The instance created will be enabled.
61 this.enabled = true;
67 * @param enabled specifies whether this feature should
68 * be enabled or not.
70 public MemberSubmissionAddressingFeature(boolean enabled) { argument
71 this.enabled = enabled;
77 * @param enabled specifies whether this feature should
78 * be enabled or not.
83 public MemberSubmissionAddressingFeature(boolean enabled, boolea argument
100 MemberSubmissionAddressingFeature(boolean enabled, boolean required, MemberSubmissionAddressing.Validation validation) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DFocusManager.java64 private static boolean enabled = true; field in class:FocusManager
131 if (enabled) {
132 enabled = false;
149 return enabled;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1ErgoVerbose.cpp41 void G1ErgoVerbose::set_enabled(ErgoHeuristic n, bool enabled) { argument
43 _enabled[n] = enabled;
46 void G1ErgoVerbose::set_enabled(bool enabled) { argument
48 set_enabled((ErgoHeuristic) n, enabled);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/client/
H A DSelectOptimalEncodingFeature.java40 * to being enabled or disabled:
51 * If this feature is enabled by the client and the Service supports the
70 * The instance created will be enabled.
73 this.enabled = true;
79 * @param enabled specifies whether this feature should
80 * be enabled or not.
82 @FeatureConstructor({"enabled"})
83 public SelectOptimalEncodingFeature(boolean enabled) { argument
84 this.enabled = enabled;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/fastinfoset/
H A DFastInfosetFeature.java39 * to being enabled or disabled:
41 * <li> ENABLED: In this Mode, Fast Infoset will be enabled.
48 * is equivalent to this feature being present and enabled.
59 * Create a {@link FastInfosetFeature}. The instance created will be enabled.
62 this.enabled = true;
68 * @param enabled specifies whether this feature should
69 * be enabled or not.
71 @FeatureConstructor({"enabled"})
72 public FastInfosetFeature(boolean enabled) { argument
73 this.enabled
[all...]
/openjdk7/hotspot/src/share/vm/trace/
H A DtraceBackend.hpp36 static bool enabled(void) { function in class:TraceBackend
40 return enabled();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DCheckNode.java39 public boolean enabled; field in class:CheckNode
45 enabled = true;
64 enabled = b;
68 return enabled;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_MenuItem.h31 jfieldID enabled; member in struct:MenuItemIDs
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DMidiInDeviceProvider.java45 private static final boolean enabled; field in class:MidiInDeviceProvider
52 enabled = Platform.isMidiIOEnabled();
67 if (!enabled) {
74 if (enabled && (info instanceof MidiInDeviceInfo)) {
81 if (!enabled) {
82 if (Printer.debug)Printer.debug("MidiInDevice not enabled, returning 0 devices");
H A DMidiOutDeviceProvider.java45 private final static boolean enabled; field in class:MidiOutDeviceProvider
52 enabled = Platform.isMidiIOEnabled();
67 if (!enabled) {
74 if (enabled && (info instanceof MidiOutDeviceInfo)) {
81 if (!enabled) {
82 if (Printer.debug)Printer.debug("MidiOutDevice not enabled, returning 0 devices");
/openjdk7/jdk/src/share/classes/com/sun/beans/infos/
H A DComponentBeanInfo.java44 enabled = new PropertyDescriptor("enabled", beanClass),
48 enabled.setExpert(true);
56 PropertyDescriptor[] rv = {name, background, foreground, font, enabled, visible, focusable };
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneContrastUI.java64 boolean enabled = tabPane.isEnabled() && tabPane.isEnabledAt(tabIndex);
65 Color textColor = getSelectedTabTitleColor(enabled, pressed);
66 Color shadowColor = getSelectedTabTitleShadowColor(enabled);
77 protected static Color getSelectedTabTitleColor(boolean enabled, boolean pressed) { argument
78 if (enabled && pressed) {
80 } else if (!enabled) {
87 protected static Color getSelectedTabTitleShadowColor(boolean enabled) { argument
88 return enabled ? UIManager.getColor("TabbedPane.selectedTabTitleShadowNormalColor") : UIManager.getColor("TabbedPane.selectedTabTitleShadowDisabledColor");
/openjdk7/jdk/src/share/native/sun/awt/debug/
H A Ddebug_trace.c46 int enabled; member in struct:dtrace_info
70 info->enabled = FALSE;
139 return GlobalTracingEnabled || DTraceInfo[*pfileid].enabled || DTraceInfo[*plineid].enabled;
165 void DTrace_EnableAll(dbool_t enabled) { argument
167 GlobalTracingEnabled = enabled;
178 void DTrace_EnableFile(const char * file, dbool_t enabled) { argument
186 info->enabled = enabled;
194 void DTrace_EnableLine(const char * file, int line, dbool_t enabled) { argument
329 Java_sun_awt_DebugSettings_setCTracingOn__Z(JNIEnv *env, jobject self, jboolean enabled) argument
337 Java_sun_awt_DebugSettings_setCTracingOn__ZLjava_lang_String_2( JNIEnv *env, jobject self, jboolean enabled, jstring file ) argument
355 Java_sun_awt_DebugSettings_setCTracingOn__ZLjava_lang_String_2I( JNIEnv *env, jobject self, jboolean enabled, jstring file, jint line ) argument
[all...]
/openjdk7/jdk/src/share/native/sun/management/
H A DGarbageCollectorImpl.c42 (JNIEnv *env, jobject dummy, jobject gc,jboolean enabled) {
50 jmm_interface->SetGCNotificationEnabled(env, gc, enabled);
41 Java_sun_management_GarbageCollectorImpl_setNotificationEnabled(JNIEnv *env, jobject dummy, jobject gc,jboolean enabled) argument
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEventController.inline.hpp70 inline void JvmtiEnvThreadEventEnable::set_user_enabled(jvmtiEvent event_type, bool enabled) { argument
71 _event_user_enabled.set_enabled(event_type, enabled);
96 inline void JvmtiEnvEventEnable::set_user_enabled(jvmtiEvent event_type, bool enabled) { argument
97 _event_user_enabled.set_enabled(event_type, enabled);
H A DjvmtiEventController.hpp71 // data structure to track what JVMTI event types are enabled.
95 void set_enabled(jvmtiEvent event_type, bool enabled);
118 void set_user_enabled(jvmtiEvent event_type, bool enabled);
163 // indexed by jvmtiEvent true if enabled globally or on any thread.
171 void set_user_enabled(jvmtiEvent event_type, bool enabled);
200 // events that can ONLY be enabled/disabled globally (can't toggle on individual threads).
214 jvmtiEvent event_type, bool enabled);
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest6559154.java63 private static void setEnabledRecursive(Container container, boolean enabled) { argument
65 component.setEnabled(enabled);
67 setEnabledRecursive((Container) component, enabled);

Completed in 88 milliseconds

123456