Searched refs:new_command (Results 1 - 2 of 2) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandObjectRegexCommand.cpp67 std::string new_command(pos->command);
76 for (idx = 0; (percent_var_idx = new_command.find(percent_var, idx)) != std::string::npos; )
78 new_command.erase(percent_var_idx, percent_var_len);
79 new_command.insert(percent_var_idx, match_str);
86 result.GetOutputStream().Printf("%s\n", new_command.c_str());
89 return m_interpreter.HandleCommand(new_command.c_str(), eLazyBoolCalculate, result, NULL, true, true);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
H A DSBCommandInterpreter.cpp538 CommandObjectMultiword *new_command = new CommandObjectMultiword(*m_opaque_ptr,name,help); local
539 new_command->SetRemovable (true);
540 lldb::CommandObjectSP new_command_sp(new_command);
592 CommandObjectMultiword *new_command = new CommandObjectMultiword(m_opaque_sp->GetCommandInterpreter(),name,help);
593 new_command->SetRemovable (true);
594 lldb::CommandObjectSP new_command_sp(new_command);

Completed in 48 milliseconds