Searched refs:join_with_separators (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Tools/Scripts/webkitpy/tool/ |
D | grammar_unittest.py | 31 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")
|
D | grammar.py | 47 def join_with_separators(list_of_strings, separator=', ', only_two_separator=" and ", last_separato… function
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
D | sheriff.py | 33 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]))
|
D | flakytestreporter.py | 37 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))
|
D | irc_command.py | 37 from webkitpy.tool.grammar import join_with_separators 85 … join_with_separators(["r" + str(revision) for revision in svn_revision_list]))
|
/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
D | preparechangelogforrevert.py | 33 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/ |
D | upload.py | 46 from webkitpy.tool.grammar import pluralize, join_with_separators 80 return join_with_separators(what_was_cleared)
|
/external/webkit/Tools/ |
D | ChangeLog-2010-05-24 | 9332 - 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
|