Home
last modified time | relevance | path

Searched refs:join_with_separators (Results 1 – 8 of 8) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/tool/
Dgrammar_unittest.py31 from webkitpy.tool.grammar import join_with_separators
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")
Dgrammar.py47 def join_with_separators(list_of_strings, separator=', ', only_two_separator=" and ", last_separato… function
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
Dsheriff.py33 from webkitpy.tool.grammar import join_with_separators
50 join_with_separators([builder.name() for builder in builders]))
85 join_with_separators([builder.name() for builder in builders]))
Dflakytestreporter.py37 from webkitpy.tool.grammar import plural, pluralize, join_with_separators
91 'authors': join_with_separators(sorted(author_emails)),
123 authors_string = join_with_separators(sorted(author_emails))
Dirc_command.py37 from webkitpy.tool.grammar import join_with_separators
85join_with_separators(["r" + str(revision) for revision in svn_revision_list]))
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
Dpreparechangelogforrevert.py33 from webkitpy.tool.grammar import join_with_separators
40 …message = "Unreviewed, rolling out %s.\n" % join_with_separators(['r' + str(revision) for revision…
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
Dupload.py46 from webkitpy.tool.grammar import pluralize, join_with_separators
80 return join_with_separators(what_was_cleared)
/external/webkit/Tools/
DChangeLog-2010-05-249332 - Fix join_with_separators to not add Adam's "oxford comma" for two item lists.
9334 - Test join_with_separators
15720 * Scripts/webkitpy/grammar.py: Add join_with_separators