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

123456

/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dhistory.cc25 History::History(scoped_refptr<HistoryDataStore> store) function in class:app_list::History
36 History::~History() {
40 bool History::IsReady() const {
44 void History::AddLaunchEvent(const std::string& query,
50 scoped_ptr<KnownResults> History::GetKnownResults(
56 void History::OnHistoryDataLoadedFromStore() {
H A Dhistory_factory.cc23 History* HistoryFactory::GetForBrowserContext(
25 return static_cast<History*>(
31 "app_list::History",
45 return new History(history_data_store);
H A Dhistory.h27 // History tracks the launch events of the search results and uses HistoryData
33 class History : public KeyedService, public HistoryDataObserver { class in namespace:app_list
35 explicit History(scoped_refptr<HistoryDataStore> store);
36 virtual ~History();
58 DISALLOW_COPY_AND_ASSIGN(History);
H A Dhistory_factory.h18 class History;
20 // Singleton that owns all History and associates them with profiles;
26 // Returns History associated with |context|.
27 static History* GetForBrowserContext(content::BrowserContext* context);
H A Dsearch_controller.h21 class History;
71 History* history_; // KeyedService, not owned.
H A Dhistory_unittest.cc111 history_.reset(new History(scoped_refptr<HistoryDataStore>(
139 History* history() { return history_.get(); }
149 scoped_ptr<History> history_;
167 // History should be initialized with data just added.
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DHistory.cpp27 #include "core/frame/History.h"
45 History::History(LocalFrame* frame) function in class:blink::History
51 void History::trace(Visitor* visitor)
56 unsigned History::length() const
65 SerializedScriptValue* History::state()
71 SerializedScriptValue* History::stateInternal() const
82 bool History::stateChanged() const
87 bool History::isSameAsCurrentState(SerializedScriptValue* state) const
92 void History
[all...]
H A DHistory.h45 class History FINAL : public RefCountedWillBeGarbageCollectedFinalized<History>, public ScriptWrappable, public DOMWindowProperty {
47 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(History);
49 static PassRefPtrWillBeRawPtr<History> create(LocalFrame* frame)
51 return adoptRefWillBeNoop(new History(frame));
69 explicit History(LocalFrame*);
H A DHistory.idl28 ] interface History {
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DPopStateEvent.h35 class History;
45 static PassRefPtrWillBeRawPtr<PopStateEvent> create(PassRefPtr<SerializedScriptValue>, PassRefPtrWillBeRawPtr<History>);
54 History* history() const { return m_history.get(); }
63 PopStateEvent(PassRefPtr<SerializedScriptValue>, PassRefPtrWillBeRawPtr<History>);
66 RefPtrWillBeMember<History> m_history;
H A DPopStateEvent.cpp31 #include "core/frame/History.h"
48 PopStateEvent::PopStateEvent(PassRefPtr<SerializedScriptValue> serializedState, PassRefPtrWillBeRawPtr<History> history)
64 PassRefPtrWillBeRawPtr<PopStateEvent> PopStateEvent::create(PassRefPtr<SerializedScriptValue> serializedState, PassRefPtrWillBeRawPtr<History> history)
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dhistory.js10 goog.provide('cvox.History');
16 * A history event is stored in the cvox.History object and contains all the
162 cvox.History = function() {
175 // NOTE(deboer): Currently we only ever have one cvox.History, but
180 goog.addSingletonGetter(cvox.History);
186 cvox.History.prototype.addListDiv_ = function() {
199 button.onclick = cvox.History.sendToFeedback;
206 dumpButton.onclick = cvox.History.dumpJs;
224 cvox.History.prototype.removeListDiv_ = function() {
237 cvox.History
[all...]
H A Dinit_globals.js40 .add(cvox.History.getInstance())
H A Dkeyboard_handler.js9 goog.require('cvox.History');
116 var history = cvox.History.getInstance();
/external/smack/src/org/jivesoftware/smackx/muc/
H A DDiscussionHistory.java146 * Returns the History that manages the amount of discussion history provided on entering a
149 * @return the History that manages the amount of discussion history provided on entering a
152 MUCInitialPresence.History getMUCHistory() {
158 MUCInitialPresence.History mucHistory = new MUCInitialPresence.History();
/external/lldb/include/lldb/Interpreter/
H A DCommandHistory.h69 typedef std::vector<std::string> History; typedef in class:lldb_private::CommandHistory
71 History m_history;
/external/smack/src/org/jivesoftware/smackx/packet/
H A DMUCInitialPresence.java36 * setting a configured History instance to the MUCInitialPresence instance.
37 * @see MUCInitialPresence#setHistory(MUCInitialPresence.History).
44 private History history;
75 public History getHistory() {
89 * Sets the History that manages the amount of discussion history provided on
95 public void setHistory(History history) {
109 * The History class controls the number of characters or messages to receive
114 public static class History { class in class:MUCInitialPresence
/external/libedit/src/
H A Dhistedit.h183 * ==== History ====
186 typedef struct history History; typedef in typeref:struct:history
194 * History access functions.
196 History * history_init(void);
197 void history_end(History *);
199 int history(History *, HistEvent *, int, ...);
288 * ==== History ====
H A Dhistory.c48 * hist.c: TYPE(History) access functions
104 private int history_setsize(TYPE(History) *, TYPE(HistEvent) *, int);
105 private int history_getsize(TYPE(History) *, TYPE(HistEvent) *);
106 private int history_setunique(TYPE(History) *, TYPE(HistEvent) *, int);
107 private int history_getunique(TYPE(History) *, TYPE(HistEvent) *);
108 private int history_set_fun(TYPE(History) *, TYPE(History) *);
109 private int history_load(TYPE(History) *, const char *);
110 private int history_save(TYPE(History) *, const char *);
111 private int history_prev_event(TYPE(History) *, TYP
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8HistoryCustom.cpp40 #include "core/frame/History.h"
46 History* history = V8History::toImpl(info.Holder());
64 ExceptionState exceptionState(ExceptionState::ExecutionContext, "pushState", "History", info.Holder(), info.GetIsolate());
72 History* history = V8History::toImpl(info.Holder());
80 ExceptionState exceptionState(ExceptionState::ExecutionContext, "replaceState", "History", info.Holder(), info.GetIsolate());
88 History* history = V8History::toImpl(info.Holder());
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp35 GDBRemoteCommunication::History::History (uint32_t size) : function in class:GDBRemoteCommunication::History
44 GDBRemoteCommunication::History::~History ()
49 GDBRemoteCommunication::History::AddPacket (char packet_char,
66 GDBRemoteCommunication::History::AddPacket (const std::string &src,
84 GDBRemoteCommunication::History::Dump (lldb_private::Stream &strm) const
105 GDBRemoteCommunication::History::Dump (lldb_private::Log *log) const
180 m_history.AddPacket (ch, History::ePacketTypeSend, bytes_written);
193 m_history.AddPacket (ch, History
[all...]
H A DGDBRemoteCommunication.h121 class History class in class:GDBRemoteCommunication
158 History (uint32_t size);
160 ~History ();
252 History m_history;
/external/chromium_org/third_party/mesa/src/docs/
H A DMESA_window_pos.spec122 Revision History
/external/mesa3d/docs/
H A DMESA_window_pos.spec122 Revision History
/external/lldb/tools/driver/
H A DIOChannel.h142 History *m_history;

Completed in 2016 milliseconds

123456