Searched refs:tool_path (Results 1 – 8 of 8) sorted by relevance
/external/libchrome/build/android/pylib/constants/ |
D | host_paths.py | 71 tool_path = _cached_tool_paths.get((tool, cpu_arch)) 72 if tool_path: 73 return tool_path 83 tool_path = os.path.join(constants.ANDROID_NDK_ROOT, 87 _cached_tool_paths[(tool, cpu_arch)] = tool_path 88 return tool_path
|
/external/libvpx/libvpx/test/ |
D | tools_common.sh | 154 local tool_path="${LIBVPX_BIN_PATH}/${tool_name}${VPX_TEST_EXE_SUFFIX}" 155 if [ ! -x "${tool_path}" ]; then 158 tool_path="${LIBVPX_BIN_PATH}/../${tool_name}${VPX_TEST_EXE_SUFFIX}" 161 if [ ! -x "${tool_path}" ]; then 162 tool_path="" 164 echo "${tool_path}"
|
/external/llvm/test/ |
D | lit.cfg | 237 tool_path = lit_config.params.get(tool_name) 238 if tool_path is None: 239 tool_path = lit.util.which(tool_name, llvm_tools_dir) 240 if tool_path is None: 241 return tool_name, tool_path, tool_pipe 245 tool_path += " -verify-machineinstrs" 247 tool_path += " go=" + config.go_executable 248 return tool_name, tool_path, tool_pipe 294 tool_name, tool_path, tool_pipe = find_tool_substitution(pattern) 295 if not tool_path: [all …]
|
/external/v8/tools/clang/scripts/ |
D | run_tool.py | 344 if args.tool_path: 345 tool_path = os.path.abspath(args.tool_path) 347 tool_path = os.path.abspath(os.path.join( 385 dispatcher = _CompilerDispatcher(os.path.join(tool_path, args.tool),
|
D | test_tool.py | 48 tool_path, argument 75 if tool_path: 76 args.extend(['--tool-path', tool_path]) 191 args.tool_path, args.tool_arg,
|
/external/libaom/libaom/test/ |
D | tools_common.sh | 167 for tool_path in ${tool_paths}; do 168 if [ -x "${tool_path}" ] && [ -f "${tool_path}" ]; then 169 echo "${tool_path}"
|
/external/clang/test/ |
D | lit.cfg | 335 tool_path = lit.util.which(tool_name, tool_dirs) 336 if not tool_path: 339 tool_path = clang_tools_dir + '/' + tool_name 340 config.substitutions.append((pattern, tool_pipe + tool_path))
|
/external/clang/ |
D | build.py | 356 tool_path = os.path.join(tools_dir, tool) 358 install_directory(tool_path, install_path)
|