Kenny Root fc01794f33 Make Uri.parseUserPart, parseHost, and parsePort symmetric
Currently parseUserPart uses the encoded authority to split the URI
into user and non-user parts, but the parseHost and parsePort uses
the decoded URI to split the URI into non-host, host, and port parts.
This gives unexpected results when %40 ('@') and %3a (':') is used
in a URI:

Uri test = Uri.parse("http://bob%40lee%3ajr@example.com:42/");
test.getUserInfo() => "bob@lee:jr"
test.getHost() => "lee:jr@example.com" (should be "example.com")
test.getPort() => -1 (should be 42)
2009-09-14 17:45:04 -07:00
2009-09-03 15:19:21 -07:00
2009-07-29 14:25:07 -07:00
2009-07-29 14:25:07 -07:00
2009-08-11 13:12:34 -07:00
2009-07-31 17:38:20 -07:00
2009-09-14 14:19:56 -07:00
2009-08-03 07:45:45 -07:00
2009-09-03 15:19:21 -07:00
2009-08-31 09:17:57 -07:00
2009-09-03 15:19:21 -07:00
2009-07-29 14:57:05 -07:00
2009-09-03 15:19:21 -07:00
2009-08-25 14:37:40 -07:00
2009-09-03 15:19:21 -07:00
2008-10-21 07:00:00 -07:00
2009-09-03 15:19:21 -07:00
2009-08-31 09:17:57 -07:00
2009-08-11 13:12:34 -07:00
2009-09-03 15:19:21 -07:00
2009-08-11 13:12:34 -07:00
2009-09-02 13:39:46 -07:00
2008-10-21 07:00:00 -07:00
2009-07-21 11:16:54 -07:00
2009-09-03 15:19:21 -07:00
Description
No description provided
5.1 GiB
Languages
Java 77.3%
Kotlin 9.2%
PowerBuilder 6.6%
C++ 5.5%
AIDL 1%