HomeSort by relevance Sort by last modified time
    Searched refs:m_history (Results 1 - 16 of 16) sorted by null

  /external/lldb/source/Interpreter/
CommandHistory.cpp 19 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[idx].c_str()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorHistory.cpp 95 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_afterLastActionIndex].get()
    [all...]
DOMEditor.cpp 244 , 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:WebCore::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->perform(adoptRefWillBeNoop(new SetAttributeAction(element, AtomicString(name), AtomicString(value (…)
    [all...]
InspectorHistory.h 79 WillBeHeapVector<RefPtrWillBeMember<Action> > m_history; member in class:WebCore::FINAL
DOMEditor.h 82 RawPtrWillBeMember<InspectorHistory> m_history; member in class:WebCore::FINAL
InspectorDOMAgent.h 200 InspectorHistory* history() { return m_history.get(); }
275 OwnPtrWillBePersistent<InspectorHistory> m_history; member in class:WebCore::FINAL
InspectorDOMAgent.cpp 252 m_history = adoptPtrWillBeNoop(new InspectorHistory());
253 m_domEditor = adoptPtrWillBeNoop(new DOMEditor(m_history.get()));
264 m_history.clear();
557 if (m_history)
558 m_history->reset();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
PopStateEvent.cpp 38 , m_history(nullptr)
45 , m_history(nullptr)
53 , m_history(history)
84 visitor->trace(m_history);
PopStateEvent.h 53 History* history() const { return m_history.get(); }
65 RefPtrWillBeMember<History> m_history; member in class:WebCore::FINAL
  /external/lldb/include/lldb/Interpreter/
CommandHistory.h 71 History m_history; member in class:lldb_private::CommandHistory
  /external/lldb/tools/driver/
IOChannel.cpp 211 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, &m_history_event, H_SAVE, path_ptr)
    [all...]
IOChannel.h 142 History *m_history; member in class:IOChannel
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunication.cpp 140 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.Dump (strm)
    [all...]
GDBRemoteCommunication.h 252 History m_history; member in class:GDBRemoteCommunication
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalDOMWindow.h 373 mutable RefPtrWillBeMember<History> m_history; member in class:WebCore::FINAL
LocalDOMWindow.cpp 599 m_history = nullptr;
649 if (!m_history)
650 m_history = History::create(m_frame);
651 return *m_history;
    [all...]

Completed in 601 milliseconds