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

/external/lldb/source/Interpreter/
H A DCommandHistory.cpp19 m_history()
29 return m_history.size();
36 return m_history.empty();
53 if (idx > m_history.size())
55 idx = m_history.size() - idx;
56 return m_history[idx].c_str();
61 if (m_history.empty())
64 return m_history.back().c_str();
72 if (idx >= m_history.size())
74 return m_history[id
[all...]
/external/chromium_org/third_party/WebKit/Source/core/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(action);
98 m_history.resize(m_afterLastActionIndex);
99 m_history.append(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.cpp244 , m_history(adoptPtrWillBeNoop(new InspectorHistory()))
245 , m_domEditor(adoptPtrWillBeNoop(new DOMEditor(m_history.get())))
260 return m_history->undo(exceptionState);
265 return m_history->redo(exceptionState);
278 visitor->trace(m_history);
289 OwnPtrWillBeMember<InspectorHistory> m_history; member in class:blink::FINAL
415 DOMEditor::DOMEditor(InspectorHistory* history) : m_history(history) { }
419 return m_history->perform(adoptRefWillBeNoop(new InsertBeforeAction(parentNode, node, anchorNode)), exceptionState);
424 return m_history->perform(adoptRefWillBeNoop(new RemoveChildAction(parentNode, node)), exceptionState);
429 return m_history
[all...]
H A DInspectorHistory.h79 WillBeHeapVector<RefPtrWillBeMember<Action> > m_history; member in class:blink::FINAL
H A DDOMEditor.h82 RawPtrWillBeMember<InspectorHistory> m_history; member in class:blink::FINAL
H A DInspectorDOMAgent.h202 InspectorHistory* history() { return m_history.get(); }
277 OwnPtrWillBeMember<InspectorHistory> m_history; member in class:blink::FINAL
H A DInspectorDOMAgent.cpp263 m_history = adoptPtrWillBeNoop(new InspectorHistory());
264 m_domEditor = adoptPtrWillBeNoop(new DOMEditor(m_history.get()));
275 m_history.clear();
597 if (m_history)
598 m_history->reset();
1426 m_history->undo(exceptionState);
1433 m_history->redo(exceptionState);
1439 m_history->markUndoableState();
2206 visitor->trace(m_history);
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DPopStateEvent.cpp38 , m_history(nullptr)
44 , m_history(nullptr)
51 , m_history(history)
81 visitor->trace(m_history);
H A DPopStateEvent.h54 History* history() const { return m_history.get(); }
66 RefPtrWillBeMember<History> m_history; member in class:blink::FINAL
/external/lldb/include/lldb/Interpreter/
H A DCommandHistory.h71 History m_history; member in class:lldb_private::CommandHistory
/external/lldb/tools/driver/
H A DIOChannel.cpp211 m_history (history_init()),
221 ::el_set (m_edit_line, EL_HIST, history, m_history);
235 assert (m_history);
236 ::history (m_history, &m_history_event, H_SETSIZE, 800);
237 ::history (m_history, &m_history_event, H_SETUNIQUE, 1);
266 if (m_history != NULL)
268 ::history_end (m_history);
269 m_history = NULL;
284 if (m_history != NULL)
292 ::history (m_history,
[all...]
H A DIOChannel.h142 History *m_history; member in class:IOChannel
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp140 m_history (512),
180 m_history.AddPacket (ch, History::ePacketTypeSend, bytes_written);
193 m_history.AddPacket (ch, History::ePacketTypeSend, bytes_written);
225 if (!m_history.DidDumpToLog ())
226 m_history.Dump (log);
231 m_history.AddPacket (packet.GetString(), packet.GetSize(), History::ePacketTypeSend, bytes_written);
459 if (!m_history.DidDumpToLog ())
460 m_history.Dump (log);
465 m_history.AddPacket (m_bytes.c_str(), total_length, History::ePacketTypeRecv, total_length);
645 m_history
[all...]
H A DGDBRemoteCommunication.h252 History m_history; member in class:GDBRemoteCommunication
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DLocalDOMWindow.cpp580 m_history = nullptr;
630 if (!m_history)
631 m_history = History::create(m_frame);
632 return *m_history;
1887 visitor->trace(m_history);
H A DLocalDOMWindow.h363 mutable RefPtrWillBeMember<History> m_history; member in class:blink::FINAL

Completed in 548 milliseconds