Searched refs:digit (Results 201 - 225 of 260) sorted by relevance

1234567891011

/external/owasp/sanitizer/distrib/lib/
H A Dowasp-java-html-sanitizer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/owasp/html/ org/owasp/html/AbstractTokenStream ...
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
H A DUCharacterTest.java84 errln("FAIL \\u" + hex(i) + " expected to be a digit");
88 errln("FAIL \\u" + hex(i) + " expected not to be a digit");
93 "expected to be either a letter or a digit");
108 * Verify that exactly the digit characters have decimal digit values.
111 * compared with the parallel java.lang.Character.digit()
339 * Tests for digit characters
357 UCharacter.digit(digits[i]) != digitvalues[i])
360 " expected digit with value " + digitvalues[i]);
375 UCharacter.digit(digits
[all...]
H A DUnicodeSetTest.java340 dig = UCharacter.digit(c, 8);
344 n = 1; /* Already have first octal digit */
353 // TODO: Restore the char32-based code when UCharacter.digit
357 //dig = UCharacter.digit(c, (bitsPerDigit == 3) ? 8 : 16);
359 dig = Character.digit((char)c, (bitsPerDigit == 3) ? 8 : 16);
1474 * Test that Posix style character classes [:digit:], etc.
1483 expectEqual("POSIX digit", "[:digit:]", "\\p{gc=DecimalNumber}");
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUCharacterTest.java83 errln("FAIL \\u" + hex(i) + " expected to be a digit");
87 errln("FAIL \\u" + hex(i) + " expected not to be a digit");
92 "expected to be either a letter or a digit");
107 * Verify that exactly the digit characters have decimal digit values.
110 * compared with the parallel java.lang.Character.digit()
338 * Tests for digit characters
356 UCharacter.digit(digits[i]) != digitvalues[i])
359 " expected digit with value " + digitvalues[i]);
374 UCharacter.digit(digits
[all...]
H A DUnicodeSetTest.java339 dig = UCharacter.digit(c, 8);
343 n = 1; /* Already have first octal digit */
352 // TODO: Restore the char32-based code when UCharacter.digit
356 //dig = UCharacter.digit(c, (bitsPerDigit == 3) ? 8 : 16);
358 dig = Character.digit((char)c, (bitsPerDigit == 3) ? 8 : 16);
1473 * Test that Posix style character classes [:digit:], etc.
1482 expectEqual("POSIX digit", "[:digit:]", "\\p{gc=DecimalNumber}");
/external/protobuf/conformance/third_party/jsoncpp/
H A Djsoncpp.cpp768 Value::UInt digit(c - '0');
771 // a) we've only just touched the limit, b) this is the last digit, and
775 digit > maxIntegerValue % 10) {
779 value = value * 10 + digit;
928 "Bad unicode escape sequence in string: hexadecimal digit expected.",
1750 Value::UInt digit(c - '0');
1753 // a) we've only just touched the limit, b) this is the last digit, and
1757 digit > maxIntegerValue % 10) {
1761 value = value * 10 + digit;
1932 "Bad unicode escape sequence in string: hexadecimal digit expecte
[all...]
/external/swiftshader/third_party/LLVM/lib/Support/
H A DAPFloat.cpp249 non-zero digit.
251 If the value is zero, V->firstSigDigit points to a non-digit, and
288 /* p points to the first non-digit in the string */
318 DIGITVALUE is the first hex digit of the fraction, P points to
319 the next digit. */
326 /* If the first trailing digit isn't 0 or 8 we can work out the
333 /* Otherwise we need to find the first non-zero digit. */
2442 N-digit decimal integer is N * 196 / 59. Allocate enough space
2472 digit added without overflowing an integerPart. */
2532 The decimal exponent is always printed and has at least one digit
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jar ... commons.codec.DecoderException char ch int index int digit public static char[] encodeHex (byte[]) int i int j byte ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DDB_Results.java715 DB_VERSION_REF = "R-3."+(Character.digit(DB_NAME.charAt(DB_NAME.length()-1), 10)-1);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUCharacterProperty.java790 * Returns the digit values of characters like 'A' - 'Z', normal,
791 * half-width and full-width. This method assumes that the other digit
795 * its corresponding digit will be returned.
815 public int digit(int c) { method in class:UCharacterProperty
831 /* decimal digit */
834 /* other digit */
843 /* large, single-significant-digit integer */
895 /* decimal digit */
898 /* other digit */
909 /* large, single-significant-digit intege
[all...]
/external/icu/icu4c/source/common/unicode/
H A Duchar.h92 * - digit: u_isdigit(c) or u_charType(c)==U_DECIMAL_DIGIT_NUMBER
2527 * Determines whether the specified code point is a digit character according to Java.
2528 * True for characters with general category "Nd" (decimal digit numbers).
2540 * @return TRUE if the code point is a digit character according to Character.isDigit()
2570 * (letter or digit) according to Java.
2572 * "L" (letters) and "Nd" (decimal digit numbers).
2590 * Determines whether the specified code point is a hexadecimal digit.
2592 * True for characters with general category "Nd" (decimal digit numbers)
2605 * @return TRUE if the code point is a hexadecimal digit
3025 * Returns the decimal digit valu
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCharacterProperty.java789 * Returns the digit values of characters like 'A' - 'Z', normal,
790 * half-width and full-width. This method assumes that the other digit
794 * its corresponding digit will be returned.
814 public int digit(int c) { method in class:UCharacterProperty
830 /* decimal digit */
833 /* other digit */
842 /* large, single-significant-digit integer */
894 /* decimal digit */
897 /* other digit */
908 /* large, single-significant-digit intege
[all...]
/external/valgrind/exp-bbv/tests/amd64-linux/
H A Dll.S540 stosb # save digit
/external/valgrind/exp-bbv/tests/x86-linux/
H A Dll.S540 stosb # save digit
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/external/owasp/sanitizer/lib/commons-codec-1.4/
H A Dcommons-codec-1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationDataBuilder.java873 Collation.DIGIT_TAG, index, UCharacter.digit(c)); // u_charDigitValue(c)
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationDataBuilder.java872 Collation.DIGIT_TAG, index, UCharacter.digit(c)); // u_charDigitValue(c)
/external/icu/icu4c/source/test/cintltst/
H A Dcucdtst.c495 * Verify that exactly the digit characters have decimal digit values.
498 * compared with the parallel java.lang.Character.digit()
680 static const UChar32 digit[10]={ 0x0030,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039 }; local
682 if(digit[i]!=u_forDigit(i,10)){
683 log_err("u_forDigit failed for %i. Expected: 0x%4X Got: 0x%4X\n",i,digit[i],u_forDigit(i,10));
/external/llvm/lib/Support/
H A DAPFloat.cpp241 non-zero digit.
243 If the value is zero, V->firstSigDigit points to a non-digit, and
280 /* p points to the first non-digit in the string */
310 DIGITVALUE is the first hex digit of the fraction, P points to
311 the next digit. */
318 /* If the first trailing digit isn't 0 or 8 we can work out the
325 // Otherwise we need to find the first non-zero digit.
2553 // D->firstSigDigit equals str.end(), every digit must be a zero and there can
2587 N-digit decimal integer is N * 196 / 59. Allocate enough space
2617 digit adde
[all...]
/external/icu/icu4c/source/i18n/
H A Dregexcmp.cpp1002 // Scanned a digit from the lower value of an {lower,upper} interval
1016 // Scanned a digit from the upper value of an {lower,upper} interval
1291 // Loop once per digit, for max allowed number of digits in a back reference.
1292 int32_t digit = u_charDigitValue(c); local
1293 groupNum = groupNum * 10 + digit;
4117 // the three digit number would be > 0xff
4136 // The last digit made the number too big. Forget we saw it.
/external/robolectric/v1/lib/main/
H A Dcommons-codec-1.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...

Completed in 2865 milliseconds

1234567891011