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

  /packages/apps/Browser/src/com/android/browser/
HistoryItem.java 31 /* package */ class HistoryItem extends BookmarkItem {
36 * Create a new HistoryItem.
37 * @param context Context for this HistoryItem.
39 /* package */ HistoryItem(Context context) {
59 /* package */ void copyTo(HistoryItem item) {
  /external/webkit/WebCore/history/
HistoryItem.cpp 27 #include "HistoryItem.h"
48 static void defaultNotifyHistoryItemChanged(HistoryItem*)
52 void (*notifyHistoryItemChanged)(HistoryItem*) = defaultNotifyHistoryItemChanged;
54 HistoryItem::HistoryItem()
64 HistoryItem::HistoryItem(const String& urlString, const String& title, double time)
78 HistoryItem::HistoryItem(const String& urlString, const String& title, const String& alternateTitle, double time)
93 HistoryItem::HistoryItem(const KURL& url, const String& target, const String& parent, const String& title
    [all...]
HistoryItem.h 55 class HistoryItem;
60 typedef Vector<RefPtr<HistoryItem> > HistoryItemVector;
62 extern void (*notifyHistoryItemChanged)(HistoryItem*);
69 class HistoryItem : public RefCounted<HistoryItem> {
73 static PassRefPtr<HistoryItem> create() { return adoptRef(new HistoryItem); }
74 static PassRefPtr<HistoryItem> create(const String& urlString, const String& title, double lastVisited)
76 return adoptRef(new HistoryItem(urlString, title, lastVisited));
78 static PassRefPtr<HistoryItem> create(const String& urlString, const String& title, const String& alternateTitle, double lastVis (…)
    [all...]
  /external/webkit/WebKit/chromium/src/
WebHistoryItem.cpp 35 #include "HistoryItem.h"
47 class WebHistoryItemPrivate : public HistoryItem {
52 assign(static_cast<WebHistoryItemPrivate*>(HistoryItem::create().releaseRef()));
277 WebHistoryItem::WebHistoryItem(const PassRefPtr<HistoryItem>& item)
282 WebHistoryItem& WebHistoryItem::operator=(const PassRefPtr<HistoryItem>& item)
288 WebHistoryItem::operator PassRefPtr<HistoryItem>() const
  /frameworks/base/core/java/android/os/
BatteryStats.java 409 public final static class HistoryItem implements Parcelable {
410 public HistoryItem next;
463 public HistoryItem() {
466 public HistoryItem(long time, Parcel src) {
498 public void setTo(HistoryItem o) {
510 public void setTo(long time, byte cmd, HistoryItem o) {
522 public boolean same(HistoryItem o) {
556 public abstract boolean getNextHistoryLocked(HistoryItem out);
561 public abstract HistoryItem getHistory();
690 new BitDescription(HistoryItem.STATE_BATTERY_PLUGGED_FLAG, "plugged")
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 155 HistoryItem mHistory;
156 HistoryItem mHistoryEnd;
157 HistoryItem mHistoryLastEnd;
158 HistoryItem mHistoryCache;
159 final HistoryItem mHistoryCur = new HistoryItem();
    [all...]

Completed in 274 milliseconds