Lines Matching defs:command_stream
2356 StreamString command_stream;
2357 command_stream.Printf("if not (sys.path.__contains__('%s')):\n "
2361 ExecuteMultipleLines(command_stream.GetData(), exc_options).Success();
2436 StreamString command_stream;
2437 command_stream.Clear();
2438 command_stream.Printf("sys.modules.__contains__('%s')", module_name.c_str());
2443 command_stream.GetData(),
2454 command_stream.Clear();
2458 command_stream.Printf("import %s ; reload_module(%s)",
2461 command_stream.Printf("reload_module(%s)", module_name.c_str());
2463 command_stream.Printf("import %s", module_name.c_str());
2465 error = ExecuteMultipleLines(command_stream.GetData(), exc_options);
2480 command_stream.Clear();
2481 command_stream.Printf("%s", module_name.c_str());
2484 command_stream.GetData(),
2507 StreamString command_stream;
2508 command_stream.Printf("keyword.iskeyword('%s')", word);
2514 if (ExecuteOneLineWithReturn(command_stream.GetData(),