HomeSort by relevance Sort by last modified time
    Searched full:working_dir (Results 1 - 25 of 57) sorted by null

1 2 3

  /development/tools/repo_diff/
git_commits_not_upstreamed.py 39 def __init__(self, working_dir, upstream, downstream):
40 self.working_dir = working_dir
47 if os.path.isfile(os.path.join(self.working_dir, filename)):
48 blame_output = git(['-C', self.working_dir, 'blame', '-l',
61 def find_insertion_commits(upstream, downstream, working_dir):
67 working_dir: Run as if git was started in this directory.
75 diff_files = git(['-C', working_dir, 'diff',
82 finder = CommitFinder(working_dir, upstream, downstream)
91 def find(upstream, downstream, working_dir)
    [all...]
  /external/mockito/
update_source.sh 36 working_dir="$(mktemp -d)"
37 trap "echo \"Removing temporary directory\"; rm -rf $working_dir" EXIT
39 echo "Fetching Mockito source into $working_dir"
40 git clone $SOURCE $working_dir/source
41 (cd $working_dir/source; git checkout $VERSION)
47 cp -R $working_dir/source/$include $include
  /external/objenesis/
update_source.sh 38 working_dir="$(mktemp -d)"
39 #trap "echo \"Removing temporary directory\"; rm -rf $working_dir" EXIT
41 echo "Fetching Objenesis source into $working_dir"
42 git clone $SOURCE $working_dir/source
43 (cd $working_dir/source; git checkout $VERSION)
48 cp -R $working_dir/source/$include .
  /external/chromium-trace/catapult/devil/devil/utils/
zip_utils_test.py 16 with tempfile_ext.NamedTemporaryDirectory() as working_dir:
17 file1 = os.path.join(working_dir, 'file1.txt')
18 file2 = os.path.join(working_dir, 'file2.txt')
30 zip_path = os.path.join(working_dir, 'out.zip')
  /external/dexmaker/
update_source.sh 38 working_dir="$(mktemp -d)"
39 trap "echo \"Removing temporary directory\"; rm -rf $working_dir" EXIT
41 echo "Fetching Dexmaker source into $working_dir"
42 git clone $SOURCE $working_dir/source
44 cd $working_dir/source
53 cp -R $working_dir/source/$include $include
  /external/pdfium/testing/tools/
pngdiffer.py 17 def GetActualFiles(self, input_filename, source_dir, working_dir):
19 path_templates = PathTemplates(input_filename, source_dir, working_dir)
35 def HasDifferences(self, input_filename, source_dir, working_dir):
36 path_templates = PathTemplates(input_filename, source_dir, working_dir)
69 def Regenerate(self, input_filename, source_dir, working_dir, platform_only):
70 path_templates = PathTemplates(input_filename, source_dir, working_dir)
106 def __init__(self, input_filename, source_dir, working_dir):
108 self.actual_path_template = os.path.join(working_dir,
test_runner.py 53 pdf_path = os.path.join(self.working_dir, input_root + '.pdf')
57 self.working_dir)
83 self.working_dir):
89 self.working_dir, platform_only)
116 [sys.executable, self.fixup_path, '--output-dir=' + self.working_dir,
120 txt_path = os.path.join(self.working_dir, input_root + '.txt')
225 self.working_dir = finder.WorkingDir(os.path.join('testing', self.test_dir))
226 if not os.path.exists(self.working_dir):
227 os.makedirs(self.working_dir)
  /external/llvm/utils/bugpoint/
RemoteRunSafely.sh 53 WORKING_DIR=
70 WORKING_DIR=$(dirname $1)
77 #DEBUG: echo 'WORKING_DIR='$WORKING_DIR
86 local_program=$WORKING_DIR"/"$PROGRAM
  /external/swiftshader/third_party/LLVM/utils/bugpoint/
RemoteRunSafely.sh 53 WORKING_DIR=
70 WORKING_DIR=$(dirname $1)
77 #DEBUG: echo 'WORKING_DIR='$WORKING_DIR
86 local_program=$WORKING_DIR"/"$PROGRAM
  /external/ltp/doc/
mini-howto-building-ltp-from-git.txt 22 WORKING_DIR="$HOME/src/ltp"
43 mkdir -p $WORKING_DIR
44 cd $WORKING_DIR
  /external/tinyxml2/tinyxml2/tinyxml2-cbp/
tinyxml2-cbp.cbp 12 <Option working_dir="" />
25 <Option working_dir="../../" />
  /external/autotest/site_utils/chromeos_proxy/
swarming_bots.py 11 $ swarming_bots.py launch --working_dir WORKING_DIR --id_range '1-200'
14 $ swarming_bots.py kill --working_dir WORKING_DIR --id_range '1-200'
17 $ swarming_bots.py check --working_dir WORKING_DIR --id_range '1-200'
20 WORKING_DIR
253 CHECK_BOTS_PATTERN = '{executable} {working_dir}.*{bot_cmd_pattern}'
256 def __init__(self, bot_ids, working_dir, swarming_proxy):
260 @param working_dir: Working directory of the bots
    [all...]
  /external/autotest/client/cros/ui/
ui_test_base.py 58 WORKING_DIR = '/tmp/test'
85 golden_image_local_dir = os.path.join(ui_TestBase.WORKING_DIR,
101 test_image_filepath = os.path.join(ui_TestBase.WORKING_DIR, filename)
147 file_utils.rm_dir_if_exists(ui_TestBase.WORKING_DIR)
  /system/timezone/distro/tools/
create-distro.py 57 working_dir = os.getcwd()
60 properties_file = '%s/distro.properties' % working_dir
  /tools/test/connectivity/acts/framework/acts/controllers/ap_lib/
dhcp_server.py 40 def __init__(self, runner, interface, working_dir='/tmp'):
46 working_dir: The directory to work out of.
49 self._working_dir = working_dir
50 self._shell = shell.ShellCommand(runner, working_dir)
hostapd.py 38 def __init__(self, runner, interface, working_dir='/tmp'):
44 working_dir: The directory to work out of.
48 self._working_dir = working_dir
50 self._shell = shell.ShellCommand(runner, working_dir)
  /external/v8/tools/release/
search_related_commits.py 132 def git_execute(working_dir, args, verbose=False):
133 command = ["git", "-C", working_dir] + args
135 print "Git working dir: " + working_dir
  /external/google-breakpad/src/testing/gtest/test/
gtest_test_utils.py 193 def __init__(self, command, working_dir=None, capture_stderr=True, env=None):
200 working_dir: The directory to change into.
232 cwd=working_dir, universal_newlines=True, env=env)
257 if working_dir is not None:
258 os.chdir(working_dir)
  /external/googletest/googletest/test/
gtest_test_utils.py 208 def __init__(self, command, working_dir=None, capture_stderr=True, env=None):
215 working_dir: The directory to change into.
247 cwd=working_dir, universal_newlines=True, env=env)
272 if working_dir is not None:
273 os.chdir(working_dir)
  /external/protobuf/gtest/test/
gtest_test_utils.py 197 def __init__(self, command, working_dir=None, capture_stderr=True, env=None):
204 working_dir: The directory to change into.
236 cwd=working_dir, universal_newlines=True, env=env)
261 if working_dir is not None:
262 os.chdir(working_dir)
  /external/v8/testing/gtest/test/
gtest_test_utils.py 208 def __init__(self, command, working_dir=None, capture_stderr=True, env=None):
215 working_dir: The directory to change into.
247 cwd=working_dir, universal_newlines=True, env=env)
272 if working_dir is not None:
273 os.chdir(working_dir)
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_test_utils.py 208 def __init__(self, command, working_dir=None, capture_stderr=True, env=None):
215 working_dir: The directory to change into.
247 cwd=working_dir, universal_newlines=True, env=env)
272 if working_dir is not None:
273 os.chdir(working_dir)
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest_test_utils.py 193 def __init__(self, command, working_dir=None, capture_stderr=True, env=None):
200 working_dir: The directory to change into.
232 cwd=working_dir, universal_newlines=True, env=env)
257 if working_dir is not None:
258 os.chdir(working_dir)
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/test/
gtest_test_utils.py 208 def __init__(self, command, working_dir=None, capture_stderr=True, env=None):
215 working_dir: The directory to change into.
247 cwd=working_dir, universal_newlines=True, env=env)
272 if working_dir is not None:
273 os.chdir(working_dir)
  /external/libyuv/files/tools_libyuv/autoroller/
roll_deps.py 98 def _RunCommand(command, working_dir=None, ignore_exit_code=False,
107 working_dir = working_dir or CHECKOUT_SRC_DIR
108 logging.debug('CMD: %s CWD: %s', ' '.join(command), working_dir)
116 cwd=working_dir, universal_newlines=True)
345 working_dir=CHECKOUT_SRC_DIR, ignore_exit_code=True)

Completed in 2958 milliseconds

1 2 3