Searched refs:History (Results 1 - 13 of 13) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DDataController.java31 import android.provider.BrowserContract.History;
247 c = cr.query(History.CONTENT_URI, new String[] { History._ID, History.VISITS },
248 History.URL + "=?", new String[] { url }, null);
251 values.put(History.VISITS, c.getInt(1) + 1);
252 values.put(History.DATE_LAST_VISITED, System.currentTimeMillis());
253 cr.update(ContentUris.withAppendedId(History.CONTENT_URI, c.getLong(0)),
258 values.put(History.URL, url);
259 values.put(History
[all...]
H A DUI.java38 History, enum constant in enum:UI.ComboViews
H A DComboViewActivity.java87 case History:
H A DController.java1558 bookmarksOrHistoryPicker(ComboViews.History);
1731 // Let the History and Bookmark fragments handle menus they created.
2706 bookmarksOrHistoryPicker(ComboViews.History);
/packages/apps/Calculator/src/com/android/calculator2/
H A DPersist.java35 History history = new History();
60 history = new History(version, in);
H A DHistory.java26 class History { class
33 History() { method in class:History
37 History(int version, DataInput in) throws IOException { method in class:History
H A DHistoryAdapter.java35 HistoryAdapter(Context context, History history, Logic evaluator) {
H A DLogic.java35 private History mHistory;
64 Logic(Context context, History history, CalculatorDisplay display) {
H A DCalculator.java44 private History mHistory;
/packages/apps/Browser/tests/src/com/android/browser/tests/utils/
H A DBP2TestCaseHelper.java30 import android.provider.BrowserContract.History;
54 mHistoryObserver = new TriggeredObserver(History.CONTENT_URI);
185 values.put(BrowserContract.History.TITLE, title);
186 values.put(BrowserContract.History.URL, url);
188 Uri ret = mockInsert(History.CONTENT_URI, values);
196 values.put(BrowserContract.History.TITLE, title);
197 values.put(BrowserContract.History.URL, url);
/packages/apps/Browser/src/com/android/browser/provider/
H A DBrowserProvider2.java47 import android.provider.BrowserContract.History;
117 static final String DEFAULT_SORT_HISTORY = History.DATE_LAST_VISITED + " DESC";
126 qualifyColumn(TABLE_HISTORY, History._ID),
127 qualifyColumn(TABLE_HISTORY, History.URL),
132 qualifyColumn(TABLE_HISTORY, History.DATE_LAST_VISITED)};
139 TABLE_HISTORY + "." + History.DATE_LAST_VISITED + " != 0";
142 TABLE_HISTORY + "." + History.DATE_LAST_VISITED + " DESC";
293 // History
295 map.put(History._ID, qualifyColumn(TABLE_HISTORY, History
[all...]
/packages/apps/Browser/tests/src/com/android/browser/tests/
H A DBP2UriObserverTests.java26 import android.provider.BrowserContract.History;
97 values.put(History.FAVICON, rawFavicon);
98 values.put(History.TITLE, "Stub1");
H A DBP1to2UpgradeTests.java32 import android.provider.BrowserContract.History;
92 Cursor c = getMockContentResolver().query(History.CONTENT_URI,
93 new String[] { History.URL, History.DATE_LAST_VISITED },

Completed in 434 milliseconds