Home | History | Annotate | Download | only in browser

Lines Matching refs:url

49  * url/search input view
226 private void finishInput(String url, String extra, String source) {
230 if (TextUtils.isEmpty(url)) {
233 if (mIncognitoMode && isSearch(url)) {
242 url = engineInfo.getSearchUriForQuery(url);
245 mListener.onAction(url, extra, source);
250 String url = UrlUtils.fixUrl(inUrl).trim();
251 if (TextUtils.isEmpty(url)) return false;
253 if (Patterns.WEB_URL.matcher(url).matches()
254 || UrlUtils.ACCEPTED_URI_SCHEMA.matcher(url).matches()) {
268 public void onSelect(String url, int type, String extra) {
269 finishInput(url, extra, SUGGESTED);