Home | History | Annotate | Download | only in browser

Lines Matching refs:match

83     // shared suggestion array index, make sure to match COLUMNS
112 // make sure that these match the index of TABLE_NAMES
115 // (id % 10) should match the table name index
448 * 2. If bookmark/history entries has a match, "Search the web" shows up at
834 int match = URI_MATCHER.match(url);
835 if (match == -1) {
838 if (match == URI_MATCH_SUGGEST && mResultsCursor != null) {
845 if (match == URI_MATCH_SUGGEST || match == URI_MATCH_BOOKMARKS_SUGGEST) {
863 // To match against titles.
874 if (match == URI_MATCH_BOOKMARKS_SUGGEST
897 if (match == URI_MATCH_BOOKMARKS_ID || match == URI_MATCH_SEARCHES_ID) {
912 Cursor c = db.query(TABLE_NAMES[match % 10], projection,
921 int match = URI_MATCHER.match(url);
922 switch (match) {
948 int match = URI_MATCHER.match(url);
950 switch (match) {
998 int match = URI_MATCHER.match(url);
999 if (match == -1 || match == URI_MATCH_SUGGEST) {
1004 boolean isBookmarkTable = (match == URI_MATCH_BOOKMARKS_ID);
1007 if (isBookmarkTable || match == URI_MATCH_SEARCHES_ID) {
1036 int count = db.delete(TABLE_NAMES[match % 10], where, whereArgs);
1046 int match = URI_MATCHER.match(url);
1047 if (match == -1 || match == URI_MATCH_SUGGEST) {
1051 if (match == URI_MATCH_BOOKMARKS_ID || match == URI_MATCH_SEARCHES_ID) {
1069 if (match == URI_MATCH_BOOKMARKS_ID || match == URI_MATCH_BOOKMARKS) {
1098 int ret = db.update(TABLE_NAMES[match % 10], values, where, whereArgs);