HomeSort by relevance Sort by last modified time
    Searched refs:join_with_separators (Results 1 - 7 of 7) sorted by null

  /external/webkit/Tools/Scripts/webkitpy/tool/
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")
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/
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]))
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]))
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/
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/
upload.py 46 from webkitpy.tool.grammar import pluralize, join_with_separators namespace
80 return join_with_separators(what_was_cleared)

Completed in 51 milliseconds