Home | History | Annotate | Download | only in webkit

Lines Matching refs:filename

59             String filename =
62 // if the filename contains special characters, we don't
64 if (!filename.isEmpty() &&
65 Pattern.matches("[a-zA-Z_0-9\\.\\-\\(\\)\\%]+", filename)) {
66 int dotPos = filename.lastIndexOf('.');
68 return filename.substring(dotPos + 1);
138 // for attachment, use the filename in the Content-Disposition
140 String filename = null;
142 filename = URLUtil.parseContentDisposition(contentDisposition);
144 if (filename != null) {
145 url = filename;