/bionic/tools/bionicbb/ |
presubmit.py | 67 def clean_project(dry_run): 75 if not dry_run: 86 def build_project(gerrit_info, dry_run, lunch_target=None): 123 if not dry_run: 137 def handle_change(gerrit_info, _, dry_run): 140 return build_project(gerrit_info, dry_run) 143 def drop_rejection(gerrit_info, dry_run): 150 if not dry_run: 160 def handle_comment(gerrit_info, body, dry_run): 162 drop_rejection(gerrit_info, dry_run) [all...] |
tasks.py | 37 def process_message(msg, dry_run): 58 return handlers[message_type](gerrit_info, body, dry_run) 72 dry_run = False 82 process_changes(gmail_service, msg_service, dry_run) 92 def process_changes(gmail_service, msg_service, dry_run): 105 if process_message(msg, dry_run) and not dry_run:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
dir_util.py | 19 def mkpath(name, mode=0777, verbose=1, dry_run=0): 70 if not dry_run: 82 def create_tree(base_dir, files, mode=0777, verbose=1, dry_run=0): 90 'dry_run' flags are as for 'mkpath()'. 101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run) 104 preserve_symlinks=0, update=0, verbose=1, dry_run=0): 113 return value is unaffected by 'update' or 'dry_run': it is simply 126 if not dry_run and not os.path.isdir(src): 132 if dry_run [all...] |
archive_util.py | 51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, 81 mkpath(os.path.dirname(archive_name), dry_run=dry_run) 100 if not dry_run: 116 spawn(cmd, dry_run=dry_run) 121 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0): 136 mkpath(os.path.dirname(zip_filename), dry_run=dry_run) 148 dry_run=dry_run [all...] |
spawn.py | 17 def spawn(cmd, search_path=1, verbose=0, dry_run=0): 27 must be the exact path to the executable. If 'dry_run' is true, 34 _spawn_posix(cmd, search_path, dry_run=dry_run) 36 _spawn_nt(cmd, search_path, dry_run=dry_run) 38 _spawn_os2(cmd, search_path, dry_run=dry_run) 59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0): 66 if not dry_run [all...] |
cmd.py | 96 # XXX A more explicit way to customize dry_run would be better. 98 if attr == 'dry_run': 349 util.execute(func, args, msg, dry_run=self.dry_run) 352 dir_util.mkpath(name, mode, dry_run=self.dry_run) 365 dry_run=self.dry_run) 377 dry_run=self.dry_run) [all...] |
file_util.py | 72 link=None, verbose=1, dry_run=0): 95 have been copied, if 'dry_run' true). 133 if dry_run: 162 def move_file (src, dst, verbose=1, dry_run=0): 178 if dry_run:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
dir_util.py | 19 def mkpath(name, mode=0777, verbose=1, dry_run=0): 70 if not dry_run: 82 def create_tree(base_dir, files, mode=0777, verbose=1, dry_run=0): 90 'dry_run' flags are as for 'mkpath()'. 101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run) 104 preserve_symlinks=0, update=0, verbose=1, dry_run=0): 113 return value is unaffected by 'update' or 'dry_run': it is simply 126 if not dry_run and not os.path.isdir(src): 132 if dry_run [all...] |
archive_util.py | 51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, 81 mkpath(os.path.dirname(archive_name), dry_run=dry_run) 100 if not dry_run: 116 spawn(cmd, dry_run=dry_run) 121 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0): 136 mkpath(os.path.dirname(zip_filename), dry_run=dry_run) 148 dry_run=dry_run [all...] |
spawn.py | 17 def spawn(cmd, search_path=1, verbose=0, dry_run=0): 27 must be the exact path to the executable. If 'dry_run' is true, 34 _spawn_posix(cmd, search_path, dry_run=dry_run) 36 _spawn_nt(cmd, search_path, dry_run=dry_run) 38 _spawn_os2(cmd, search_path, dry_run=dry_run) 59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0): 66 if not dry_run [all...] |
cmd.py | 96 # XXX A more explicit way to customize dry_run would be better. 98 if attr == 'dry_run': 349 util.execute(func, args, msg, dry_run=self.dry_run) 352 dir_util.mkpath(name, mode, dry_run=self.dry_run) 365 dry_run=self.dry_run) 377 dry_run=self.dry_run) [all...] |
file_util.py | 72 link=None, verbose=1, dry_run=0): 95 have been copied, if 'dry_run' true). 133 if dry_run: 162 def move_file (src, dst, verbose=1, dry_run=0): 178 if dry_run:
|
/external/jsoncpp/devtools/ |
licenseupdater.py | 15 def update_license( path, dry_run, show_diff ): 19 dry_run: if True, just print the path of the file that would be updated, 34 if not dry_run: 45 def update_license_in_source_directories( source_dirs, dry_run, show_diff ): 50 dry_run: if True, just print the path of the file that would be updated, 62 update_license( source, dry_run, show_diff ) 79 parser.add_option('-n', '--dry-run', dest="dry_run", action='store_true', default=False, 85 update_license_in_source_directories( args, options.dry_run, options.show_diff )
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
clean.py | 55 remove_tree(self.build_temp, dry_run=self.dry_run) 66 remove_tree(directory, dry_run=self.dry_run) 73 if not self.dry_run:
|
install_egg_info.py | 35 dir_util.remove_tree(target, dry_run=self.dry_run) 42 if not self.dry_run:
|
build_scripts.py | 78 if not self.dry_run: 95 if not self.dry_run: 119 if self.dry_run:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
clean.py | 55 remove_tree(self.build_temp, dry_run=self.dry_run) 66 remove_tree(directory, dry_run=self.dry_run) 73 if not self.dry_run:
|
install_egg_info.py | 35 dir_util.remove_tree(target, dry_run=self.dry_run) 42 if not self.dry_run:
|
build_scripts.py | 78 if not self.dry_run: 95 if not self.dry_run: 119 if self.dry_run:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
setuptools_build_ext.py | 69 dry_run=self.dry_run 128 compiler=self.compiler, dry_run=self.dry_run, force=self.force 213 if not self.dry_run: 240 force=True, dry_run=self.dry_run) 244 force=True, dry_run=self.dry_run) 245 if os.path.exists(stub_file) and not self.dry_run [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
setuptools_build_ext.py | 69 dry_run=self.dry_run 128 compiler=self.compiler, dry_run=self.dry_run, force=self.force 213 if not self.dry_run: 240 force=True, dry_run=self.dry_run) 244 force=True, dry_run=self.dry_run) 245 if os.path.exists(stub_file) and not self.dry_run [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_tokenize.h | 47 void vp9_tokenize_sb(struct VP9_COMP *cpi, TOKENEXTRA **t, int dry_run,
|
/frameworks/base/tests/backup/ |
test_backup_common.sh | 20 function a { $DRY_RUN adb $ADB_OPTS "$@"; }
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_tokenize.h | 47 void vp9_tokenize_sb(struct VP9_COMP *cpi, TOKENEXTRA **t, int dry_run,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
shutil.py | 337 def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, 367 if not dry_run: 389 if not dry_run: 398 def _call_external_zip(base_dir, zip_filename, verbose=False, dry_run=False): 407 spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run) 416 def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None): 431 if not dry_run: 442 _call_external_zip(base_dir, zip_filename, verbose, dry_run) 448 if not dry_run [all...] |