Home
last modified time | relevance | path

Searched refs:isDecimal (Results 1 – 6 of 6) sorted by relevance

/external/icu/icu4c/source/i18n/
Dnumparse_decimal.cpp194 bool isDecimal = false; in match() local
203 isDecimal = true; in match()
234 isDecimal = true; in match()
249 if (!isDecimal && !isGrouping) { in match()
254 if (isDecimal && integerOnly) { in match()
264 if (!prevValidSecondary || (isDecimal && !currValidPrimary)) { in match()
281 if (isDecimal) { in match()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
DDecimalMatcher.java210 boolean isDecimal = false; in match()
219 isDecimal = true; in match()
252 isDecimal = true; in match()
267 if (!isDecimal && !isGrouping) { in match()
272 if (isDecimal && integerOnly) { in match()
282 if (!prevValidSecondary || (isDecimal && !currValidPrimary)) { in match()
298 if (isDecimal) { in match()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/parse/
DDecimalMatcher.java212 boolean isDecimal = false; in match()
221 isDecimal = true; in match()
254 isDecimal = true; in match()
269 if (!isDecimal && !isGrouping) { in match()
274 if (isDecimal && integerOnly) { in match()
284 if (!prevValidSecondary || (isDecimal && !currValidPrimary)) { in match()
300 if (isDecimal) { in match()
/external/clang/lib/AST/
DCommentLexer.cpp565 bool isDecimal = false; in lexHTMLCharacterReference() local
581 isDecimal = true; in lexHTMLCharacterReference()
604 else if (isDecimal) in lexHTMLCharacterReference()
/external/icu/icu4c/source/test/cintltst/
Dcnumtst.c1530 static void test_fmt(UNumberFormat* fmt, UBool isDecimal) { in test_fmt() argument
1556 if (isDecimal ? U_FAILURE(status) : (status != U_UNSUPPORTED_ERROR)) { in test_fmt()
1582 if ((val == -1) == isDecimal) { in test_fmt()
1587 if (isDecimal && (val2 - val != .5)) { in test_fmt()
1595 if (isDecimal ? (status != U_UNSUPPORTED_ERROR) : U_FAILURE(status)) { in test_fmt()
1605 if (isDecimal ? (status != U_UNSUPPORTED_ERROR) : U_FAILURE(status)) { in test_fmt()
1662 if (isDecimal ? U_FAILURE(status) : (status != U_UNSUPPORTED_ERROR)) { in test_fmt()
1667 if (isDecimal ? U_FAILURE(status) : (status != U_UNSUPPORTED_ERROR)) { in test_fmt()
/external/owasp/sanitizer/src/main/org/owasp/html/
DCssTokens.java520 if (isDecimal(lookahead) in lex()
522 && isDecimal(css.charAt(pos + 2)))) { in lex()
1377 private static final boolean isDecimal(char ch) {