OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:decodedUrl
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/webkit/
URLUtil.java
321
String
decodedUrl
= Uri.decode(url);
322
if (
decodedUrl
!= null) {
323
int queryIndex =
decodedUrl
.indexOf('?');
326
decodedUrl
=
decodedUrl
.substring(0, queryIndex);
328
if (!
decodedUrl
.endsWith("/")) {
329
int index =
decodedUrl
.lastIndexOf('/') + 1;
331
filename =
decodedUrl
.substring(index);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java
201
String
decodedUrl
= Uri.decode(url);
202
if (
decodedUrl
!= null
203
&& !
decodedUrl
.endsWith("/") &&
decodedUrl
.indexOf('?') < 0) {
204
int index =
decodedUrl
.lastIndexOf('/') + 1;
209
filename =
decodedUrl
.substring(index);
Completed in 69 milliseconds