Home | History | Annotate | Download | only in compatibility

Lines Matching defs:port

36  * If given an https scheme but no port, fills in port
57 /* port */ "(?:\\:([0-9]*))?" +
90 throw new IllegalArgumentException("Bad port");
109 /* Get port from scheme or scheme from port, if necessary and
124 String port = "";
127 port = ":" + Integer.toString(mPort);
134 return mScheme + "://" + authInfo + mHost + port + mPath;
153 public void setPort(int port) {
154 mPort = port;