HomeSort by relevance Sort by last modified time
    Searched defs:shortcuts (Results 1 - 5 of 5) sorted by null

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShortcutCursor.java 24 * A SuggestionCursor that allows shortcuts to be updated by overlaying
40 public ShortcutCursor(int maxShortcuts, CursorBackedSuggestionCursor shortcuts) {
41 super(shortcuts.getUserQuery());
42 mShortcuts = shortcuts;
44 int count = shortcuts.getCount();
47 shortcuts.moveTo(i);
48 if (shortcuts.getSuggestionSource() != null) {
49 add(new SuggestionPosition(shortcuts));
SuggestionsProviderImpl.java 133 SuggestionCursor shortcuts = getShortcutsForQuery(query, corpora, maxShortcuts); local
134 if (shortcuts != null) {
135 suggestions.setShortcuts(shortcuts);
ShortcutRepositoryImplLog.java 59 "SELECT " + Shortcuts.intent_key.fullName + " FROM " + Shortcuts.TABLE_NAME;
64 Shortcuts.shortcut_id.name() + "=? AND " + Shortcuts.source.name() + "=?";
109 String tables = ClickLog.TABLE_NAME + " INNER JOIN " + Shortcuts.TABLE_NAME
110 + " ON " + ClickLog.intent_key.fullName + " = " + Shortcuts.intent_key.fullName;
112 Shortcuts.intent_key.fullName,
113 Shortcuts.source.fullName,
114 Shortcuts.source_version_code.fullName,
115 Shortcuts.format.fullName + " AS " + SearchManager.SUGGEST_COLUMN_FORMAT
228 ShortcutCursor shortcuts = getShortcutsForQuery(query, allowedCorpora, maxShortcuts, local
    [all...]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
SourceShortcutRefresherTest.java 73 DataSuggestionCursor shortcuts = new DataSuggestionCursor(mQuery, shortcut1); local
74 mRefresher.refresh(shortcuts, mListener);
84 DataSuggestionCursor shortcuts = new DataSuggestionCursor(mQuery, shortcut1); local
85 mRefresher.refresh(shortcuts, mListener);
95 DataSuggestionCursor shortcuts = new DataSuggestionCursor(mQuery, shortcut1); local
96 mRefresher.refresh(shortcuts, mListener);
  /system/core/libpixelflinger/
scanline.cpp 107 static shortcut_t shortcuts[] = { member in namespace:android
231 const int numFilters = sizeof(shortcuts)/sizeof(shortcut_t);
233 if (c->state.needs.match(shortcuts[i].filter)) {
234 c->scanline = shortcuts[i].scanline;
235 c->init_y = shortcuts[i].init_y;
    [all...]

Completed in 167 milliseconds