/external/pdfium/testing/tools/ |
D | run_pixel_tests.py | 22 def generate_and_test(input_filename, source_dir, working_dir, argument 26 pdf_path = os.path.join(working_dir, input_root + '.pdf') 30 [sys.executable, fixup_path, '--output-dir=' + working_dir, input_path]) 35 if image_differ.HasDifferences(input_filename, source_dir, working_dir): 53 working_dir = finder.WorkingDir(os.path.join('testing', 'pixel')) 54 if not os.path.exists(working_dir): 55 os.makedirs(working_dir) 68 if not generate_and_test(input_filename, source_dir, working_dir,
|
D | run_javascript_tests.py | 20 def generate_and_test(input_filename, source_dir, working_dir, argument 24 pdf_path = os.path.join(working_dir, input_root + '.pdf') 25 txt_path = os.path.join(working_dir, input_root + '.txt') 30 [sys.executable, fixup_path, '--output-dir=' + working_dir, input_path]) 54 working_dir = finder.WorkingDir(os.path.join('testing', 'javascript')) 55 if not os.path.exists(working_dir): 56 os.makedirs(working_dir) 64 if not generate_and_test(input_filename, source_dir, working_dir,
|
D | run_corpus_tests.py | 23 def test_one_file(input_filename, source_dir, working_dir, argument 26 pdf_path = os.path.join(working_dir, input_filename) 34 if image_differ.HasDifferences(input_filename, source_dir, working_dir): 49 working_dir = finder.WorkingDir(os.path.join('testing', 'corpus')) 50 if not os.path.exists(working_dir): 51 os.makedirs(working_dir) 67 if not test_one_file(input_filename, source_dir, working_dir,
|
D | pngdiffer.py | 19 def HasDifferences(self, input_filename, source_dir, working_dir): argument 22 working_dir, input_root + self.ACTUAL_TEMPLATE)
|
/external/objenesis/ |
D | update_source.sh | 16 working_dir="$(mktemp -d)" 17 trap "echo \"Removing temporary directory\"; rm -rf $working_dir" EXIT 19 echo "Fetching Objenesis source into $working_dir" 20 svn export -q $SOURCE $working_dir/source 25 cp -R $working_dir/source/$include .
|
/external/mockito/ |
D | update_source.sh | 23 working_dir="$(mktemp -d)" 24 trap "echo \"Removing temporary directory\"; rm -rf $working_dir" EXIT 26 echo "Fetching Mockito source into $working_dir" 27 git clone $SOURCE $working_dir/source 32 cp -R $working_dir/source/$include .
|
/external/lldb/tools/darwin-debug/ |
D | darwin-debug.cpp | 108 const char *working_dir, in posix_spawn_for_debug() argument 155 if (working_dir) in posix_spawn_for_debug() 156 ::chdir (working_dir); in posix_spawn_for_debug() 188 std::string working_dir; in main() local 255 working_dir.assign (optarg); in main() 317 if (working_dir.empty()) in main() 325 printf ("Working directory: '%s'\n", working_dir.c_str()); in main() 336 working_dir.empty() ? NULL : working_dir.c_str(), in main()
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest_test_utils.py | 193 def __init__(self, command, working_dir=None, capture_stderr=True, env=None): argument 232 cwd=working_dir, universal_newlines=True, env=env) 257 if working_dir is not None: 258 os.chdir(working_dir)
|
D | gtest_xml_outfiles_test.py | 102 working_dir=gtest_test_utils.GetTempDir())
|
/external/protobuf/gtest/test/ |
D | gtest_test_utils.py | 197 def __init__(self, command, working_dir=None, capture_stderr=True, env=None): argument 236 cwd=working_dir, universal_newlines=True, env=env) 261 if working_dir is not None: 262 os.chdir(working_dir)
|
D | gtest_xml_outfiles_test.py | 102 working_dir=gtest_test_utils.GetTempDir())
|
/external/gtest/test/ |
D | gtest_test_utils.py | 208 def __init__(self, command, working_dir=None, capture_stderr=True, env=None): argument 247 cwd=working_dir, universal_newlines=True, env=env) 272 if working_dir is not None: 273 os.chdir(working_dir)
|
D | gtest_xml_outfiles_test.py | 102 working_dir=gtest_test_utils.GetTempDir())
|
/external/webrtc/test/testsupport/ |
D | fileutils.cc | 46 std::string working_dir = WorkingDir(); in ProjectRootPath() local 47 if (working_dir == kFallbackPath) { in ProjectRootPath() 51 std::string current_path(working_dir); in ProjectRootPath()
|
D | fileutils_unittest.cc | 167 std::string working_dir = webrtc::test::WorkingDir(); in TEST_F() local 168 ASSERT_GT(working_dir.length(), 0u); in TEST_F()
|
/external/lldb/test/api/multithreaded/ |
D | test_breakpoint_callback.cpp | 39 std::unique_ptr<char> working_dir(get_working_dir()); in test() local 40 SBProcess process = target.LaunchSimple(0, 0, working_dir.get()); in test()
|
D | listener_test.cpp | 39 std::unique_ptr<char> working_dir(get_working_dir()); in test() local 44 working_dir.get(), in test()
|
/external/lldb/source/Plugins/Platform/gdb-server/ |
D | PlatformRemoteGDBServer.cpp | 308 const char *working_dir = launch_info.GetWorkingDirectory(); in LaunchProcess() local 309 if (working_dir && working_dir[0]) in LaunchProcess() 311 m_gdb_client.SetWorkingDir (working_dir); in LaunchProcess()
|
/external/lldb/source/Plugins/Process/Linux/ |
D | ProcessMonitor.h | 57 const char *working_dir, 225 const char *working_dir);
|
/external/lldb/source/Plugins/Process/FreeBSD/ |
D | ProcessMonitor.h | 57 const char *working_dir, 233 const char *working_dir);
|
D | ProcessMonitor.cpp | 662 const char *working_dir) in LaunchArgs() argument 670 m_working_dir(working_dir) { } in LaunchArgs() 701 const char *working_dir, in ProcessMonitor() argument 715 stdin_path, stdout_path, stderr_path, working_dir)); in ProcessMonitor() 864 const char *working_dir = args->m_working_dir; in Launch() local 933 if (working_dir != NULL && working_dir[0]) in Launch() 934 if (0 != ::chdir(working_dir)) in Launch()
|
/external/lldb/source/Plugins/Process/POSIX/ |
D | ProcessPOSIX.cpp | 208 const char* working_dir = launch_info.GetWorkingDirectory(); in DoLaunch() local 209 if (working_dir) { in DoLaunch() 210 FileSpec WorkingDir(working_dir, true); in DoLaunch() 213 error.SetErrorStringWithFormat("No such file or directory: %s", working_dir); in DoLaunch() 243 working_dir, in DoLaunch()
|
/external/jsoncpp/ |
D | doxybuild.py | 49 def run_doxygen(doxygen_path, config_file, working_dir, is_silent): argument 54 os.chdir( working_dir )
|
/external/lldb/examples/python/ |
D | process_events.py | 110 if options.working_dir: 111 launch_info.SetWorkingDirectory(options.working_dir)
|
/external/lldb/tools/debugserver/source/ |
D | debugserver.cpp | 840 std::string working_dir; // The new working directory to use for the inferior in main() local 958 working_dir.assign(optarg); in main() 1108 if (!working_dir.empty()) in main() 1110 if (remote->Context().SetWorkingDirectory (working_dir.c_str()) == false) in main() 1112 RNBLogSTDERR ("error: working directory doesn't exist '%s'.\n", working_dir.c_str()); in main()
|