Searched refs:features (Results 1 - 25 of 58) sorted by relevance

123

/openjdk7/jaxp/src/org/w3c/dom/
H A DDOMImplementationSource.java46 * implementations, based upon requested features and versions, as specified
57 * specified features.
58 * @param features A string that specifies which features and versions
71 * features, or <code>null</code> if this source has none.
73 public DOMImplementation getDOMImplementation(String features); argument
77 * specified features and versions, as specified in .
78 * @param features A string that specifies which features and versions
84 * features
86 getDOMImplementationList(String features) argument
[all...]
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dvm_version_linux_sparc.cpp52 int VM_Version::platform_features(int features) { argument
54 features = generic_v9_m;
58 features = niagara1_m;
61 return features;
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dvm_version_solaris_sparc.cpp44 static void do_sysinfo(int si, const char* string, int* features, int mask) { argument
59 *features |= mask;
66 int VM_Version::platform_features(int features) { argument
72 do_sysinfo(SI_ARCHITECTURE_32, "sparc", &features, v8_instructions_m);
75 do_sysinfo(SI_ARCHITECTURE_64, "sparcv9", &features, generic_v9_m);
87 if (av & AV_SPARC_MUL32) features |= hardware_mul32_m;
88 if (av & AV_SPARC_DIV32) features |= hardware_div32_m;
89 if (av & AV_SPARC_FSMULD) features |= hardware_fsmuld_m;
90 if (av & AV_SPARC_V8PLUS) features |= v9_instructions_m;
91 if (av & AV_SPARC_POPC) features |
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/
H A DStAXManager.java39 HashMap features = new HashMap(); field in class:StAXManager
65 features.putAll(properties);
69 return features ;
74 features.put(XMLInputFactory.IS_NAMESPACE_AWARE, Boolean.TRUE);
75 features.put(XMLInputFactory.IS_VALIDATING, Boolean.FALSE);
76 features.put(XMLInputFactory.IS_REPLACING_ENTITY_REFERENCES, Boolean.TRUE);
77 features.put(XMLInputFactory.IS_SUPPORTING_EXTERNAL_ENTITIES, Boolean.TRUE);
78 features.put(XMLInputFactory.IS_COALESCING, Boolean.FALSE);
79 features.put(XMLInputFactory.SUPPORT_DTD, Boolean.FALSE);
80 features
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DAbstractFeaturedObjectImpl.java38 protected WebServiceFeatureList features; field in class:AbstractFeaturedObjectImpl
48 if (features == null)
49 features = new WebServiceFeatureList();
51 features.add(feature);
55 if(features == null)
57 return features;
61 if (features != null) {
62 for (WebServiceFeature f : features) {
73 if(features==null)
76 return features
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMXSImplementationSourceImpl.java42 * @param features A string that specifies which features are required.
46 * @return An implementation that has the desired features, or
49 public DOMImplementation getDOMImplementation(String features) { argument
50 DOMImplementation impl = super.getDOMImplementation(features);
56 if (testImpl(impl, features)) {
61 if (testImpl(impl, features)) {
70 * specified features and versions, as specified in .
71 * @param features A string that specifies which features an
79 getDOMImplementationList(String features) argument
[all...]
H A DDOMImplementationSourceImpl.java31 * Supply one the right implementation, based upon requested features. Each
46 * @param features A string that specifies which features are required.
50 * @return An implementation that has the desired features, or
53 public DOMImplementation getDOMImplementation(String features) { argument
57 if (testImpl(impl, features)) {
62 if (testImpl(impl, features)) {
71 * specified features and versions, as specified in .
72 * @param features A string that specifies which features an
80 getDOMImplementationList(String features) argument
95 testImpl(DOMImplementation impl, String features) argument
[all...]
H A DDOMConfigurationImpl.java172 /** Normalization features*/
173 protected short features = 0; field in class:DOMConfigurationImpl
244 // create table for features and properties
248 // add default recognized features
262 // set state for default features
291 // set default values for normalization features
292 features |= NAMESPACES;
293 features |= ENTITIES;
294 features |= COMMENTS;
295 features |
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DDocumentBuilderFactoryImpl.java45 private Hashtable features; field in class:DocumentBuilderFactoryImpl
76 return new DocumentBuilderImpl(this, attributes, features, fSecureProcess);
113 new DocumentBuilderImpl(this, attributes, features);
140 new DocumentBuilderImpl(this, attributes, features).getDOMParser();
176 // See if it's in the features Hashtable
177 if (features != null) {
178 Object val = features.get(name);
184 DOMParser domParser = new DocumentBuilderImpl(this, attributes, features).getDOMParser();
194 if (features == null) {
195 features
[all...]
H A DSAXParserFactoryImpl.java62 private Hashtable features; field in class:SAXParserFactoryImpl
81 saxParserImpl = new SAXParserImpl(this, features, fSecureProcess);
98 saxParserImpl = new SAXParserImpl(this, features);
131 // XXX This is ugly. We have to collect the features and then
132 // later create an XMLReader to verify the features.
138 features.remove(name);
141 features.remove(name);
190 if (features == null) {
191 features = new Hashtable();
193 features
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DService.java82 protected Service(java.net.URL wsdlDocumentLocation, QName serviceName, WebServiceFeature ... features) { argument
85 this.getClass(), features);
133 * @param features A list of WebServiceFeatures to configure on the
134 * proxy. Supported features not in the <code>features
159 Class<T> serviceEndpointInterface, WebServiceFeature... features) {
160 return delegate.getPort(portName, serviceEndpointInterface, features);
202 * @param features A list of WebServiceFeatures to configure on the
203 * proxy. Supported features not in the <code>features
158 getPort(QName portName, Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
224 getPort(Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
302 getPort(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
386 createDispatch(QName portName, Class<T> type, Service.Mode mode, WebServiceFeature... features) argument
461 createDispatch(EndpointReference endpointReference, Class<T> type, Service.Mode mode, WebServiceFeature... features) argument
519 createDispatch(QName portName, JAXBContext context, Service.Mode mode, WebServiceFeature... features) argument
592 createDispatch(EndpointReference endpointReference, JAXBContext context, Service.Mode mode, WebServiceFeature... features) argument
727 create( java.net.URL wsdlDocumentLocation, QName serviceName, WebServiceFeature ... features) argument
757 create(QName serviceName, WebServiceFeature ... features) argument
[all...]
H A DEndpoint.java106 * service features. If there is a binding specified via a BindingType
116 * @param features A list of WebServiceFeature to configure on the
117 * endpoint. Supported features not in the <code>features
125 public static Endpoint create(Object implementor, WebServiceFeature ... features) { argument
126 return create(null, implementor, features);
152 * implementor object, and web service features.
164 * @param features A list of WebServiceFeature to configure on the
165 * endpoint. Supported features not in the <code>features
171 create(String bindingId, Object implementor, WebServiceFeature ... features) argument
271 publish(String address, Object implementor, WebServiceFeature ... features) argument
[all...]
H A DEndpointReference.java154 * @param features An array of <code>WebServiceFeatures</code> to configure on the
155 * proxy. Supported features not in the <code>features
179 WebServiceFeature... features) {
181 features);
178 getPort(Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DWSFeatureList.java57 * Obtains all the features in the array.
62 * Merges the extra features that are not already set on binding.
66 * @param features Web Service features that need to be merged with already configured features.
71 void mergeFeatures(@NotNull WebServiceFeature[] features, boolean reportConflicts); argument
74 * Merges the extra features that are not already set on binding.
78 * @param features Web Service features that need to be merged with already configured features
83 mergeFeatures(@otNull Iterable<WebServiceFeature> features, boolean reportConflicts) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/binding/
H A DBindingImpl.java67 protected final WebServiceFeatureList features = new WebServiceFeatureList(); field in class:BindingImpl
103 if (features.isEnabled(AddressingFeature.class))
105 else if (features.isEnabled(MemberSubmissionAddressingFeature.class))
125 public static BindingImpl create(@NotNull BindingID bindingId, WebServiceFeature[] features) { argument
126 // Override the BindingID from the features
127 for(WebServiceFeature feature : features) {
136 return new SOAPBindingImpl(bindingId, features);
148 return features.get(featureType);
152 return features.isEnabled(feature);
157 return features;
[all...]
H A DWebServiceFeatureList.java58 * pertaining to web service features.
74 public WebServiceFeatureList(@NotNull WebServiceFeature... features) { argument
75 if (features != null)
76 for (WebServiceFeature f : features) {
89 * Adds the corresponding features to the list for feature annotations(i.e
246 * Adds features to the list if it's not already added.
254 * Merges the extra features that are not already set on binding.
258 * @param features Web Service features that need to be merged with already configured features
263 mergeFeatures(@otNull Iterable<WebServiceFeature> features, boolean reportConflicts) argument
276 mergeFeatures(WebServiceFeature[] features, boolean reportConflicts) argument
297 getFeature(@otNull WebServiceFeature[] features, @NotNull Class<F> featureType) argument
309 private final Stack<WebServiceFeature> features = new Stack<WebServiceFeature>(); field in class:WebServiceFeatureList.MergedFeatures
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DServiceDelegate.java99 * @param features A list of WebServiceFeatures to configure on the
100 * proxy. Supported features not in the <code>features
125 Class<T> serviceEndpointInterface, WebServiceFeature... features);
171 * @param features A list of <code>WebServiceFeatures</code> to configure on the
172 * proxy. Supported features not in the <code>features
200 Class<T> serviceEndpointInterface, WebServiceFeature... features);
239 * @param features An array of <code>WebServiceFeatures</code> to configure on the
240 * proxy. Supported features no
124 getPort(QName portName, Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
199 getPort(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
261 getPort(Class<T> serviceEndpointInterface, WebServiceFeature... features) argument
339 createDispatch(QName portName, Class<T> type, Service.Mode mode, WebServiceFeature... features) argument
411 createDispatch(EndpointReference endpointReference, Class<T> type, Service.Mode mode, WebServiceFeature... features) argument
467 createDispatch(QName portName, JAXBContext context, Service.Mode mode, WebServiceFeature... features) argument
537 createDispatch(EndpointReference endpointReference, JAXBContext context, Service.Mode mode, WebServiceFeature... features) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dvm_version_sparc.hpp91 static int platform_features(int features);
94 static bool is_M_family(int features) { return (features & M_family_m) != 0; } argument
95 static bool is_T_family(int features) { return (features & T_family_m) != 0; } argument
97 DEBUG_ONLY( static bool is_niagara(int features) { return (features & sun4v_m) != 0; } )
100 static bool is_T1_model(int features) { return is_T_family(features) && ((features argument
[all...]
H A Dvm_version_sparc.cpp302 int features = platform_features(unknown_m); // platform_features() is os_arch specific local
304 if (features == unknown_m) {
305 features = generic_v9_m;
309 assert(is_T_family(features) == is_niagara(features), "Niagara should be T series");
311 if (is_T_family(features)) {
315 features |= T_family_m;
318 if (is_T_family(features) && !FLAG_IS_DEFAULT(UseNiagaraInstrs)) {
320 features &= ~(T_family_m | T1_model_m);
326 return features;
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DDOMSerializerImpl.java101 protected short features = 0; field in class:DOMSerializerImpl
129 // set default features
130 features |= NAMESPACES;
131 features |= ENTITIES;
132 features |= COMMENTS;
133 features |= CDATA;
134 features |= SPLITCDATA;
135 features |= WELLFORMED;
136 features |= NSDECL;
137 features |
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DPolicyUtil.java99 final Collection<WebServiceFeature> features = getPortScopedFeatures(policyMap, service.getName(), port.getName());
100 for (WebServiceFeature feature : features) {
110 * Returns the list of features that correspond to the policies in the policy
116 * @return List of features for the given port corresponding to the policies in the map
120 Collection<WebServiceFeature> features = new ArrayList<WebServiceFeature>();
126 features.addAll(additionalFeatures);
132 LOGGER.exiting(features);
133 return features;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/policy/
H A DFastInfosetFeatureConfigurator.java63 final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>();
76 features.add(new FastInfosetFeature(isFastInfosetEnabled));
82 return features;
H A DMtomFeatureConfigurator.java64 final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>();
75 features.add(new MTOMFeature(true));
81 return features;
H A DSelectOptimalEncodingFeatureConfigurator.java62 final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>();
75 features.add(new SelectOptimalEncodingFeature(isSelectOptimalEncodingEnabled));
81 return features;
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DHanLayoutEngine.cpp64 #define features (loclFeatureMask) macro
100 // flag from the language tag lookups, so we can use these features
103 glyphStorage.setAuxData(i, features, success);

Completed in 126 milliseconds

123