Lines Matching refs:bind

32         { "break", std::bind(&DebuggerClient::BreakCommand, this)},
33 { "backtrack", std::bind(&DebuggerClient::BacktrackCommand, this)},
34 { "continue", std::bind(&DebuggerClient::ResumeCommand, this)},
35 { "delete", std::bind(&DebuggerClient::DeleteCommand, this)},
36 { "jump", std::bind(&DebuggerClient::JumpCommand, this)},
37 { "disable", std::bind(&DebuggerClient::DisableCommand, this)},
38 { "display", std::bind(&DebuggerClient::DisplayCommand, this)},
39 { "enable", std::bind(&DebuggerClient::EnableCommand, this)},
40 { "finish", std::bind(&DebuggerClient::FinishCommand, this)},
41 { "frame", std::bind(&DebuggerClient::FrameCommand, this)},
42 { "ignore", std::bind(&DebuggerClient::IgnoreCommand, this)},
43 { "infobreakpoints", std::bind(&DebuggerClient::InfobreakpointsCommand, this)},
44 { "infosource", std::bind(&DebuggerClient::InfosourceCommand, this)},
45 { "list", std::bind(&DebuggerClient::ListCommand, this)},
46 { "next", std::bind(&DebuggerClient::NextCommand, this)},
47 { "ptype", std::bind(&DebuggerClient::PtypeCommand, this)},
48 { "run", std::bind(&DebuggerClient::RunCommand, this)},
49 { "setvar", std::bind(&DebuggerClient::SetvarCommand, this)},
50 { "step", std::bind(&DebuggerClient::StepCommand, this)},
51 { "undisplay", std::bind(&DebuggerClient::UndisplayCommand, this)},
52 { "watch", std::bind(&DebuggerClient::WatchCommand, this)},
53 { "resume", std::bind(&DebuggerClient::ResumeCommand, this)},
54 { "step-into", std::bind(&DebuggerClient::StepIntoCommand, this)},
55 { "step-out", std::bind(&DebuggerClient::StepOutCommand, this)},
56 { "step-over", std::bind(&DebuggerClient::StepOverCommand, this)},