Searched refs:click (Results 1 - 4 of 4) sorted by relevance

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DShortcutRepositoryImplLog.java49 * A shortcut repository implementation that uses a log of every click.
163 // This has the effect of multiplying the average hit time with the click count
667 // Log click for shortcut
668 final ContentValues click = new ContentValues();
669 click.put(ClickLog.intent_key.name(), intentKey);
670 click.put(ClickLog.query.name(), suggestion.getUserQuery());
671 click.put(ClickLog.hit_time.name(), now);
672 click.put(ClickLog.corpus.name(), corpus.getName());
679 db.insertOrThrow(ClickLog.TABLE_NAME, null, click);
720 * clicklog table. Has one record for each click
[all...]
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
H A DShortcutRepositoryTest.java363 // mApp1 has only one click, but is more recent
591 assertShortcuts("expecting app1's click count to reset after being invalidated.",
612 // click on an app
696 int numClicks = MAX_SHORTCUTS - i; // use click count to get shortcuts in order
823 * Simulate an impression, and optionally a click, on a source.
826 * @param click Whether to register a click in addition to the impression.
828 protected void sourceImpression(Source source, boolean click) { argument
829 sourceImpression(source, click, NOW);
840 * Simulate an impression, and optionally a click, o
845 sourceImpression(Source source, boolean click, long now) argument
[all...]
/packages/apps/Mms/src/com/android/mms/ui/
H A DMessageListItem.java516 DialogInterface.OnClickListener click = new DialogInterface.OnClickListener() {
532 b.setAdapter(adapter, click);
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DContactDetailFragment.java901 // Then create the click listener for the "More network" entry. Open the popup.
1100 public void click(View clickedView, Listener fragmentListener) { method in class:ContactDetailFragment.ViewEntry
1191 public void click(View clickedView, Listener fragmentListener) { method in class:ContactDetailFragment.NetworkTitleViewEntry
1365 public void click(View clickedView, Listener fragmentListener) { method in class:ContactDetailFragment.DetailViewEntry
1703 entry.click(view, mListener);
1778 * Default (fallback) list item click listener. Note the click event for DetailViewEntry is
1789 entry.click(view, mListener);

Completed in 456 milliseconds