Lines Matching defs:files

70     Truly copied files have non-nil .parentname and .renamed = False
148 files = set()
150 files.update(c.files())
155 # files if the localtip is a workingctx, so remove them in
162 for f in files.copy():
164 files.remove(f)
166 return self.ws.status(self.parenttip, self.localtip, files=files)
182 - Drop entries for modified files that haven't actually changed'''
224 # We walk the list of revisions backward such that only files
236 cfiles = set(ctx.files())
287 # ignore files that are parts of active revisions but
311 def files(self):
312 '''Return the list of pathnames of all files touched by this
315 Where files have been renamed, this will include both their
379 entry; renamed and copied files are compared by name, not history.
448 '''A (user-maintained) list of files changed in this workspace as
484 '''Return the status (in tuple form) of files from the
488 match = self._ws.matcher(files=self.list())
572 active.files(), filectxfn, user=user,
586 def files(self):
587 return self.__active.files()
626 if (wctx.files() or len(wctx.parents()) > 1 or
675 def status(self, base='.', head=None, files=None):
682 match = self.matcher(files=files)
718 '''Return a list of files modified in the workspace'''
721 return sorted(wctx.files() + wctx.deleted()) or None
837 if active.files():
954 on the status of files in the workspace's worklist.'''
963 def matcher(self, pats=None, opts=None, files=None):
967 If files is specified it is a list of pathnames relative to
974 of_files = files is not None
982 return cmdutil.matchfiles(self.repo, files)