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

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/history/
HistoryItem.java 24 public class HistoryItem {
25 private static final String LOGTAG = "HistoryItem";
30 public HistoryItem(ImagePreset preset, FilterRepresentation representation) {
  /external/chromium_org/third_party/WebKit/Source/core/history/
HistoryItem.cpp 27 #include "core/history/HistoryItem.h"
44 HistoryItem::HistoryItem()
52 HistoryItem::~HistoryItem()
56 inline HistoryItem::HistoryItem(const HistoryItem& item)
57 : RefCounted<HistoryItem>()
80 PassRefPtr<HistoryItem> HistoryItem::copy() cons
    [all...]
HistoryItem.h 39 class HistoryItem;
44 typedef Vector<RefPtr<HistoryItem> > HistoryItemVector;
46 class HistoryItem : public RefCounted<HistoryItem> {
48 static PassRefPtr<HistoryItem> create() { return adoptRef(new HistoryItem); }
50 ~HistoryItem();
52 PassRefPtr<HistoryItem> copy() const;
54 // Resets the HistoryItem to its initial state, as returned by create().
101 void addChildItem(PassRefPtr<HistoryItem>);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TabbedEditorContainer.js 509 WebInspector.TabbedEditorContainer.HistoryItem = function(url, selectionRange, scrollLineNumber)
512 /** @const */ this._isSerializable = url.length < WebInspector.TabbedEditorContainer.HistoryItem.serializableUrlLengthLimit;
517 WebInspector.TabbedEditorContainer.HistoryItem.serializableUrlLengthLimit = 4096;
521 * @return {!WebInspector.TabbedEditorContainer.HistoryItem}
523 WebInspector.TabbedEditorContainer.HistoryItem.fromObject = function (serializedHistoryItem)
526 return new WebInspector.TabbedEditorContainer.HistoryItem(serializedHistoryItem.url, selectionRange, serializedHistoryItem.scrollLineNumber);
529 WebInspector.TabbedEditorContainer.HistoryItem.prototype = {
549 * @param {!Array.<!WebInspector.TabbedEditorContainer.HistoryItem>} items
565 items.push(WebInspector.TabbedEditorContainer.HistoryItem.fromObject(serializedHistory[i]));
649 item = new WebInspector.TabbedEditorContainer.HistoryItem(urls[i])
    [all...]
  /packages/apps/Browser/src/com/android/browser/
HistoryItem.java 29 /* package */ class HistoryItem extends BookmarkItem
34 * Create a new HistoryItem.
35 * @param context Context for this HistoryItem.
37 /* package */ HistoryItem(Context context) {
41 /* package */ HistoryItem(Context context, boolean showStar) {
53 /* package */ void copyTo(HistoryItem item) {
  /external/chromium/chrome/browser/ui/cocoa/
history_menu_bridge.h 63 struct HistoryItem {
65 HistoryItem();
67 HistoryItem(const HistoryItem& copy);
68 ~HistoryItem();
86 // quickly), the NSMenu can release the item before the HistoryItem has
98 // If the HistoryItem is a window, this will be the vector of tabs. Note
102 std::vector<HistoryItem*> tabs;
106 void operator=(const HistoryItem&);
136 // corresponding HistoryItem
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
history_menu_bridge.h 66 struct HistoryItem {
68 HistoryItem();
70 HistoryItem(const HistoryItem& copy);
71 ~HistoryItem();
89 // quickly), the NSMenu can release the item before the HistoryItem has
101 // If the HistoryItem is a window, this will be the vector of tabs. Note
105 std::vector<HistoryItem*> tabs;
109 void operator=(const HistoryItem&);
143 // corresponding HistoryItem
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
global_history_menu.cc 63 class GlobalHistoryMenu::HistoryItem {
65 HistoryItem()
85 // If the HistoryItem is a window, this will be the vector of tabs. Note
89 std::vector<HistoryItem*> tabs;
92 DISALLOW_COPY_AND_ASSIGN(HistoryItem);
163 HistoryItem* item = new HistoryItem();
174 GlobalHistoryMenu::HistoryItem* GlobalHistoryMenu::HistoryItemForMenuItem(
180 GlobalHistoryMenu::HistoryItem* GlobalHistoryMenu::HistoryItemForTab(
184 HistoryItem* item = new HistoryItem()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebHistoryItem.cpp 36 #include "core/history/HistoryItem.h"
51 void addReferencedFilePaths(HistoryItem* item, HashSet<String>& results)
75 m_private = HistoryItem::create();
264 WebHistoryItem::WebHistoryItem(const PassRefPtr<HistoryItem>& item)
269 WebHistoryItem& WebHistoryItem::operator=(const PassRefPtr<HistoryItem>& item)
275 WebHistoryItem::operator PassRefPtr<HistoryItem>() const
  /external/chromium_org/chrome/browser/ui/views/frame/
global_menu_bar_x11.cc 289 struct GlobalMenuBarX11::HistoryItem {
290 HistoryItem() : session_id(0) {}
304 // If the HistoryItem is a window, this will be the vector of tabs. Note
308 std::vector<HistoryItem*> tabs;
311 DISALLOW_COPY_AND_ASSIGN(HistoryItem);
512 GlobalMenuBarX11::HistoryItem* GlobalMenuBarX11::HistoryItemForTab(
516 HistoryItem* item = new HistoryItem();
524 void GlobalMenuBarX11::AddHistoryItemToMenu(HistoryItem* item,
565 HistoryItem* item = new HistoryItem()
    [all...]
  /frameworks/base/core/java/android/os/
BatteryStats.java 443 public final static class HistoryItem implements Parcelable {
444 static final String TAG = "HistoryItem";
447 public HistoryItem next;
506 public HistoryItem() {
509 public HistoryItem(long time, Parcel src) {
559 public void writeDelta(Parcel dest, HistoryItem last) {
700 public void setTo(HistoryItem o) {
712 public void setTo(long time, byte cmd, HistoryItem o) {
724 public boolean same(HistoryItem o) {
758 public abstract boolean getNextHistoryLocked(HistoryItem out)
    [all...]

Completed in 325 milliseconds