Home | History | Annotate | Download | only in scripts

Lines Matching refs:split

203       response_dict = dict(x.split("=")
204 for x in response_body.split("\n") if x)
209 response_dict = dict(x.split("=", 1) for x in body.split("\n") if x)
653 unused, filename = line.split(':', 1)
755 words = line.split()
832 for name in keyword_str.split(" ")
839 for line in status.split("\n"):
874 dirname, relfilename = os.path.split(filename)
1056 self.base_rev = RunShell(["hg", "parent", "-q"]).split(':')[1].strip()
1097 st, fn = line.split(" ", 1)
1123 status, _ = out[0].split(' ', 1)
1157 unused, new_filename = line.split(':', 1)
1160 unused, temp_filename = line.split(':', 1)
1306 for reviewer in options.reviewers.split(','):
1307 if "@" in reviewer and not reviewer.split("@")[1].count(".") == 1:
1311 for cc in options.cc.split(','):
1312 if "@" in cc and not cc.split("@")[1].count(".") == 1:
1354 patches = [x.split(" ", 1) for x in lines[2:]]