Searched refs:command_str (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/llvm/utils/lit/lit/llvm/ |
D | subst.py | 116 command_str = self.command.resolve(config, search_dirs) 118 command_str = str(self.command) 120 if command_str: 122 command_str = ' '.join([command_str] + self.extra_args) 128 command_str = os.path.join( 145 if command_str: 147 return (self.regex, tool_pipe, command_str)
|
/external/tensorflow/tensorflow/python/framework/ |
D | python_op_gen_main.cc | 92 StringPiece command_str = io::Basename(argv_zero); in InferSourceFileName() local 99 if (absl::ConsumePrefix(&command_str, kExecPrefix) && in InferSourceFileName() 100 str_util::EndsWith(command_str, kExecSuffix)) { in InferSourceFileName() 101 command_str.remove_suffix(strlen(kExecSuffix)); in InferSourceFileName() 102 return strings::StrCat(command_str, ".cc"); in InferSourceFileName()
|
/external/igt-gpu-tools/lib/ |
D | igt_core.c | 314 static const char *command_str; variable 331 return command_str; in igt_test_name() 363 fprintf(stderr, "Test %s failed.\n", command_str); in _igt_log_buffer_dump() 622 fprintf(f, "Usage: %s [OPTIONS]\n", command_str); in print_usage() 763 command_str = argv[0]; in common_init() 764 if (strrchr(command_str, '/')) in common_init() 765 command_str = strrchr(command_str, '/') + 1; in common_init() 909 igt_kmsg(KMSG_INFO "%s: executing\n", command_str); in common_init() 1101 command_str, subtest_name); in __igt_run_subtest() 1732 if (command_str) in igt_exit() [all …]
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectHelp.cpp | 25 std::string command_str = command.str(); in GenerateAdditionalHelpAvenuesMessage() local 29 !subcommand_str.empty() ? subcommand_str : command_str; in GenerateAdditionalHelpAvenuesMessage() 30 s->Printf("'%s' is not a known command.\n", command_str.c_str()); in GenerateAdditionalHelpAvenuesMessage()
|
/external/llvm-project/lldb/source/Plugins/Platform/Android/ |
D | AdbClient.cpp | 536 const char *command_str = static_cast<const char *>(command); in internalStat() local 537 if (strncmp(command_str, kSTAT, stat_len)) in internalStat() 538 return Status("Got invalid stat command: %s", command_str); in internalStat()
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | curses_ui.py | 1532 def _tab_complete(self, command_str): argument 1551 command_str)
|
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
D | ScriptInterpreterPython.cpp | 914 std::string command_str = command.str(); in ExecuteOneLine() local 967 Py_BuildValue("(Os)", session_dict.get(), command_str.c_str())); in ExecuteOneLine() 993 "python failed attempting to evaluate '%s'\n", command_str.c_str()); in ExecuteOneLine()
|