Searched refs:accept (Results 251 - 275 of 928) sorted by relevance

<<11121314151617181920>>

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DEnumConstantDeclarationImpl.java56 public void accept(DeclarationVisitor v) { method in class:EnumConstantDeclarationImpl
H A DEnumDeclarationImpl.java60 public void accept(DeclarationVisitor v) { method in class:EnumDeclarationImpl
H A DInterfaceDeclarationImpl.java49 public void accept(DeclarationVisitor v) { method in class:InterfaceDeclarationImpl
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/
H A DAnnotationTypeImpl.java58 public void accept(TypeVisitor v) { method in class:AnnotationTypeImpl
H A DArrayTypeImpl.java60 public void accept(TypeVisitor v) { method in class:ArrayTypeImpl
H A DEnumTypeImpl.java57 public void accept(TypeVisitor v) { method in class:EnumTypeImpl
H A DInterfaceTypeImpl.java58 public void accept(TypeVisitor v) { method in class:InterfaceTypeImpl
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DConstantValue_attribute.java54 public <R, D> R accept(Visitor<R, D> visitor, D data) { method in class:ConstantValue_attribute
H A DRuntimeInvisibleAnnotations_attribute.java53 public <R, P> R accept(Visitor<R, P> visitor, P p) { method in class:RuntimeInvisibleAnnotations_attribute
H A DRuntimeInvisibleParameterAnnotations_attribute.java53 public <R, P> R accept(Visitor<R, P> visitor, P p) { method in class:RuntimeInvisibleParameterAnnotations_attribute
H A DRuntimeVisibleAnnotations_attribute.java53 public <R, P> R accept(Visitor<R, P> visitor, P p) { method in class:RuntimeVisibleAnnotations_attribute
H A DRuntimeVisibleParameterAnnotations_attribute.java53 public <R, P> R accept(Visitor<R, P> visitor, P p) { method in class:RuntimeVisibleParameterAnnotations_attribute
/openjdk7/jdk/src/share/classes/sun/reflect/generics/repository/
H A DMethodRepository.java68 getTree().getReturnType().accept(r);
/openjdk7/jdk/src/share/classes/sun/reflect/generics/tree/
H A DClassSignature.java55 public void accept(Visitor v){v.visitClassSignature(this);} method in class:ClassSignature
H A DFormalTypeParameter.java54 public void accept(TypeTreeVisitor<?> v){v.visitFormalTypeParameter(this);} method in class:FormalTypeParameter
H A DSimpleClassTypeSignature.java57 public void accept(TypeTreeVisitor<?> v){ method in class:SimpleClassTypeSignature
H A DWildcard.java58 public void accept(TypeTreeVisitor<?> v){v.visitWildcard(this);} method in class:Wildcard
/openjdk7/jdk/src/share/sample/nio/server/
H A DBN.java60 SocketChannel sc = ssc.accept();
H A DBP.java66 SocketChannel sc = ssc.accept();
/openjdk7/jdk/test/java/net/ipv6tests/
H A DTcpTest.java79 s1 = server.accept ();
86 s1 = server.accept();
87 s2 = server.accept();
180 server.accept().close();
186 /* Test timeouts on accept(), connect() */
194 server.accept ();
195 throw new RuntimeException ("accept should not have returned");
202 s1 = server.accept ();
206 s2 = server.accept ();
210 s3 = server.accept ();
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DNTypeMerger.java83 return Dispatcher.dispatch(getClass(), this, "accept", a, b);
136 protected NType accept(NBitfield a, NBitfield b) { method in class:NTypeMerger
141 protected NType accept(NPrimitive a, NPrimitive b) { method in class:NTypeMerger
146 protected NType accept(NPointer a, NPointer b) { method in class:NTypeMerger
170 protected NType accept(NStruct a, NStruct b) { method in class:NTypeMerger
174 protected NType accept(NUnion a, NUnion b) { method in class:NTypeMerger
179 protected NType accept(NArray a, NArray b) { method in class:NTypeMerger
185 protected NType accept(NVoid a, NVoid b) { return NVoid.inst(); } method in class:NTypeMerger
186 protected NType accept(NObject a, NObject b) { return NObject.inst(); } method in class:NTypeMerger
187 protected NType accept(NClas method in class:NTypeMerger
188 protected NType accept(NSelector a, NSelector b) { return NSelector.inst(); } method in class:NTypeMerger
189 protected NType accept(NUnknown a, NUnknown b) { return NUnknown.inst(); } method in class:NTypeMerger
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousServerSocketChannel.java42 * the {@link #accept(Object,CompletionHandler) accept} method
44 * An attempt to invoke the <tt>accept</tt> method on an unbound channel will
48 * though at most one accept operation can be outstanding at any time.
49 * If a thread initiates an accept operation before a previous accept operation
77 * listener.accept(null, new CompletionHandler&lt;AsynchronousSocketChannel,Void&gt;() {
79 * // accept the next connection
80 * listener.accept(null, this);
240 * <p> This method initiates an asynchronous operation to accept
278 public abstract <A> void accept(A attachment, method in class:AsynchronousServerSocketChannel
299 public abstract Future<AsynchronousSocketChannel> accept(); method in class:AsynchronousServerSocketChannel
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DDefinitions.java185 public void accept(WSDLDocumentVisitor visitor) throws Exception { method in class:Definitions
189 ((Import) iter.next()).accept(visitor);
193 _types.accept(visitor);
197 ((Message) iter.next()).accept(visitor);
200 ((PortType) iter.next()).accept(visitor);
203 ((Binding) iter.next()).accept(visitor);
206 ((Service) iter.next()).accept(visitor);
209 _helper.accept(visitor);
/openjdk7/jdk/test/java/net/SocketInputStream/
H A DSocketTimeout.java46 soc1 = srv.accept();
65 // now check accept
68 srv.accept ();
/openjdk7/jdk/test/java/net/Socks/
H A DSocksProxyVersion.java86 try (Socket s = ss.accept()) {
93 try (Socket s = ss.accept()) {

Completed in 93 milliseconds

<<11121314151617181920>>