Searched defs:create (Results 226 - 250 of 313) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DEndpoint.java100 public static Endpoint create(Object implementor) { method in class:Endpoint
101 return create(null, implementor);
125 public static Endpoint create(Object implementor, WebServiceFeature ... features) { method in class:Endpoint
126 return create(null, implementor, features);
146 public static Endpoint create(String bindingId, Object implementor) { method in class:Endpoint
171 public static Endpoint create(String bindingId, Object implementor, WebServiceFeature ... features) { method in class:Endpoint
222 * use the {@link javax.xml.ws.Endpoint#create(String,Object)} and
252 * use the {@link javax.xml.ws.Endpoint#create(String,Object)} and
H A DService.java704 public static Service create( method in class:Service
727 public static Service create( method in class:Service
740 public static Service create(QName serviceName) { method in class:Service
757 public static Service create(QName serviceName, WebServiceFeature ... features) { method in class:Service
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DNode.java76 abstract Node create(Address addr); method in class:Node.Instantiator
79 static public Node create(Address addr) { method in class:Node
118 _out[j] = Node.create(ptr.getAddressAt(j * addressSize));
130 _in[j] = Node.create(ptr.getAddressAt(j * addressSize));
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTextAreaUI.java145 public View create(Element elem) { method in class:BasicTextAreaUI
H A DBasicTextFieldUI.java90 public View create(Element elem) { method in class:BasicTextFieldUI
306 * The view may need to do layout and create child views to enable
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStyledEditorKit.java307 public View create(Element elem) { method in class:StyledEditorKit.StyledViewFactory
/openjdk7/jdk/src/share/classes/java/net/
H A DAbstractPlainDatagramSocketImpl.java78 protected synchronized void create() throws SocketException { method in class:AbstractPlainDatagramSocketImpl
H A DSocketImpl.java36 * create both client and server sockets.
74 * @param stream if <code>true</code>, create a stream socket;
75 * otherwise, create a datagram socket.
79 protected abstract void create(boolean stream) throws IOException; method in class:SocketImpl
/openjdk7/hotspot/src/share/vm/code/
H A DcodeBlob.cpp206 BufferBlob* BufferBlob::create(const char* name, int buffer_size) { function in class:BufferBlob
230 BufferBlob* BufferBlob::create(const char* name, CodeBuffer* cb) { function in class:BufferBlob
272 AdapterBlob* AdapterBlob::create(CodeBuffer* cb) { function in class:AdapterBlob
291 MethodHandlesAdapterBlob* MethodHandlesAdapterBlob::create(int buffer_size) { function in class:MethodHandlesAdapterBlob
386 DeoptimizationBlob* DeoptimizationBlob::create( function in class:DeoptimizationBlob
428 UncommonTrapBlob* UncommonTrapBlob::create( function in class:UncommonTrapBlob
464 ExceptionBlob* ExceptionBlob::create( function in class:ExceptionBlob
499 SafepointBlob* SafepointBlob::create( function in class:SafepointBlob
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DgcTaskManager.cpp109 GCTaskQueue* GCTaskQueue::create() { function in class:GCTaskQueue
112 tty->print_cr("GCTaskQueue::create()"
403 _queue = SynchronizedGCTaskQueue::create(unsynchronized_queue, lock());
420 set_thread(t, GCTaskThread::create(this, t, processor_assignment[t]));
534 GCTaskQueue* q = GCTaskQueue::create();
786 WaitForBarrierGCTask* fin = WaitForBarrierGCTask::create();
814 NoopGCTask* NoopGCTask::create() {
843 IdleGCTask* IdleGCTask::create() {
980 WaitForBarrierGCTask* WaitForBarrierGCTask::create() {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DLister.java117 Lister<BeanT,PropT,ItemT,PackT> create(Type fieldType,ID idness, Adapter<Type,Class> adapter) { method in class:Lister
257 * Sometimes we need to create a new instance of a collection.
281 collection = ClassFactory.create(implClass);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/sax/
H A DSAXBufferCreator.java68 public MutableXMLStreamBuffer create(XMLReader reader, InputStream in) throws IOException, SAXException { method in class:SAXBufferCreator
69 return create(reader, in, null);
72 public MutableXMLStreamBuffer create(XMLReader reader, InputStream in, String systemId) throws IOException, SAXException { method in class:SAXBufferCreator
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DWSEndpoint.java141 * This is the same value given to the {@link #create} method.
440 * could create its own invoker to do additional functions like transactions,
485 public static <T> WSEndpoint<T> create( method in class:WSEndpoint
518 public static <T> WSEndpoint<T> create( method in class:WSEndpoint
529 return create(implType,processHandlerAnnotation,invoker,serviceName,portName,container,binding,primaryWsdl,metadata,resolver,false);
535 * {@link #create(Class, boolean, Invoker, QName, QName, Container, WSBinding, SDDocumentSource, Collection, EntityResolver)}
542 public static <T> WSEndpoint<T> create( method in class:WSEndpoint
553 return create(
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/streaming/
H A DXMLStreamReaderFactory.java119 public static XMLStreamReader create(InputSource source, boolean rejectDTDs) { method in class:XMLStreamReaderFactory
138 public static XMLStreamReader create(@Nullable String systemId, InputStream in, boolean rejectDTDs) { method in class:XMLStreamReaderFactory
142 public static XMLStreamReader create(@Nullable String systemId, InputStream in, @Nullable String encoding, boolean rejectDTDs) { method in class:XMLStreamReaderFactory
144 ? create(systemId, in, rejectDTDs)
148 public static XMLStreamReader create(@Nullable String systemId, Reader reader, boolean rejectDTDs) { method in class:XMLStreamReaderFactory
342 * if the create method on this implementation is synchronized,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DSOAPFaultBuilder.java68 * Base class that represents SOAP 1.1 or SOAP 1.2 fault. This class can be used by the invocation handlers to create
76 * Gives the {@link DetailType} for a Soap 1.1 or Soap 1.2 message that can be used to create either a checked exception or
95 * gives the fault string that can be used to create an {@link Exception}
220 return JAXBMessage.create(JAXB_CONTEXT, new SOAP11Fault(fault), soapVersion);
222 return JAXBMessage.create(JAXB_CONTEXT, new SOAP12Fault(fault), soapVersion);
231 return JAXBMessage.create(JAXB_CONTEXT, new SOAP11Fault(faultCode, faultString, null, detail), soapVersion);
233 return JAXBMessage.create(JAXB_CONTEXT, new SOAP12Fault(faultCode, faultString, detail), soapVersion);
408 Message msg = JAXBMessage.create(JAXB_CONTEXT, soap11Fault, soapVersion);
504 Message msg = JAXBMessage.create(JAXB_CONTEXT, soap12Fault, soapVersion);
524 public static SOAPFaultBuilder create(Messag method in class:SOAPFaultBuilder
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/stream/
H A DStreamMessage.java385 // would be to create a filtering XMLStreamReader from reader+envelopeTag+bodyTag
396 c.create(reader);
403 c.storeEndElement(); // create structure element for </Body>
404 c.storeEndElement(); // create structure element for </Envelope>
405 c.storeEndElement(); // create structure element for END_DOCUMENT
487 create(SOAPVersion.SOAP_11);
488 create(SOAPVersion.SOAP_12);
491 private static void create(SOAPVersion v) { method in class:StreamMessage
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DSDDocumentImpl.java104 public static SDDocumentImpl create(SDDocumentSource src, QName serviceName, QName portTypeName) { method in class:SDDocumentImpl
246 w = XMLStreamWriterFactory.create(os, "UTF-8");
271 w = XMLStreamWriterFactory.create(os, "UTF-8");
/openjdk7/jdk/src/windows/classes/java/lang/
H A DProcessImpl.java45 * create new processes.
385 handle = create(cmdstr, envblock, path,
469 * means to create a pipe to connect child and parent
477 private static native long create(String cmdstr, method in class:ProcessImpl
488 * @param file the file to open or create
/openjdk7/jdk/src/windows/classes/java/net/
H A DTwoStacksPlainDatagramSocketImpl.java85 protected synchronized void create() throws SocketException { method in class:TwoStacksPlainDatagramSocketImpl
88 super.create();
H A DTwoStacksPlainSocketImpl.java92 protected synchronized void create(boolean stream) throws IOException { method in class:TwoStacksPlainSocketImpl
95 super.create(stream);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWFramePeer.java186 void create(WComponentPeer parent) { method in class:WFramePeer
H A DWListPeer.java122 native void create(WComponentPeer parent); method in class:WListPeer
H A DWScrollPanePeer.java48 native void create(WComponentPeer parent); method in class:WScrollPanePeer
H A DWTrayIconPeer.java63 create();
172 native void create(); method in class:WTrayIconPeer
/openjdk7/jdk/test/java/net/Socket/
H A DSocketImplTest.java68 protected void create(boolean stream){ method in class:SocketImplTest.MySocketImpl
94 protected void create() throws SocketException { method in class:SocketImplTest.MyDatagramSocketImpl

Completed in 301 milliseconds

1234567891011>>