HomeSort by relevance Sort by last modified time
    Searched refs:git (Results 101 - 125 of 172) sorted by null

1 2 3 45 6 7

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseDiff.pl 239 diffName => "SVN: SVN diff followed by Git diff", # Should not recognize Git start
247 diff --git a/Makefile b/Makefile
262 diff --git a/Makefile b/Makefile
969 # Git test cases
973 diffName => "Git: simple",
975 diff --git a/Makefile b/Makefile
999 diffName => "Git: Append new line to the end of an existing file",
1001 diff --git a/foo b/foo
1028 diffName => "Git: new file"
    [all...]
parseDiffHeader.pl 46 # (e.g. undef for "sourceRevision" for Git), and (3) key-values unique to
79 # Git test cases
82 diffName => "Git: Non-zero executable bit",
84 diff --git a/foo.exe b/foo.exe
parseDiffWithMockFiles.pl 58 diff --git a/Makefile b/Makefile
67 diff --git a/Makefile b/Makefile
291 # Git test cases
295 diffName => "Git: Patch with Unix line endings and IndexPath has Unix line endings",
309 diffName => "Git: Patch with Windows line endings and IndexPath has Unix line endings",
323 diffName => "Git: Patch with Windows line endings and IndexPath has Windows line endings",
337 diffName => "Git: Patch adds newline to EOF with Windows line endings and IndexPath has Windows line endings",
339 diff --git a/MakefileWithWindowsEOL b/MakefileWithWindowsEOL
376 diffName => "Git: Patch adds Mac newline to EOF and IndexPath has Mac line endings",
378 diff --git a/MakefileWithMacEOL b/MakefileWithMacEO
    [all...]
  /external/nanopb-c/tools/
make_windows_package.sh 5 # and requires the following tools: git, make, zip, unix2dos
10 VERSION=`git describe --always`-windows-x86
17 git archive HEAD | tar x -C $DEST
  /ndk/build/tools/
build-ccache.sh 36 DOWNLOAD_ROOT=http://android.git.kernel.org/pub
download-toolchain-sources.sh 18 # from the git server at android.googlesource.com and package them in a nice tarball
40 register_var_option "--git-date=<date>" GIT_DATE "Only sources that existed until specified <date>"
42 GITCMD=git
43 register_var_option "--git=<executable>" GITCMD "Use this version of the git tool"
46 register_var_option "--git-base=<git-uri>" OPTION_GIT_BASE "Use specific git repository base"
49 register_var_option "--git-reference=<path>" OPTION_GIT_REFERENCE "Use local git reference
    [all...]
dev-cleanup.sh 30 if [ ! -d $DIR/.git ] ; then
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/
build-lucid-multilib-toolchain.sh 119 GIT_CMD=git
278 --git=*) GIT_CMD=$optarg
280 --git-date=*) GIT_DATE=$optarg
282 --git-branch=*) GIT_BRANCH=$optarg
284 --git-base=*) GIT_BASE=$optarg
286 --git-reference=*) GIT_REFERENCE=$optarg
363 echo " --git=<cmd> Use this version of the git tool [$GIT_CMD]"
364 echo " --git-date=<date> Specify specific git date when download sources [none]
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/
build-lucid-multilib-toolchain.sh 119 GIT_CMD=git
278 --git=*) GIT_CMD=$optarg
280 --git-date=*) GIT_DATE=$optarg
282 --git-branch=*) GIT_BRANCH=$optarg
284 --git-base=*) GIT_BASE=$optarg
286 --git-reference=*) GIT_REFERENCE=$optarg
363 echo " --git=<cmd> Use this version of the git tool [$GIT_CMD]"
364 echo " --git-date=<date> Specify specific git date when download sources [none]
    [all...]
  /build/core/tasks/
collect_gpl_sources.mk 22 $(hide) tar cfz $@ --exclude ".git*" $(PRIVATE_PATHS)
  /device/generic/goldfish/gps/
Android.mk 17 # development.git/tools/emulator/. The following test is to ensure
  /external/chromium_org/tools/git/
move_source_file.py 16 Must run in a git checkout, as it relies on git grep for a fast way to
64 """Performs a git mv command to move a file from |from_path| to |to_path|.
66 if not os.system('git mv %s %s' % (from_path, to_path)) == 0:
67 raise Exception('Fatal: Failed to run git mv command.')
153 if not os.path.isdir('.git'):
154 print 'Fatal: You must run from the root of a git checkout.'
  /external/nanopb-c/extra/
nanopb.mk 25 # Source only or git checkout
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
detection.py 36 from .git import Git
74 if Git.in_working_directory(absolute_path, executive=self._executive):
75 return Git(cwd=absolute_path, filesystem=self._filesystem, executive=self._executive)
  /build/
envsetup.sh 1078 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cc|cpp|S|java|xml|sh|mk|aidl)' -print0 | xargs -0 grep --color -n "$@"
1085 find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cc\|cpp\|S\|java\|xml\|sh\|mk\|aidl\)' -print0 | xargs -0 grep --color -n "$@"
1097 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" -print0 | xargs -0 grep --color -n "$@"
1102 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" -print0 | xargs -0 grep --color -n "$@"
1107 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 grep --color -n "$@"
1112 for dir in `find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -name res -type d`; do find $dir -type f -name '*\.xml' -print0 | xargs -0 grep --color -n "$@"; done;
1117 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1122 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d -print0 | xargs -0 grep --color -n -r --exclude-dir=\.git "$@"
1129 find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
svn-log.js 65 var regexp = /git-svn-id: svn:\/\/svn.chromium.org\/blink\/trunk@(\d+)/;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
host.py 103 self.executive.run_command(['git', 'help'])
106 self.executive.run_command(['git.bat', 'help'])
108 # of development tools, including Python and git. Instead of using a
109 # real git executable, depot_tools indirects via a batch file, called
110 # git.bat. This batch file allows depot_tools to auto-update the real
111 # git executable, which is contained in a subdirectory.
114 # the difference between a real git executable and batch file when we
116 # We hack the git.bat name into the SVN class.
117 _log.debug('Engaging git.bat Windows hack.')
118 from webkitpy.common.checkout.scm.git import Gi
    [all...]
  /prebuilts/qemu-kernel/arm/
rebuild.sh 293 git ls-files -o | xargs rm -f
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
commit-log-editor 144 # $_ contains the current git log message
166 # Don't change anything if there's already a log message (as can happen with git-commit --amend).
172 # populate git commit message with WebKit-format ChangeLog entries unless explicitly disabled
174 chomp(my $webkitGenerateCommitMessage = `git config --bool branch.$branch.webkitGenerateCommitMessage`);
176 chomp($webkitGenerateCommitMessage = `git config --bool core.webkitGenerateCommitMessage`);
179 open CHANGELOG_ENTRIES, "-|", "$FindBin::Bin/prepare-ChangeLog --git-index --no-write" or die "prepare-ChangeLog failed: $!.\n";
  /external/chromium_org/third_party/angle/src/
commit_id.target.darwin-arm.mk 24 $(gyp_shared_intermediate_dir)/angle/id/commit.h: $(gyp_shared_intermediate_dir)/angle/commit_id.py $(LOCAL_PATH)/third_party/angle/.git/index $(GYP_TARGET_DEPENDENCIES)
commit_id.target.darwin-arm64.mk 24 $(gyp_shared_intermediate_dir)/angle/id/commit.h: $(gyp_shared_intermediate_dir)/angle/commit_id.py $(LOCAL_PATH)/third_party/angle/.git/index $(GYP_TARGET_DEPENDENCIES)
commit_id.target.darwin-mips.mk 24 $(gyp_shared_intermediate_dir)/angle/id/commit.h: $(gyp_shared_intermediate_dir)/angle/commit_id.py $(LOCAL_PATH)/third_party/angle/.git/index $(GYP_TARGET_DEPENDENCIES)
commit_id.target.darwin-x86.mk 24 $(gyp_shared_intermediate_dir)/angle/id/commit.h: $(gyp_shared_intermediate_dir)/angle/commit_id.py $(LOCAL_PATH)/third_party/angle/.git/index $(GYP_TARGET_DEPENDENCIES)
commit_id.target.darwin-x86_64.mk 24 $(gyp_shared_intermediate_dir)/angle/id/commit.h: $(gyp_shared_intermediate_dir)/angle/commit_id.py $(LOCAL_PATH)/third_party/angle/.git/index $(GYP_TARGET_DEPENDENCIES)
commit_id.target.linux-arm.mk 24 $(gyp_shared_intermediate_dir)/angle/id/commit.h: $(gyp_shared_intermediate_dir)/angle/commit_id.py $(LOCAL_PATH)/third_party/angle/.git/index $(GYP_TARGET_DEPENDENCIES)

Completed in 1162 milliseconds

1 2 3 45 6 7