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

  /external/guava/src/com/google/common/base/
CharMatcher.java 72 .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('\u2008', '\u200b')
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
RandomTest.java 123 boolean inRange = true;
129 inRange = false;
136 inRange);
153 boolean inRange = true;
159 inRange = false;
165 inRange);
237 boolean inRange = true;
243 inRange = false;
250 inRange);
  /libcore/luni/src/main/java/java/text/
AttributedString.java 154 private boolean inRange(Range range) {
162 private boolean inRange(List<Range> ranges) {
198 if (inRange(ranges)) {
211 return inRange(range) ? range.value : null;
262 return inRange(range) ? range.end : result;
310 return inRange(range) ? range.start : result;
  /external/chromium/third_party/icu/public/i18n/unicode/
plurfmt.h 526 UBool inRange(UChar ch, fmtToken& type);
  /external/icu4c/i18n/unicode/
plurfmt.h 529 UBool inRange(UChar ch, fmtToken& type);
  /external/chromium/third_party/icu/source/common/
unames.c     [all...]
  /external/icu4c/common/
unames.c     [all...]
  /external/chromium/third_party/icu/source/i18n/
plurfmt.cpp 152 if ( !inRange(ch, type) ) {
337 PluralFormat::inRange(UChar ch, fmtToken& type) {
plurrule_impl.h 145 UBool inRange(UChar ch, tokenType& type);
plurrule.cpp 976 if ( !inRange(ch, type) ) {
1059 RuleParser::inRange(UChar ch, tokenType& type) {
  /external/icu4c/i18n/
plurfmt.cpp 152 if ( !inRange(ch, type) ) {
337 PluralFormat::inRange(UChar ch, fmtToken& type) {
plurrule_impl.h 145 UBool inRange(UChar ch, tokenType& type);
plurrule.cpp 976 if ( !inRange(ch, type) ) {
1059 RuleParser::inRange(UChar ch, tokenType& type) {
  /system/core/libacc/
acc.cpp     [all...]
  /external/webkit/WebKit/mac/WebView/
WebHTMLView.mm     [all...]

Completed in 1516 milliseconds