Home
last modified time | relevance | path

Searched refs:comma (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/text/src/android/text/util/cts/
DRfc822TokenizerTest.java118 String comma = ","; in testTerminateToken() local
122 assertEquals(text + comma + space, rfc822Tokenizer.terminateToken(text)); in testTerminateToken()
126 assertEquals(text + comma + space, rfc822Tokenizer.terminateToken(null)); in testTerminateToken()
/cts/apps/CameraITS/build/scripts/
Dgpylint_rcfile8 # can either give multiple identifiers separated by comma (,) or put this
24 # either give multiple identifier separated by comma (,) or put this option
114 # List of builtins function names that should not be used, separated by a comma
117 # Bad variable names which should always be refused, separated by a comma
138 # Good variable names which should always be accepted, separated by a comma
153 # separated by a comma
160 # Required attributes for module, separated by a comma
172 # List of interface methods to ignore, separated by a comma. This is used for
298 # Deprecated modules which should not be used, separated by a comma
330 # List of plugins (as comma separated values of python modules names) to load,
[all …]
/cts/tests/tests/text/src/android/text/cts/
DTextUtilsTest.java277 final String comma = ", "; in testConcat() local
278 Spanned strResult = (Spanned) TextUtils.concat(string1, comma, string2); in testConcat()
279 assertEquals(string1.toString() + comma + string2.toString(), strResult.toString()); in testConcat()
288 assertEquals(string1.length() + comma.length(), strResult.getSpanStart(bgColorSpan)); in testConcat()