Searched refs:printable (Results 1 – 2 of 2) sorted by relevance
67 def printable(inp): function69 return '{' + ', '.join([printable(seq) for seq in inp]) + '}'71 return '<' + (', '.join([printable(ch) for ch in inp])) + '>'321 '%s is not supported in the emoji font.' % printable(sequence))328 'Emoji font should not support %s.' % printable(sequence))333 printable(first),334 printable(second)))349 printable(equivalent_seqs),
330 String printable = params.replaceAll("[^A-Za-z_0-9=,:.+-]", "?"); in sanitize()331 if (printable.length() > 100) { in sanitize()332 printable = printable.substring(0, 98) + "..."; in sanitize()334 return printable; in sanitize()