Searched defs:inRange (Results 1 - 5 of 5) sorted by relevance

/external/icu4c/i18n/
H A Dplurfmt.cpp152 if ( !inRange(ch, type) ) {
337 PluralFormat::inRange(UChar ch, fmtToken& type) { function in class:PluralFormat
H A Dplurrule.cpp976 if ( !inRange(ch, type) ) {
1059 RuleParser::inRange(UChar ch, tokenType& type) { function in class:RuleParser
/external/jdiff/src/jdiff/
H A DRootDocToXML.java775 inRange(val, 0x2028, 0x2029) ||
776 inRange(val, 0x202A, 0x202E) ||
777 inRange(val, 0x206A, 0x206F) ||
778 inRange(val, 0xFFF9, 0xFFFC) ||
779 inRange(val, 0xE0000, 0xE007F)) {
794 public boolean inRange(int val, int min, int max) { method in class:RootDocToXML
/external/guava/src/com/google/common/base/
H A DCharMatcher.java72 .or(inRange('\u2000', '\u200a'));
84 .or(inRange('\u2000', '\u2006'))
85 .or(inRange('\u2008', '\u200a'));
91 public static final CharMatcher ASCII = inRange('\0', '\u007f');
100 CharMatcher digit = inRange('0', '9');
106 digit = digit.or(inRange(base, (char) (base + 9)));
118 = inRange('\u0009', (char) 13) // \\u000d doesn't work as a char literal
119 .or(inRange('\u001c', '\u0020'))
122 .or(inRange('\u2000', '\u2006'))
123 .or(inRange('\u200
476 public static CharMatcher inRange( method in class:CharMatcher
[all...]
/external/icu4c/common/
H A Dunames.c1861 const AlgorithmicRange *inRange; local
1910 inRange=(const AlgorithmicRange *)(inBytes+offset);
1911 offset+=ds->readUInt16(inRange->size);
2065 inRange=(const AlgorithmicRange *)(inBytes+offset);
2067 offset+=ds->readUInt16(inRange->size);
2069 ds->swapArray32(ds, inRange, 8, outRange, pErrorCode);
2070 ds->swapArray16(ds, &inRange->size, 2, &outRange->size, pErrorCode);
2071 switch(inRange->type) {
2074 ds->swapInvChars(ds, inRange+1, (int32_t)uprv_strlen((const char *)(inRange
[all...]

Completed in 149 milliseconds