Searched defs:DIGITS (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUtility.java264 static final char DIGITS[] = { field in class:Utility
291 result.append(DIGITS[digit]);
348 result.append(DIGITS[0xF&(c>>28)]);
349 result.append(DIGITS[0xF&(c>>24)]);
350 result.append(DIGITS[0xF&(c>>20)]);
351 result.append(DIGITS[0xF&(c>>16)]);
355 result.append(DIGITS[0xF&(c>>12)]);
356 result.append(DIGITS[0xF&(c>>8)]);
357 result.append(DIGITS[0xF&(c>>4)]);
358 result.append(DIGITS[
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DParserForXMLSchema.java385 setupRange(tok, DIGITS);
505 private static final String DIGITS = field in class:ParserForXMLSchema
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.h370 #define DIGITS(MP) MP_DIGITS(MP) macro

Completed in 55 milliseconds