Lines Matching refs:args
82 def new_f(*args, **kwargs):
83 result = f(*args, **kwargs)
168 args = ["log"]
170 args.append("-%d" % n)
172 args.append("--format=%s" % format)
174 args.append("--grep=\"%s\"" % grep.replace("\"", "\\\""))
176 args.append("--reverse")
178 args.append(git_hash)
180 args.append("%s^" % parent_hash)
181 args.append(branch)
183 args.extend(["--", path])
184 return self.Git(MakeArgs(args), **kwargs)
202 args = ["apply --index --reject"]
204 args.append("--reverse")
205 args.append(Quoted(patch_file))
206 self.Git(MakeArgs(args), **kwargs)
212 args = ["cl upload --send-mail"]
214 args += ["-r", Quoted(reviewer)]
216 args += ["--tbrs", Quoted(tbr_reviewer)]
218 args.append("-f")
220 args.append("--use-commit-queue")
222 args.append("--cq-dry-run")
224 args.append("--set-bot-commit")
226 args.append("--bypass-hooks")
228 args.append("--no-autocc")
230 args += ["--cc", Quoted(cc)]
232 args += ["--message-file", Quoted(message_file)]
235 self.Git(MakeArgs(args), pipe=False, **kwargs)
239 args = ["commit"]
241 args += ["-aF", Quoted(file_name)]
243 args += ["-am", Quoted(message)]
245 args += ["--author", "\"%s <%s>\"" % (author, author)]
246 self.Git(MakeArgs(args), **kwargs)