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

1 2 3 4

  /external/chromium_org/chrome/common/extensions/docs/server2/
github_file_system_provider.py 12 '''Provides GithubFileSystems bound to an owner/repo pair.
18 def Create(self, owner, repo):
23 |repo| is the repository name, e.g. 'devtools-docs'.
25 if owner == 'GoogleChrome' and repo == 'chrome-app-samples':
32 NewGithubFileSystem.Create(owner, repo, self._object_store_creator),
38 def Create(self, owner, repo):
new_github_file_system.py 99 def Create(owner, repo, object_store_creator):
101 specified by |owner| and |repo|.
106 repo,
111 def ForTest(repo, fake_fetcher, path=None, object_store_creator=None):
114 instead of github.com. It reads from files specified by |repo|.
119 repo,
123 def __init__(self, base_url, owner, repo, object_store_creator, Fetcher):
124 self._repo_key = posixpath.join(owner, repo)
125 self._repo_url = posixpath.join(base_url, owner, repo)
154 '''Returns a Future which resolves to the _GithubZipFile for this repo
    [all...]
content_providers.py 153 if 'owner' not in github_config or 'repo' not in github_config:
154 logging.error('%s: "github" must provide an "owner" and "repo"' % name)
157 github_config['owner'], github_config['repo'])
  /development/build/tools/
sdk_repo.mk 15 define sdk-repo-pkg-zip
16 $(dir $(2))/sdk-repo-$(1)-$(3)-$(FILE_NAME_TAG).zip
22 # this generates an sdk-repo-linux-tools that contains tools/*
31 define mk-sdk-repo-pkg-1
32 $(call sdk-repo-pkg-zip,$(2),$(3),$(4)): $(3)
35 rm -f ../$(notdir $(call sdk-repo-pkg-zip,$(2),$(3),$(4))) && \
36 zip -9rq ../$(notdir $(call sdk-repo-pkg-zip,$(2),$(3),$(4))) $(4)/*
37 $(call dist-for-goals, sdk_repo, $(call sdk-repo-pkg-zip,$(2),$(3),$(4)))
39 $(call sdk-repo-pkg-zip,$(2),$(3),$(4)):$(notdir $(call sdk-repo-pkg-zip,$(2),$(3),$(4))
    [all...]
  /development/tools/idegen/
index-gen.sh 23 # To use, run the following command from either your repo root or
34 if [ ! -e $root_dir/.repo ]; then
36 if [ ! -e $root_dir/.repo ]; then
37 echo "Repo root not found. Run this script from your repo root or the idegen directory."
intellij-gen.sh 17 # To use, run the following command from either your repo root or
46 if [ ! -e $root_dir/.repo ]; then
48 if [ ! -e $root_dir/.repo ]; then
49 echo "Repo root not found. Run this script from your repo root or the idegen directory."
  /external/llvm/utils/git/
find-rev 7 parser = OptionParser("usage: %prog [options] <repo> <revision>")
16 repo,rev = args
23 os.chdir(repo)
33 _,repo,_ = ln.strip().split(' ')
34 _,lrev = repo.rsplit('@',1)
  /external/chromium_org/third_party/re2/lib/codereview/
codereview.py 280 def Flush(self, ui, repo):
282 self.Upload(ui, repo, gofmt_just_warn=True, creating=True)
283 dir = CodeReviewDir(ui, repo)
296 def Delete(self, ui, repo):
297 dir = CodeReviewDir(ui, repo)
309 def Upload(self, ui, repo, send_mail=False, gofmt=True, gofmt_just_warn=False, creating=False, quiet=False):
313 CheckFormat(ui, repo, self.files, just_warn=gofmt_just_warn)
315 os.chdir(repo.root)
336 vcs = MercurialVCS(upload_options, ui, repo)
383 self.Flush(ui, repo)
    [all...]
  /external/regex-re2/lib/codereview/
codereview.py 280 def Flush(self, ui, repo):
282 self.Upload(ui, repo, gofmt_just_warn=True, creating=True)
283 dir = CodeReviewDir(ui, repo)
296 def Delete(self, ui, repo):
297 dir = CodeReviewDir(ui, repo)
309 def Upload(self, ui, repo, send_mail=False, gofmt=True, gofmt_just_warn=False, creating=False, quiet=False):
313 CheckFormat(ui, repo, self.files, just_warn=gofmt_just_warn)
315 os.chdir(repo.root)
336 vcs = MercurialVCS(upload_options, ui, repo)
383 self.Flush(ui, repo)
    [all...]
  /external/deqp/framework/delibs/scripts/
git-check.py 32 for repo in ALL_REPOS:
33 if repo.startswith(x):
34 return repo
40 # Find git base repo directory.
  /prebuilts/devtools/
update_jars.sh 48 local repo=$1
50 echo "# Build tools/$repo"
52 local SHA1=$( cd ../../tools/$repo ; git show-ref --head --hash HEAD )
54 tools/$repo: @ $SHA1"
56 ( $DRY cd ../../tools/$repo && $DRY ./gradlew clean publishLocal pushDistribution )
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
deps_updater.py 69 self.print_('## web-platform-tests repo exists, aborting')
73 self.print_('## csswg-test repo exists, aborting')
78 def update(self, repo, url):
79 self.print_('## cloning %s' % repo)
86 self.print_('## cleaning out tests from LayoutTests/imported/%s' % repo)
87 dest_repo = self.path_from_webkit_base('LayoutTests', 'imported', repo)
93 src_repo = self.path_from_webkit_base(repo)
98 self.run(['git', 'add', '--all', 'LayoutTests/imported/%s' % repo])
108 self.print_('## deleting %s repo' % repo)
    [all...]
  /external/chromium_org/third_party/skia/tools/
git-sync-deps 102 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
108 repo (string) the location of the repository, suitable
123 [git, 'clone', '--quiet', repo, directory])
126 # if the directory exists, but isn't a git repo, you will modify
131 # Check to see if this repo is disabled. Quick return.
177 repo, checkoutable = dependencies[directory].split('@', 1)
179 repo, checkoutable = dependencies[directory], 'origin/master'
184 (git, repo, checkoutable, relative_directory, verbose))
  /external/skia/tools/
git-sync-deps 84 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
90 repo (string) the location of the repository, suitable
105 [git, 'clone', '--quiet', repo, directory])
108 # if the directory exists, but isn't a git repo, you will modify
113 # Check to see if this repo is disabled. Quick return.
168 repo, checkoutable = dependencies[directory].split('@', 1)
170 repo, checkoutable = dependencies[directory], 'origin/master'
175 (git, repo, checkoutable, relative_directory, verbose))
  /frameworks/webview/chromium/tools/buildbot/
webview_buildbot_functions.sh 92 # subfolder of the upstream chromium_org checkout (that would make repo think
96 # The CTS bot runs using repo only.
97 export CHECKOUT="repo"
104 bb_run_step repo sync -s -j8 -df
109 repo sync frameworks/webview
  /device/common/
generate-blob-lists.sh 20 # It needs to be run from the root of a source tree that can repo sync,
45 repo sync -j32 -n
46 repo sync -j32 -n
47 repo sync -j2 -l
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/84/1/.cp/ant_tasks/
metadataRepository-ant.jar 
  /external/dhcpcd/mk/
dist.mk 1 # rules to make a distribution tarball from a svn repo
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/headless-build/
build.properties 190 mapsRepo=:pserver:anonymous@example.com/path/to/repo
  /sdk/eclipse/buildConfig/
build.properties 167 mapsRepo=:pserver:anonymous@example.com/path/to/repo
  /external/chromium_org/third_party/cython/src/
Makefile 2 REPO = git://github.com/cython/cython.git
12 git clone -n $(REPO) $(TMPDIR)
18 repo: .git
  /external/conscrypt/
update_prebuilts.sh 104 repo start "pb_$DATE" .
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/110/1/.cp/ant_tasks/
publisher-ant.jar 
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
PlanCreator.java 148 ITestResultRepo repo = new TestResultRepo(build.getResultsDir()); local
149 mResult = repo.getResult(mSessionId);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/46/1/.cp/lib/
repository-tools-ant.jar 

Completed in 8102 milliseconds

1 2 3 4