Home
last modified time | relevance | path

Searched refs:printable (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/tools/fonts/
Dfontchain_linter.py67 def printable(inp): function
69 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),
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DScoringParams.java330 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()