Searched refs:join_with_separators (Results 1 - 7 of 7) sorted by relevance
/external/webkit/Tools/Scripts/webkitpy/tool/ |
H A D | grammar_unittest.py | 31 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 D | grammar.py | 47 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 D | sheriff.py | 33 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 D | irc_command.py | 37 from webkitpy.tool.grammar import join_with_separators namespace 85 join_with_separators(["r" + str(revision) for revision in svn_revision_list]))
|
H A D | flakytestreporter.py | 37 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 D | preparechangelogforrevert.py | 33 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 D | upload.py | 46 from webkitpy.tool.grammar import pluralize, join_with_separators namespace 80 return join_with_separators(what_was_cleared)
|
Completed in 129 milliseconds