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

1 2

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
RandomTest.java 87 boolean inRange = true;
93 inRange = false;
100 inRange);
111 boolean inRange = true;
117 inRange = false;
123 inRange);
177 boolean inRange = true;
183 inRange = false;
190 inRange);
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
CharMatcher.java 70 .or(inRange('\u2000', '\u200a'));
82 .or(inRange('\u2000', '\u2006'))
83 .or(inRange('\u2008', '\u200a'));
89 public static final CharMatcher ASCII = inRange('\0', '\u007f');
98 CharMatcher digit = inRange('0', '9');
104 digit = digit.or(inRange(base, (char) (base + 9)));
116 = inRange('\u0009', (char) 13) // \\u000d doesn't work as a char literal
117 .or(inRange('\u001c', '\u0020'))
120 .or(inRange('\u2000', '\u2006'))
121 .or(inRange('\u2008', '\u200b')
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharMatcher.java 70 .or(inRange('\u2000', '\u200a'));
82 .or(inRange('\u2000', '\u2006'))
83 .or(inRange('\u2008', '\u200a'));
89 public static final CharMatcher ASCII = inRange('\0', '\u007f');
98 CharMatcher digit = inRange('0', '9');
104 digit = digit.or(inRange(base, (char) (base + 9)));
116 = inRange('\u0009', (char) 13) // \\u000d doesn't work as a char literal
117 .or(inRange('\u001c', '\u0020'))
120 .or(inRange('\u2000', '\u2006'))
121 .or(inRange('\u2008', '\u200b')
    [all...]
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 77 .or(inRange('\u2000', '\u200a'))
89 .or(inRange('\u2000', '\u2006'))
90 .or(inRange('\u2008', '\u200a'))
96 public static final CharMatcher ASCII = inRange('\0', '\u007f');
105 CharMatcher digit = inRange('0', '9');
111 digit = digit.or(inRange(base, (char) (base + 9)));
118 * definition}. If you only care to match ASCII digits, you can use {@code inRange('0', '9')}.
129 * inRange('a', 'z').or(inRange('A', 'Z'))}.
172 inRange('\u0000', '\u001f').or(inRange('\u007f', '\u009f'))
    [all...]
CaseFormat.java 42 LOWER_CAMEL(CharMatcher.inRange('A', 'Z'), ""),
47 UPPER_CAMEL(CharMatcher.inRange('A', 'Z'), ""),
  /libcore/luni/src/test/java/tests/api/java/util/
RandomTest.java 87 boolean inRange = true;
93 inRange = false;
100 inRange);
111 boolean inRange = true;
117 inRange = false;
123 inRange);
177 boolean inRange = true;
183 inRange = false;
190 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_org/third_party/icu/source/i18n/unicode/
plurfmt.h 534 UBool inRange(UChar ch, fmtToken& type);
  /external/guava/guava-tests/test/com/google/common/base/
CharMatcherTest.java 21 import static com.google.common.base.CharMatcher.inRange;
90 // We're testing the is(), isNot(), anyOf(), noneOf() and inRange() methods
107 doTestEmpty(inRange('n', 'q'));
122 doTestNull(inRange('n', 'q'));
171 doTestNoMatches(inRange('p', 'x'), "mom");
173 doTestNoMatches(inRange('A', 'Z').and(inRange('F', 'K').negate()), "F1a");
199 doTestAllMatches(inRange('m', 'p'), "mom");
272 doTestGeneral(inRange('p', 'x'), 'q', 'z');
601 CharMatcher m3 = inRange('A', 'Z')
    [all...]
  /external/chromium_org/third_party/icu/source/common/
unames.c     [all...]
  /external/icu4c/common/
unames.cpp     [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol_tok.h 135 UBool inRange; /* Are we in a range? */
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 975 if ( !inRange(ch, type) ) {
1058 RuleParser::inRange(UChar ch, tokenType& type) {
ucol_tok.cpp 908 src->inRange = FALSE;
    [all...]
  /external/icu4c/i18n/
ucol_tok.h 135 UBool inRange; /* Are we in a range? */
plurrule_impl.h 137 UBool inRange(UChar ch, tokenType& type);
compactdecimalformat.cpp 161 static int32_t computeLog10(double x, UBool inRange);
893 // computeLog10 computes floor(log10(x)). If inRange is TRUE, the biggest
895 // numbers > 10^MAX_DIGITS. If inRange is FALSE, computeLog10 will return
897 static int32_t computeLog10(double x, UBool inRange) {
899 int32_t max = inRange ? MAX_DIGITS - 1 : MAX_DIGITS;
ucol_tok.cpp 902 src->inRange = FALSE;
    [all...]
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 24 static bool inRange(const MCExpr *Expr, int64_t MinValue, int64_t MaxValue) {
195 return Kind == KindImm && inRange(Imm, MinValue, MaxValue);
213 return isMem(RegKind, MemKind) && inRange(Mem.Disp, 0, 0xfff);
216 return isMem(RegKind, MemKind) && inRange(Mem.Disp, -524288, 524287);
219 return isMemDisp12(RegKind, BDLMem) && inRange(Mem.Length, 1, 0x100);
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf.c 117 static Word index_WordArray ( /*OUT*/Bool* inRange, WordArray* wa, Int i )
119 vg_assert(inRange);
121 *inRange = True;
124 *inRange = False;
315 Bool inRange;
318 diridx = index_WordArray( &inRange, fnidx2dir, filename_index );
319 if (!inRange) goto bad;
321 dirname = index_WordArray( &inRange, dirnames, (Int)diridx );
322 if (!inRange) goto bad;
372 Bool inRange = False
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding_1.3.100.I20100601-0800.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 599 boolean inRange = false;
608 inRange = true;
609 } else if (inRange) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelector.cpp 342 DEFINE_STATIC_LOCAL(AtomicString, inRange, ("in-range", AtomicString::ConstructFromLiteral));
428 nameToPseudoType->set(inRange.impl(), CSSSelector::PseudoInRange);
    [all...]

Completed in 662 milliseconds

1 2