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

12

/openjdk7/jdk/src/share/native/sun/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; \
/openjdk7/jdk/test/javax/swing/DataTransfer/6456844/
H A Dbug6456844.java40 JEditorPane ep = new JEditorPane();
41 ep.setContentType("text/html");
42 ep.setText("<html><body>abc</body></html>");
43 ep.setBorder(new EmptyBorder(20, 20, 20, 20));
44 ep.setBounds(0, 0, 100, 100);
47 (JTextComponent.DropLocation) SwingAccessor.getJTextComponentAccessor().dropLocationForPoint(ep,
/openjdk7/jdk/test/javax/swing/text/DefaultStyledDocument/6636983/
H A Dbug6636983.java49 ep,
55 ep.dispatchEvent(ime);
59 HTMLDocument d = (HTMLDocument) ep.getDocument();
83 JEditorPane ep; field in class:bug6636983
86 ep.setText("A<p>B");
99 ep.setText("A<br>B");
120 ep = new JEditorPane();
121 ep.setContentType("text/html");
122 ep.setPreferredSize(new Dimension(100, 100));
127 frame.add(ep);
[all...]
/openjdk7/jdk/src/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.java128 static void registerRefs(Endpoint ep, List<LiveRef> refs) { argument
138 epEntry = EndpointEntry.lookup(ep);
216 public static EndpointEntry lookup(Endpoint ep) { argument
218 EndpointEntry entry = endpointTable.get(ep);
220 entry = new EndpointEntry(ep);
221 endpointTable.put(ep, entry);
H A DTransport.java72 * endpoint <I>ep</I>. A Channel is an object that creates and
75 * @param ep the endpoint to which connections will be generated.
79 public abstract Channel getChannel(Endpoint ep); argument
83 * endpoint <I>ep</I>.
85 public abstract void free(Endpoint ep); argument
H A DStreamRemoteCall.java290 TCPEndpoint ep = (TCPEndpoint) conn.getChannel().getEndpoint();
292 "received exception: [" + ep.getHost() + ":" +
293 ep.getPort() + "] exception: ", ex);
/openjdk7/jdk/src/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 DTCPTransport.java157 TransportConstants.Version + ", ep = " + getEndpoint());
183 * endpoint <I>ep</I>. A Channel is an object that creates and
186 * @param ep the endpoint to which connections will be generated.
190 public TCPChannel getChannel(Endpoint ep) { argument
192 if (ep instanceof TCPEndpoint) {
194 Reference<TCPChannel> ref = channelTable.get(ep);
199 TCPEndpoint tcpEndpoint = (TCPEndpoint) ep;
211 * endpoint <I>ep</I>.
213 public void free(Endpoint ep) { argument
214 if (ep instanceo
[all...]
H A DTCPChannel.java62 private final TCPEndpoint ep; field in class:TCPChannel
112 TCPChannel(TCPTransport tr, TCPEndpoint ep) { argument
114 this.ep = ep;
121 return ep;
150 security.checkConnect(ep.getHost(), ep.getPort());
216 Socket sock = ep.newSocket();
/openjdk7/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);
/openjdk7/jdk/test/sun/security/krb5/
H A DIPv6.java111 String eh = kdcs[cc][0], ep = kdcs[cc][1];
115 System.out.println("Expected: " + eh + " : " + ep);
118 (ep == null || ep.length() == 0) && !p.equals("88") ||
119 (ep != null && ep.length() > 0) && !p.equals(ep)) {
/openjdk7/jdk/src/share/native/sun/awt/giflib/
H A Dgifalloc.c166 ExtensionBlock *ep; local
178 ep = &New->ExtensionBlocks[New->ExtensionBlockCount++];
180 ep->ByteCount=Len;
181 ep->Bytes = (char *)malloc(ep->ByteCount);
182 if (ep->Bytes == NULL)
186 memcpy(ep->Bytes, ExtData, Len);
187 ep->Function = New->Function;
196 ExtensionBlock *ep; local
201 for (ep
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DListPattern.java67 Pattern ep = p.expand(b);
68 if (ep != p)
69 return b.makeList(ep, locator);
H A DOneOrMorePattern.java64 Pattern ep = p.expand(b);
65 if (ep != p)
66 return b.makeOneOrMore(ep);
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;
/openjdk7/corba/src/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();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicInternalFrameUI.java716 Point ep = new Point(__x, __y);
719 ep.x += np.x;
720 ep.y += np.y;
724 if (ep.x > i.left && ep.y > i.top && ep.x < frame.getWidth() - i.right) {
735 if (ep.x <= i.left) {
736 if (ep.y < resizeCornerSize + i.top) {
738 } else if (ep.y > frame.getHeight()
744 } else if (ep
[all...]
/openjdk7/jaxws/src/share/jaxws_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());
/openjdk7/jaxws/src/share/jaxws_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()));
/openjdk7/hotspot/src/share/vm/adlc/
H A Dmain.cpp449 char *ep; local
452 ep = fname + strlen(fname) - 1; // start at last character and look for '.'
453 while (ep >= fname && *ep != '.') --ep;
454 if (*ep == '.') *ep = '\0'; // truncate string at '.'
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DAbstractField.java211 CElementPropertyInfo ep = (CElementPropertyInfo) prop;
212 List<CTypeRef> types = ep.getTypes();
214 if(ep.isValueList()) {
218 assert ep.getXmlName()==null;
284 CElementPropertyInfo ep = (CElementPropertyInfo) prop;
285 if(ep.isRequired() && exposedType.isReference()) {
296 if(ep.isRequired() && !prop.isCollection())
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngwutil.c1200 png_sPLT_entryp ep; local
1221 for (ep = spalette->entries; ep<spalette->entries + spalette->nentries; ep++)
1225 entrybuf[0] = (png_byte)ep->red;
1226 entrybuf[1] = (png_byte)ep->green;
1227 entrybuf[2] = (png_byte)ep->blue;
1228 entrybuf[3] = (png_byte)ep->alpha;
1229 png_save_uint_16(entrybuf + 4, ep->frequency);
1234 png_save_uint_16(entrybuf + 0, ep
[all...]

Completed in 424 milliseconds

12