Searched refs:join_with_separators (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/tool/
H A Dgrammar_unittest.py31 from webkitpy.tool.grammar import join_with_separators namespace
36 self.assertEqual(join_with_separators(["one"]), "one")
37 self.assertEqual(join_with_separators(["one", "two"]), "one and two")
38 self.assertEqual(join_with_separators(["one", "two", "three"]), "one, two, and three")
H A Dgrammar.py47 def join_with_separators(list_of_strings, separator=', ', only_two_separator=" and ", last_separator=', and '): function
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dsheriff.py33 from webkitpy.tool.grammar import join_with_separators namespace
50 join_with_separators([builder.name() for builder in builders]))
85 join_with_separators([builder.name() for builder in builders]))
H A Dirc_command.py37 from webkitpy.tool.grammar import join_with_separators namespace
85 join_with_separators(["r" + str(revision) for revision in svn_revision_list]))
H A Dflakytestreporter.py37 from webkitpy.tool.grammar import plural, pluralize, join_with_separators namespace
91 'authors': join_with_separators(sorted(author_emails)),
123 authors_string = join_with_separators(sorted(author_emails))
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dpreparechangelogforrevert.py33 from webkitpy.tool.grammar import join_with_separators namespace
40 message = "Unreviewed, rolling out %s.\n" % join_with_separators(['r' + str(revision) for revision in revision_list])
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Dupload.py46 from webkitpy.tool.grammar import pluralize, join_with_separators namespace
80 return join_with_separators(what_was_cleared)

Completed in 129 milliseconds