Lines Matching defs:command_stream
2394 StreamString command_stream;
2395 command_stream.Printf("if not (sys.path.__contains__('%s')):\n "
2399 ExecuteMultipleLines(command_stream.GetData(), exc_options).Success();
2471 StreamString command_stream;
2472 command_stream.Clear();
2473 command_stream.Printf("sys.modules.__contains__('%s')", module_name.c_str());
2478 command_stream.GetData(),
2488 command_stream.Clear();
2492 command_stream.Printf("import %s ; reload_module(%s)",
2495 command_stream.Printf("reload_module(%s)", module_name.c_str());
2497 command_stream.Printf("import %s", module_name.c_str());
2499 error = ExecuteMultipleLines(command_stream.GetData(), exc_options);
2514 command_stream.Clear();
2515 command_stream.Printf("%s", module_name.c_str());
2518 command_stream.GetData(),
2541 StreamString command_stream;
2542 command_stream.Printf("keyword.iskeyword('%s')", word);
2548 if (ExecuteOneLineWithReturn(command_stream.GetData(),