HomeSort by relevance Sort by last modified time
    Searched refs:HEAD (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /external/chromium_org/tools/git/
post-merge 9 if git diff-tree ORIG_HEAD HEAD | grep -qs $'\tDEPS$'; then
post-checkout 9 old_ref=$1 # Previous HEAD.
10 new_ref=$2 # Current HEAD.
14 if ! git diff-index --quiet HEAD $(git rev-parse --show-cdup)DEPS; then
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/componentScripts/
build.properties 24 mapVersionTag=HEAD
31 # For example, when doing a nightly build out of HEAD,
32 # fetchTag=HEAD
  /external/llvm/utils/git-svn/
git-svnup 10 OLD_BRANCH=$(git rev-parse --abbrev-ref HEAD)
git-svnrevert 29 echo "Error! Failed to revert commit $COMMIT. Resetting to head."
30 git reset --hard HEAD
45 echo "Error! Failed to commit reverting commit for commit $COMMIT. Reverting to head."
46 git reset --hard HEAD
  /external/chromium_org/third_party/mesa/src/bin/
get-pick-list.sh 6 git log --reverse --grep="cherry picked from commit" origin/master..HEAD |\
11 git log --reverse --pretty=%H -i --grep='^[[:space:]]*NOTE: This is a candidate' HEAD..origin/master |\
  /external/mesa3d/bin/
get-pick-list.sh 6 git log --reverse --grep="cherry picked from commit" origin/master..HEAD |\
11 git log --reverse --pretty=%H -i --grep='^[[:space:]]*NOTE: This is a candidate' HEAD..origin/master |\
  /external/bison/build-aux/
git-version-gen 154 && v=`git describe --abbrev=4 --match="$prefix*" HEAD 2>/dev/null \
155 || git describe --abbrev=4 HEAD 2>/dev/null` \
174 commit_list=`git rev-list "$vtag"..HEAD 2>/dev/null` \
200 dirty=`exec 2>/dev/null;git diff-index --name-only HEAD` || dirty=
  /external/strace/
git-version-gen 157 && v=`git describe --abbrev=4 --match="$prefix*" HEAD 2>/dev/null \
158 || git describe --abbrev=4 HEAD 2>/dev/null` \
177 commit_list=`git rev-list "$vtag"..HEAD 2>/dev/null` \
205 dirty=`exec 2>/dev/null;git diff-index --name-only HEAD` || dirty=
  /external/chromium_org/build/git-hooks/
pre-commit 12 merge_base=$(git merge-base HEAD MERGE_HEAD)
13 if test -z "$(submodule_diff $merge_base HEAD)"; then
17 # Most up-to-date submodules are in HEAD.
18 head_ref=HEAD
21 # No merge in progress. Submodules must match HEAD.
22 head_ref=HEAD
38 git diff-index --cached --ignore-submodules=dirty HEAD
  /external/chromium_org/third_party/skia/tools/
git_utils.py 28 git_format_patch('HEAD~')
77 return bool(self._vsp.call([self._git, 'diff', '--quiet', 'HEAD']))
127 full_branch = vsp.strip_output([git, 'symbolic-ref', 'HEAD'])
130 # "fatal: ref HEAD is not a symbolic ref"
131 return vsp.strip_output([git, 'rev-parse', 'HEAD'])
  /external/skia/tools/
git_utils.py 28 git_format_patch('HEAD~')
77 return bool(self._vsp.call([self._git, 'diff', '--quiet', 'HEAD']))
127 full_branch = vsp.strip_output([git, 'symbolic-ref', 'HEAD'])
130 # "fatal: ref HEAD is not a symbolic ref"
131 return vsp.strip_output([git, 'rev-parse', 'HEAD'])
  /external/chromium_org/build/
tree_truth.sh 18 # Return the sha1 of HEAD, or ""
21 ( cd $1 && git log HEAD -n1 --format='%H' | cat )
24 # For the given repo, set tag to HEAD.
46 # List the commits between the given tag and HEAD.
48 # If the tag is at HEAD, list nothing.
67 ( cd $1 && git log -n 500 $2..HEAD --stat | cat)
  /external/fio/
FIO-VERSION-GEN 15 VN=`git describe --match "fio-[0-9]*" --abbrev=4 HEAD 2>/dev/null` &&
20 test -z "`git diff-index --name-only HEAD --`" ||
  /external/chromium_org/third_party/libvpx/source/libvpx/tools/
ftfy.sh 9 This script applies a whitespace transformation to the commit at HEAD. If no
15 --amend Squashes the changes into the commit at HEAD
50 log "HEAD doesn't have a Change-Id, unable to generate a new commit"
59 git commit -a -C HEAD > /dev/null
111 if ! git diff --quiet HEAD; then
123 for f in $(git diff HEAD^ --name-only -M90 --diff-filter=AM); do
  /external/libvpx/libvpx/tools/
ftfy.sh 9 This script applies a whitespace transformation to the commit at HEAD. If no
15 --amend Squashes the changes into the commit at HEAD
50 log "HEAD doesn't have a Change-Id, unable to generate a new commit"
59 git commit -a -C HEAD > /dev/null
111 if ! git diff --quiet HEAD; then
123 for f in $(git diff HEAD^ --name-only -M90 --diff-filter=AM); do
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
ftfy.sh 9 This script applies a whitespace transformation to the commit at HEAD. If no
15 --amend Squashes the changes into the commit at HEAD
50 log "HEAD doesn't have a Change-Id, unable to generate a new commit"
59 git commit -a -C HEAD > /dev/null
111 if ! git diff --quiet HEAD; then
123 for f in $(git diff HEAD^ --name-only -M90 --diff-filter=AM); do
  /external/zlib/src/examples/
gzlog.c 316 #define HEAD sizeof(log_gzhead) /* should be 16 */
318 /* initial gzip extra field content (52 == HEAD + EXTRA + 1) */
413 unsigned char buf[HEAD + EXTRA];
416 read(log->fd, buf, HEAD + EXTRA) != HEAD + EXTRA ||
417 memcmp(buf, log_gzhead, HEAD)) {
420 log->first = PULL8(buf + HEAD);
421 log->last = PULL8(buf + HEAD + 8);
422 log->ccrc = PULL4(buf + HEAD + 16);
423 log->clen = PULL4(buf + HEAD + 20)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ElemDesc.java 95 /** Bit position if this element type is a head element (i.e. H1, H2, etc.) */
96 static final int HEAD = (1 << 18);
107 /** Bit position if this element type is a header element (i.e. HEAD). */
  /external/chromium_org/third_party/zlib/
inflate.h 21 HEAD, /* i: waiting for magic header */
61 HEAD -> (gzip) or (zlib) or (raw)
90 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
inflate.h 21 HEAD, /* i: waiting for magic header */
61 HEAD -> (gzip) or (zlib) or (raw)
90 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
  /external/qemu/distrib/zlib-1.2.8/
inflate.h 21 HEAD, /* i: waiting for magic header */
61 HEAD -> (gzip) or (zlib) or (raw)
90 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
  /external/zlib/src/
inflate.h 21 HEAD, /* i: waiting for magic header */
61 HEAD -> (gzip) or (zlib) or (raw)
90 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
  /external/srec/tools/test_swiarb/
test_swiarb.c 45 #define printf_vector(HEAD, FMT, PTR, NN) { unsigned int iI; printf(HEAD); for(iI=0;iI<(NN);iI++) printf(FMT, PTR[iI]); printf("\n"); }
  /external/chromium_org/third_party/dom_distiller_js/
update_domdistiller_js.sh 28 new_gitsha=$(git rev-parse --short=10 HEAD)
43 | head --bytes=-1 \

Completed in 1321 milliseconds

1 2 3 4 5