HomeSort by relevance Sort by last modified time
    Searched refs:History (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/webkit/Source/WebCore/page/
History.cpp 27 #include "History.h"
40 History::History(Frame* frame)
45 Frame* History::frame() const
50 void History::disconnectFrame()
55 unsigned History::length() const
64 void History::back()
69 void History::back(ScriptExecutionContext* context)
74 void History::forward()
79 void History::forward(ScriptExecutionContext* context
    [all...]
History.h 41 class History : public RefCounted<History> {
43 static PassRefPtr<History> create(Frame* frame) { return adoptRef(new History(frame)); }
64 History(Frame*);
History.idl 37 ] History {
DOMWindow.h 54 class History;
120 History* history() const;
346 History* optionalHistory() const { return m_history.get(); }
459 mutable RefPtr<History> m_history;
  /system/core/sh/
myhistedit.h 37 extern History *hist;
  /frameworks/base/core/java/android/provider/
Browser.java 30 import android.provider.BrowserContract.History;
39 * A table containing both bookmarks and history items. The columns of the table are defined in
108 /* columns needed to determine whether to truncate history */
116 /* truncate this many history items at a time */
142 /* Set a cap on the count of history items in the history/bookmark
297 return cr.query(History.CONTENT_URI, new String[] { History._ID, History.VISITS },
302 * Update the visited history to acknowledge that a site has bee
    [all...]
  /packages/apps/Browser/src/com/android/browser/
DataController.java 31 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.VISITS, 1)
    [all...]
UI.java 38 History,
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HistoryCustom.cpp 35 #include "History.h"
63 History* history = V8History::toNative(args.Holder()); local
64 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectPush, ec);
87 History* history = V8History::toNative(args.Holder()); local
88 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectReplace, ec);
95 History* history = V8History::toNative(host) local
102 History* history = V8History::toNative(host); local
    [all...]
  /packages/apps/Calculator/src/com/android/calculator2/
Persist.java 35 History history = new History(); field in class:Persist
60 history = new History(version, in);
75 history.write(out);
History.java 26 class History {
33 History() {
37 History(int version, DataInput in) throws IOException {
HistoryAdapter.java 35 HistoryAdapter(Context context, History history, Logic evaluator) {
36 mEntries = history.mEntries;
  /packages/apps/Browser/tests/src/com/android/browser/tests/utils/
BP2TestCaseHelper.java 30 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/homepages/
RequestHandler.java 26 import android.provider.BrowserContract.History;
99 // We can reuse this for both History and Bookmarks queries because the
101 // interfaces that both History and Bookmarks implement
103 History.URL,
104 History.TITLE,
105 History.THUMBNAIL
107 private static final String SELECTION = History.URL
108 + " NOT LIKE 'content:%' AND " + History.THUMBNAIL + " IS NOT NULL";
112 History.CONTENT_URI, PROJECTION, SELECTION,
113 null, History.VISITS + " DESC LIMIT 12");
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 47 import android.provider.BrowserContract.History;
95 static final String TABLE_HISTORY = "history";
105 static final String TABLE_HISTORY_JOIN_IMAGES = "history LEFT OUTER JOIN images " +
106 "ON history.url = images." + Images.URL;
113 "history LEFT OUTER JOIN (%s) bookmarks " +
114 "ON history.url = bookmarks.url LEFT OUTER JOIN images " +
115 "ON history.url = images.url_key";
117 static final String DEFAULT_SORT_HISTORY = History.DATE_LAST_VISITED + " DESC";
123 "history LEFT OUTER JOIN bookmarks ON history.url = bookmarks.url"
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BP2UriObserverTests.java 26 import android.provider.BrowserContract.History;
97 values.put(History.FAVICON, rawFavicon);
98 values.put(History.TITLE, "Stub1");
BP1to2UpgradeTests.java 32 import android.provider.BrowserContract.History;
92 Cursor c = getMockContentResolver().query(History.CONTENT_URI,
93 new String[] { History.URL, History.DATE_LAST_VISITED },
  /frameworks/base/include/androidfw/
InputTransport.h 351 struct History {
377 History history[2]; member in struct:android::InputConsumer::TouchState
378 History lastResample;
394 history[historyCurrent].initializeFrom(msg);
397 const History* getHistory(size_t index) const {
398 return &history[(historyCurrent + index) & 1];
  /external/mesa3d/docs/
MESA_window_pos.spec 122 Revision History
MESA_pixmap_colormap.spec 88 Revision History
MESA_resize_buffers.spec 79 Revision History
MESA_set_3dfx_mode.spec 83 Revision History
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [all...]
  /external/webkit/Source/WebCore/loader/
HistoryController.cpp 168 // history item.
172 frame->loader()->history()->saveDocumentState();
173 frame->loader()->history()->saveScrollPositionAndViewStateToItem(frame->loader()->history()->currentItem());
244 // Ultimately, history item navigations should go through the policy delegate. That's covered in:
272 LOG(History, "WebCoreHistory: Updating History for back/forward navigation in frame %s", m_frame->loader()->documentLoader()->title().string().utf8().data());
279 // When traversing history, we may end up redirecting to a different URL
288 LOG(History, "WebCoreHistory: Updating History for reload in frame %s", m_frame->loader()->documentLoader()->title().string().utf8().data())
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 132 ATTRIBUTE Ascend-Seconds-Of-History 238 integer
133 ATTRIBUTE Ascend-History-Weigh-Type 239 integer
201 VALUE Ascend-History-Weigh-Type History-Constant 0
202 VALUE Ascend-History-Weigh-Type History-Linear 1
203 VALUE Ascend-History-Weigh-Type History-Quadratic 2

Completed in 521 milliseconds

1 2 3