Searched refs:Mode (Results 1 - 25 of 73) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/text/
H A DCollatorUtilities.java32 public static int toLegacyMode(NormalizerBase.Mode mode) {
45 public static NormalizerBase.Mode toNormalizerMode(int mode) {
46 NormalizerBase.Mode normalizerMode;
59 static NormalizerBase.Mode[] legacyModeMap = {
/openjdk7/jaxws/src/share/jaxws_classes/javax/jws/
H A DWebParam.java43 public enum Mode { enum in interface:WebParam
102 Mode mode() default Mode.IN;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/
H A DRawTypeSet.java57 public final Mode canBeTypeRefs;
88 public enum Mode { enum in class:RawTypeSet
106 Mode(int rank) { method in class:RawTypeSet.Mode
110 Mode or(Mode that) {
131 private Mode canBeTypeRefs() {
138 Mode mode = Mode.SHOULD_BE_TYPEREF;
142 if(mode== Mode.MUST_BE_REFERENCE)
146 return Mode
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DServiceMode.java52 public Service.Mode value() default Service.Mode.PAYLOAD;
H A DService.java74 public enum Mode { MESSAGE, PAYLOAD } enum in class:Service
341 * SOAP messages or the contents of a SOAP body. Mode MUST be MESSAGE
351 public <T> Dispatch<T> createDispatch(QName portName, Class<T> type, Mode mode) {
368 * SOAP messages or the contents of a SOAP body. Mode MUST be <code>MESSAGE</code>
387 Service.Mode mode, WebServiceFeature... features) {
432 * SOAP messages or the contents of a SOAP body. Mode MUST be <code>MESSAGE</code>
462 Class<T> type, Service.Mode mode,
487 Mode mode) {
520 JAXBContext context, Service.Mode mode, WebServiceFeature... features) {
593 JAXBContext context, Service.Mode mod
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DMessagePart.java34 import javax.jws.WebParam.Mode;
114 public void setMode(Mode mode){
118 public Mode getMode(){
124 return (mode == Mode.INOUT);
130 return (mode == Mode.IN);
136 return (mode == Mode.OUT);
155 private Mode mode;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DParameterImpl.java34 import javax.jws.WebParam.Mode;
59 private final Mode mode;
64 public ParameterImpl(JavaMethodImpl parent, TypeReference type, Mode mode, int index) {
117 public Mode getMode() {
171 return mode==Mode.IN;
175 return mode==Mode.OUT;
179 return mode==Mode.INOUT;
H A DSOAPSEIModel.java30 import javax.jws.WebParam.Mode;
78 fillHeaders(params, headers, Mode.IN);
82 fillHeaders(params, headers, Mode.OUT);
91 private void fillHeaders(Iterator<ParameterImpl> params, Set<QName> headers, Mode mode) {
94 ParameterBinding binding = (mode == Mode.IN)?param.getInBinding():param.getOutBinding();
H A DWrapperParameter.java33 import javax.jws.WebParam.Mode;
58 public WrapperParameter(JavaMethodImpl parent, TypeReference typeRef, Mode mode, int index) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DParameter.java32 import javax.jws.WebParam.Mode;
129 private Mode mode;
175 public void setMode(Mode mode){
180 return (mode == Mode.IN);
184 return (mode == Mode.OUT);
188 return (mode == Mode.INOUT);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DServiceDelegate.java297 * SOAP messages or the contents of a SOAP body. Mode MUST be <code>MESSAGE</code>
307 Service.Mode mode);
321 * SOAP messages or the contents of a SOAP body. Mode MUST be <code>MESSAGE</code>
340 Service.Mode mode, WebServiceFeature... features);
382 * SOAP messages or the contents of a SOAP body. Mode MUST be <code>MESSAGE</code>
412 Class<T> type, Service.Mode mode,
437 JAXBContext context, Service.Mode mode);
468 JAXBContext context, Service.Mode mode, WebServiceFeature... features);
538 JAXBContext context, Service.Mode mode,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/model/
H A DParameter.java33 import javax.jws.WebParam.Mode;
73 Mode getMode();
120 * @return true if the {@link Mode} associated with the parameter is {@link Mode#IN} and false otherwise.
125 * @return true if the {@link Mode} associated with the parameter is {@link Mode#OUT} and false otherwise.
130 * @return true if the {@link Mode} associated with the parameter is {@link Mode#INOUT} and false otherwise.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/model/wsdl/
H A DWSDLBoundOperation.java31 import javax.jws.WebParam.Mode;
79 @Nullable WSDLPart getPart(@NotNull String partName, @NotNull Mode mode);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/
H A DValueGetter.java31 import javax.jws.WebParam.Mode;
48 * {@link ValueGetter} that works for {@link Mode#IN} parameter.
61 * which is {@link Mode#INOUT} or {@link Mode#OUT}.
64 * In those {@link Mode}s, the parameter is a {@link Holder},
86 if(p.getMode() == Mode.IN || p.getIndex() == -1) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DValueGetter.java28 import javax.jws.WebParam.Mode;
45 * {@link ValueGetter} that works for {@link Mode#IN} parameter.
58 * which is {@link Mode#INOUT} or {@link Mode#OUT}.
61 * In those {@link Mode}s, the parameter is a {@link Holder},
H A DValueGetterFactory.java43 return (p.getMode()== WebParam.Mode.IN || p.getIndex() == -1)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DStubs.java53 import javax.xml.ws.Service.Mode;
117 public static Dispatch<SOAPMessage> createSAAJDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) {
130 public static Dispatch<SOAPMessage> createSAAJDispatch(WSPortInfo portInfo, WSBinding binding, Service.Mode mode, @Nullable WSEndpointReference epr) {
144 public static Dispatch<DataSource> createDataSourceDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) {
157 public static Dispatch<DataSource> createDataSourceDispatch(WSPortInfo portInfo, WSBinding binding, Service.Mode mode,@Nullable WSEndpointReference epr) {
171 public static Dispatch<Source> createSourceDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) {
183 public static Dispatch<Source> createSourceDispatch(WSPortInfo portInfo, WSBinding binding, Service.Mode mode, @Nullable WSEndpointReference epr) {
191 * see {@link Service#createDispatch(QName, Class, Service.Mode)}.
198 * See {@link Service#createDispatch(QName, Class, Service.Mode)}.
201 * See {@link Service#createDispatch(QName, Class, Service.Mode)}
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DRawTypeSetBuilder.java183 protected RawTypeSet.Mode canBeType(RawTypeSet parent) {
184 return RawTypeSet.Mode.MUST_BE_REFERENCE;
216 protected RawTypeSet.Mode canBeType(RawTypeSet parent) {
219 return RawTypeSet.Mode.MUST_BE_REFERENCE;
221 return RawTypeSet.Mode.SHOULD_BE_TYPEREF;
257 protected RawTypeSet.Mode canBeType(RawTypeSet parent) {
260 return RawTypeSet.Mode.MUST_BE_REFERENCE;
265 return RawTypeSet.Mode.MUST_BE_REFERENCE;
274 return RawTypeSet.Mode.MUST_BE_REFERENCE;
276 return RawTypeSet.Mode
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.cpp39 enum Mode { enum in class:MethodMatcher
52 Mode _class_mode;
53 Mode _method_mode;
56 static bool match(Symbol* candidate, Symbol* match, Mode match_mode);
63 MethodMatcher(Symbol* class_name, Mode class_mode,
64 Symbol* method_name, Mode method_mode,
88 static void print_symbol(Symbol* h, Mode mode) {
128 MethodMatcher::MethodMatcher(Symbol* class_name, Mode class_mode,
129 Symbol* method_name, Mode method_mode,
139 bool MethodMatcher::match(Symbol* candidate, Symbol* match, Mode match_mod
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DMessageDispatch.java39 import javax.xml.ws.Service.Mode;
50 super(port, Mode.MESSAGE, service, pipe, binding, epr);
54 super(portInfo, Mode.MESSAGE, binding, epr);
H A DRESTSourceDispatch.java44 import javax.xml.ws.Service.Mode;
56 public RESTSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
61 public RESTSourceDispatch(WSPortInfo portInfo, Mode mode, BindingImpl binding, WSEndpointReference epr) {
H A DSOAPSourceDispatch.java41 import javax.xml.ws.Service.Mode;
58 public SOAPSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
63 public SOAPSourceDispatch(WSPortInfo portInfo, Mode mode, BindingImpl binding, WSEndpointReference epr) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJFormatter.java51 private static enum Mode { enum in class:JFormatter
67 private Mode mode = Mode.PRINTING;
132 return mode == Mode.PRINTING;
216 if(mode==Mode.PRINTING) {
234 if(mode==Mode.PRINTING) {
321 if(mode==Mode.PRINTING) {
390 mode = Mode.COLLECTING;
409 mode = Mode.PRINTING;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DProviderEndpointModel.java47 * Keeps the runtime information like Service.Mode and erasure of Provider class
48 * about Provider endpoint. It proccess annotations to find about Service.Mode
64 @NotNull final Service.Mode mode;
98 if (mode == Service.Mode.PAYLOAD && datatype!=Source.class) {
102 "Illeagal combination - Mode.PAYLOAD and Provider<"+otherClass.getName()+">");
110 * @return Service.Mode.PAYLOAD or Service.Mode.MESSAGE
112 private static Service.Mode getServiceMode(Class<?> c) {
114 return (mode == null) ? Service.Mode.PAYLOAD : mode.value();
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/6725892/
H A DTest.java154 Mode mode;
156 enum Mode { enum in class:Test.Worker
162 Worker (CountDownLatch latch, Mode mode) {
188 if (mode == Mode.REQUEST) {
193 if (mode == Mode.RESPONSE) {
230 workers[i*3] = new Worker (l, Worker.Mode.NORMAL);
231 workers[i*3+1] = new Worker (l, Worker.Mode.REQUEST);
232 workers[i*3+2] = new Worker (l, Worker.Mode.RESPONSE);

Completed in 3677 milliseconds

123