Home | History | Annotate | Download | only in browser

Lines Matching defs:like

63             "(url LIKE ? OR url LIKE ? OR url LIKE ? OR url LIKE ? OR title LIKE ?)";
438 String like = constraint + "%";
441 if (like.startsWith("http") || like.startsWith("file")) {
443 args[0] = like;
444 selection = "url LIKE ?";
447 args[0] = "http://" + like;
448 args[1] = "http://www." + like;
449 args[2] = "https://" + like;
450 args[3] = "https://www." + like;
452 args[4] = like;