/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: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->perform(adoptRefWillBeNoop(new SetAttributeAction(element, AtomicString(name), AtomicString(value (…) [all...] |
DOMEditor.h | 82 RawPtrWillBeMember<InspectorHistory> m_history; member in class:blink::FINAL
|
InspectorHistory.h | 79 WillBeHeapVector<RefPtrWillBeMember<Action> > m_history; member in class:blink::FINAL
|
InspectorDOMAgent.h | 202 InspectorHistory* history() { return m_history.get(); } 277 OwnPtrWillBeMember<InspectorHistory> m_history; member in class:blink::FINAL
|
InspectorDOMAgent.cpp | 263 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(); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/events/ |
PopStateEvent.cpp | 38 , m_history(nullptr) 44 , m_history(nullptr) 51 , m_history(history) 81 visitor->trace(m_history);
|
PopStateEvent.h | 54 History* history() const { return m_history.get(); } 66 RefPtrWillBeMember<History> m_history; member in class:blink::FINAL
|
/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/include/lldb/Interpreter/ |
CommandHistory.h | 71 History m_history; member in class:lldb_private::CommandHistory
|
/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 | 363 mutable RefPtrWillBeMember<History> m_history; member in class:blink::FINAL
|
LocalDOMWindow.cpp | 580 m_history = nullptr; 630 if (!m_history) 631 m_history = History::create(m_frame); 632 return *m_history; [all...] |