HomeSort by relevance Sort by last modified time
    Searched refs:VCS (Results 1 - 7 of 7) sorted by null

  /prebuilts/go/darwin-x86/src/cmd/go/
vcs_test.go 24 vcs: vcsHg,
31 vcs: vcsHg,
38 vcs: vcsGit,
46 vcs: vcsGit,
53 vcs: vcsGit,
90 vcs: vcsGit,
112 vcs: vcsGit,
119 vcs: vcsGit,
139 if got.vcs.name != want.vcs.name || got.repo != want.repo
    [all...]
discovery.go 67 VCS: f[1],
vcs.go 79 for _, vcs := range vcsList {
80 if vcs.cmd == cmd {
81 return vcs
492 vcs string // version control system to use (expand with match of re)
504 func vcsForDir(p *Package) (vcs *vcsCmd, root string, err error) {
514 for _, vcs := range vcsList {
515 if fi, err := os.Stat(filepath.Join(dir, "."+vcs.cmd)); err == nil && fi.IsDir() {
516 return vcs, dir[len(srcRoot)+1:], nil
535 vcs *vcsCmd
633 if srv.vcs != ""
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
vcs_test.go 24 vcs: vcsHg,
31 vcs: vcsHg,
38 vcs: vcsGit,
46 vcs: vcsGit,
53 vcs: vcsGit,
90 vcs: vcsGit,
112 vcs: vcsGit,
119 vcs: vcsGit,
139 if got.vcs.name != want.vcs.name || got.repo != want.repo
    [all...]
discovery.go 67 VCS: f[1],
vcs.go 79 for _, vcs := range vcsList {
80 if vcs.cmd == cmd {
81 return vcs
492 vcs string // version control system to use (expand with match of re)
504 func vcsForDir(p *Package) (vcs *vcsCmd, root string, err error) {
514 for _, vcs := range vcsList {
515 if fi, err := os.Stat(filepath.Join(dir, "."+vcs.cmd)); err == nil && fi.IsDir() {
516 return vcs, dir[len(srcRoot)+1:], nil
535 vcs *vcsCmd
633 if srv.vcs != ""
    [all...]
  /external/autotest/utils/
check_patch.py 7 * If there are new files created, remember user to add them to VCS.
35 class VCS(object):
60 Return a list of files unknown to the VCS.
67 Return a list of files that were modified, according to the VCS.
88 Applies a patch using the most appropriate method to the particular VCS.
102 Implementation of a subversion backend for use with the VCS abstraction
106 logging.debug("Subversion VCS backend initialized.")
318 self.vcs = VCS()
319 changed_files_before = self.vcs.get_modified_files(
    [all...]

Completed in 90 milliseconds