Searched refs:ep (Results 1 - 25 of 48) sorted by relevance

12

/openjdk10/jdk/src/java.desktop/share/native/libawt/awt/image/cvutils/
H A Dimg_fsutil.h34 #define DitherDist(ep, e1, e2, e3, ec, c) \
41 ep[0].c += e1 >>= 4; \
42 ep[1].c += e2 >>= 4; \
43 ep[2].c += e3 >>= 4; \
/openjdk10/jdk/test/javax/swing/DataTransfer/6456844/
H A Dbug6456844.java41 JEditorPane ep = new JEditorPane();
42 ep.setContentType("text/html");
43 ep.setText("<html><body>abc</body></html>");
44 ep.setBorder(new EmptyBorder(20, 20, 20, 20));
45 ep.setBounds(0, 0, 100, 100);
48 (JTextComponent.DropLocation) SwingAccessor.getJTextComponentAccessor().dropLocationForPoint(ep,
/openjdk10/jdk/test/javax/swing/text/DefaultStyledDocument/6636983/
H A Dbug6636983.java51 ep,
57 ep.dispatchEvent(ime);
61 HTMLDocument d = (HTMLDocument) ep.getDocument();
85 JEditorPane ep; field in class:bug6636983
88 ep.setText("A<p>B");
101 ep.setText("A<br>B");
122 ep = new JEditorPane();
123 ep.setContentType("text/html");
124 ep.setPreferredSize(new Dimension(100, 100));
129 frame.add(ep);
[all...]
/openjdk10/jdk/src/java.rmi/share/classes/sun/rmi/transport/
H A DLiveRef.java46 private final Endpoint ep; field in class:LiveRef
64 ep = endpoint;
122 return ((TCPEndpoint) ep).getPort();
133 return ((TCPEndpoint) ep).getClientSocketFactory();
140 return ((TCPEndpoint) ep).getServerSocketFactory();
147 ep.exportObject(target);
152 ch = ep.getChannel();
162 return ep;
172 return "[endpoint:" + ep + "(" + type + ")," +
184 return (ep
[all...]
H A DConnectionInputStream.java70 Endpoint ep = ref.getEndpoint();
73 List<LiveRef> refList = incomingRefTable.get(ep);
77 incomingRefTable.put(ep, refList);
80 // add ref to list of refs for endpoint ep
H A DDGCClient.java144 static void registerRefs(Endpoint ep, List<LiveRef> refs) { argument
154 epEntry = EndpointEntry.lookup(ep);
232 public static EndpointEntry lookup(Endpoint ep) { argument
234 EndpointEntry entry = endpointTable.get(ep);
236 entry = new EndpointEntry(ep);
237 endpointTable.put(ep, entry);
H A DTransport.java86 * endpoint <I>ep</I>. A Channel is an object that creates and
89 * @param ep the endpoint to which connections will be generated.
93 public abstract Channel getChannel(Endpoint ep); argument
97 * endpoint <I>ep</I>.
99 public abstract void free(Endpoint ep); argument
H A DStreamRemoteCall.java298 TCPEndpoint ep = (TCPEndpoint) conn.getChannel().getEndpoint();
300 "received exception: [" + ep.getHost() + ":" +
301 ep.getPort() + "] exception: ", ex);
/openjdk10/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/
H A DTCPEndpoint.java196 TCPEndpoint ep = null;
207 ep = new TCPEndpoint(localHost, port, csf, ssf);
209 epList.add(ep);
210 ep.listenPort = port;
211 ep.transport = new TCPTransport(epList);
221 ep = epList.getLast();
222 String lastHost = ep.host;
223 int lastPort = ep.port;
224 TCPTransport lastTransport = ep.transport;
238 ep
[all...]
H A DTCPChannel.java61 private final TCPEndpoint ep; field in class:TCPChannel
106 TCPChannel(TCPTransport tr, TCPEndpoint ep) { argument
108 this.ep = ep;
115 return ep;
144 security.checkConnect(ep.getHost(), ep.getPort());
209 Socket sock = ep.newSocket();
H A DTCPTransport.java163 TransportConstants.Version + ", ep = " + getEndpoint());
189 * endpoint <I>ep</I>. A Channel is an object that creates and
192 * @param ep the endpoint to which connections will be generated.
196 public TCPChannel getChannel(Endpoint ep) { argument
198 if (ep instanceof TCPEndpoint) {
200 Reference<TCPChannel> ref = channelTable.get(ep);
205 TCPEndpoint tcpEndpoint = (TCPEndpoint) ep;
217 * endpoint <I>ep</I>.
219 public void free(Endpoint ep) { argument
220 if (ep instanceo
[all...]
/openjdk10/jdk/test/java/rmi/transport/checkFQDN/
H A DCheckFQDNClient.java44 static TCPEndpoint ep = null; field in class:CheckFQDNClient
85 if (ep == null) {
91 return ep.getHost();
102 ep = TCPEndpoint.getLocalEndpoint(0);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/binary/
H A DOneOrMorePattern.java64 Pattern ep = p.expand(b);
65 if (ep != p)
66 return b.makeOneOrMore(ep);
H A DListPattern.java67 Pattern ep = p.expand(b);
68 if (ep != p)
69 return b.makeList(ep, locator);
H A DAttributePattern.java72 Pattern ep = p.expand(b);
73 if (ep != p)
74 return b.makeAttribute(nameClass, ep, loc);
H A DElementPattern.java114 ElementPattern ep = (ElementPattern)other;
115 return nameClass.equals(ep.nameClass) && p == ep.p;
/openjdk10/jdk/test/sun/security/krb5/
H A DIPv6.java116 String eh = kdcs[cc][0], ep = kdcs[cc][1];
120 System.out.println("Expected: " + eh + " : " + ep);
123 (ep == null || ep.length() == 0) && !p.equals("88") ||
124 (ep != null && ep.length() > 0) && !p.equals(ep)) {
/openjdk10/jdk/src/java.desktop/share/native/libsplashscreen/giflib/
H A Dgifalloc.c254 ExtensionBlock *ep; local
270 ep = &(*ExtensionBlocks)[(*ExtensionBlockCount)++];
272 ep->Function = Function;
273 ep->ByteCount=Len;
274 ep->Bytes = (GifByteType *)malloc(ep->ByteCount);
275 if (ep->Bytes == NULL)
279 memcpy(ep->Bytes, ExtData, Len);
289 ExtensionBlock *ep; local
294 for (ep
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/legacy/connection/
H A DLegacyServerSocketManagerImpl.java149 LegacyServerSocketEndPointInfo ep = cast(endpoints.next());
150 if (ep != null && ep.getType().equals(socketType)) {
152 return ep.getLocatorPort();
154 return ep.getPort();
/openjdk10/langtools/test/tools/javac/lambda/
H A DMostSpecific07.java30 <U, V> U m(ExtPredicate<U, V> ep, ArrayList<U> au, List<U> lu, V v) { return null; } argument
H A DMostSpecific06.java29 <U> U m(ExtPredicate<U> ep, ArrayList<U> au, List<U> lu) { return null; } argument
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicInternalFrameUI.java921 Point ep = new Point(__x, __y);
924 ep.x += np.x;
925 ep.y += np.y;
929 if (ep.x > i.left && ep.y > i.top && ep.x < frame.getWidth() - i.right) {
940 if (ep.x <= i.left) {
941 if (ep.y < resizeCornerSize + i.top) {
943 } else if (ep.y > frame.getHeight()
949 } else if (ep
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DRawTypeSetBuilder.java174 protected CTypeRef toTypeRef(CElementPropertyInfo ep) { argument
208 protected CTypeRef toTypeRef(CElementPropertyInfo ep) { argument
245 protected CTypeRef toTypeRef(CElementPropertyInfo ep) { argument
248 if(a!=null && ep!=null) ep.setAdapter(a);
316 protected CTypeRef toTypeRef(CElementPropertyInfo ep) { argument
317 if(ep!=null && target.getAdapterUse()!=null)
318 ep.setAdapter(target.getAdapterUse());
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/api/impl/s2j/
H A DAbstractMappingImpl.java118 CElementPropertyInfo ep = (CElementPropertyInfo) p;
120 // if(ep.isCollection())
124 List<? extends CTypeRef> ref = ep.getTypes();
129 result.add(createPropertyImpl(ep, ref.get(0).getTagName()));
/openjdk10/hotspot/src/share/vm/adlc/
H A Dmain.cpp441 char *ep; local
444 ep = fname + strlen(fname) - 1; // start at last character and look for '.'
445 while (ep >= fname && *ep != '.') --ep;
446 if (*ep == '.') *ep = '\0'; // truncate string at '.'

Completed in 135 milliseconds

12