Searched refs:m_history (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorHistory.cpp95 if (!action->mergeId().isEmpty() && m_afterLastActionIndex > 0 && action->mergeId() == m_history[m_afterLastActionIndex - 1]->mergeId())
96 m_history[m_afterLastActionIndex - 1]->merge(WTF::move(action));
98 m_history.resize(m_afterLastActionIndex);
99 m_history.append(WTF::move(action));
112 while (m_afterLastActionIndex > 0 && m_history[m_afterLastActionIndex - 1]->isUndoableStateMark())
116 Action* action = m_history[m_afterLastActionIndex - 1].get();
131 while (m_afterLastActionIndex < m_history.size() && m_history[m_afterLastActionIndex]->isUndoableStateMark())
134 while (m_afterLastActionIndex < m_history.size()) {
135 Action* action = m_history[m_afterLastActionInde
[all...]
H A DDOMEditor.cpp211 , m_history(std::make_unique<InspectorHistory>())
212 , m_domEditor(std::make_unique<DOMEditor>(m_history.get()))
226 return m_history->undo(ec);
231 return m_history->redo(ec);
245 std::unique_ptr<InspectorHistory> m_history; member in class:WebCore::DOMEditor::SetOuterHTMLAction
349 DOMEditor::DOMEditor(InspectorHistory* history) : m_history(history) { }
355 return m_history->perform(std::make_unique<InsertBeforeAction>(parentNode, node, anchorNode), ec);
360 return m_history->perform(std::make_unique<RemoveChildAction>(parentNode, node), ec);
365 return m_history->perform(std::make_unique<SetAttributeAction>(element, name, value), ec);
370 return m_history
[all...]
H A DInspectorHistory.h81 Vector<std::unique_ptr<Action>> m_history; member in class:WebCore::InspectorHistory
H A DDOMEditor.h82 InspectorHistory* m_history; member in class:WebCore::DOMEditor
H A DInspectorDOMAgent.h193 InspectorHistory* history() { return m_history.get(); }
271 std::unique_ptr<InspectorHistory> m_history; member in class:WebCore::InspectorDOMAgent
H A DInspectorDOMAgent.cpp239 m_history = std::make_unique<InspectorHistory>();
240 m_domEditor = std::make_unique<DOMEditor>(m_history.get());
254 m_history.reset();
280 if (m_history)
281 m_history->reset();
1160 m_history->undo(ec);
1167 m_history->redo(ec);
1173 m_history->markUndoableState();
/macosx-10.10/WebCore-7600.1.25/dom/
H A DPopStateEvent.cpp44 , m_history(0)
52 , m_history(0)
59 , m_history(history)
H A DPopStateEvent.h53 History* history() const { return m_history.get(); }
64 RefPtr<History> m_history; member in class:WebCore::PopStateEvent
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A DGestureRecognizer.cpp81 Vector<HistoryItem> m_history; member in class:WebKit::GestureHandler
94 m_history.reserveInitialCapacity(s_historyCapacity);
109 if (m_history.size())
110 m_history.resize(0);
203 if (m_history.size() < m_history.capacity())
204 m_history.uncheckedAppend(item);
206 m_history[m_oldestHistoryItemIndex++] = item;
207 if (m_oldestHistoryItemIndex == m_history.capacity())
218 if (!m_history
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/ios/
H A DWKContentView.mm115 double timeDelta = timestamp - m_history[oldestDataIndex].timestamp;
117 Data& oldestData = m_history[oldestDataIndex];
126 m_history[m_latestDataIndex] = { timestamp, newPosition, scale };
136 m_history[m_latestDataIndex] = { timestamp, newPosition, scale };
156 } m_history[maxHistoryDepth];
/macosx-10.10/WebCore-7600.1.25/loader/
H A DFrameLoader.h99 HistoryController& history() const { return *m_history; }
385 const std::unique_ptr<HistoryController> m_history; member in class:WebCore::FrameLoader
H A DFrameLoader.cpp222 , m_history(std::make_unique<HistoryController>(frame))
/macosx-10.10/WebCore-7600.1.25/page/
H A DDOMWindow.cpp420 ASSERT(!m_history);
588 m_history = 0;
635 if (!m_history)
636 m_history = History::create(m_frame);
637 return m_history.get();
H A DDOMWindow.h479 mutable RefPtr<History> m_history; member in class:WebCore::final

Completed in 174 milliseconds