Home | History | Annotate | Download | only in browser

Lines Matching refs:url

45  * adapter to wrap multiple cursors for url/search completions
60 OmniboxSuggestions.URL,
65 "(url LIKE ? OR url LIKE ? OR url LIKE ? OR url LIKE ? OR title LIKE ?)";
183 if (TextUtils.isEmpty(item.url)) {
188 tv2.setText(item.url);
277 return sitem.url;
404 public String url;
410 url = u;
448 String url = mCursor.getString(2);
450 return new SuggestItem(getTitle(title, url), getUrl(title, url),
468 selection = "url LIKE ?";
492 * webpage title. If the webpage title is empty, returns the stripped url instead.
496 private String getTitle(String title, String url) {
498 title = UrlUtils.stripUrl(url);
505 * webpage urlurl should go in the title
510 private String getUrl(String title, String url) {
513 || title.equals(url)) {
516 return UrlUtils.stripUrl(url);
530 String url = mCursor.getString(
534 int type = (TextUtils.isEmpty(url)) ? TYPE_SUGGEST : TYPE_SUGGEST_URL;
535 SuggestItem item = new SuggestItem(title, url, type);
587 if (TextUtils.isEmpty(item.url)) {
591 return item.url;