HomeSort by relevance Sort by last modified time
    Searched refs:digits (Results 151 - 175 of 446) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
MediaQueryToken.cpp 74 char buffer[std::numeric_limits<float>::digits];
  /external/jemalloc/src/
util.c 138 * possible to tell whether any digits are consumed (e.g., " 0" vs.
230 const char *digits = (uppercase) local
236 s[i] = digits[x & 0xf];
241 const char *digits = (uppercase) local
248 s[i] = digits[x % (uint64_t)base];
  /external/libcxx/test/language.support/support.limits/limits/numeric.limits/
default.pass.cpp 33 static_assert(std::numeric_limits<A>::digits == 0,
34 "std::numeric_limits<A>::digits == 0");
  /frameworks/base/core/java/android/text/style/
TtsSpan.java 159 * The text associated with this span is a series of digits that have to be
160 * read sequentially. The digits can be set with {@link #ARG_DIGITS}.
164 public static final String TYPE_DIGITS = "android.type.digits";
233 * digits of any size optionally prefixed with a - or +.
240 * value can be a string of digits of any size optionally prefixed with
248 * be a string of digits of any size.
274 * string of digits of any size optionally prefixed with a - or +.
281 * a string of digits of any size optionally prefixed with a + or -.
369 * a string of digits optionally prefixed with a "+".
376 * be a string of digits where the different parts of the telephone numbe
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits/
default.pass.cpp 33 static_assert(std::numeric_limits<A>::digits == 0,
34 "std::numeric_limits<A>::digits == 0");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
AutoExpand.py 16 wordchars = string.ascii_letters + string.digits + "_"
AutoComplete.py 14 FILENAME_CHARS = string.ascii_letters + string.digits + os.curdir + "._~#$:-"
16 ID_CHARS = string.ascii_letters + string.digits + "_"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
AutoExpand.py 16 wordchars = string.ascii_letters + string.digits + "_"
AutoComplete.py 14 FILENAME_CHARS = string.ascii_letters + string.digits + os.curdir + "._~#$:-"
16 ID_CHARS = string.ascii_letters + string.digits + "_"
  /external/chromium_org/third_party/WebKit/Source/platform/
Decimal.cpp 979 const String digits = String::number(coefficient);
980 int coefficientLength = static_cast<int>(digits.length());
984 builder.append(digits);
990 builder.append(digits[i]);
1001 builder.append(digits);
1004 builder.append(digits[0]);
1005 while (coefficientLength >= 2 && digits[coefficientLength - 1] == '0')
1010 builder.append(digits[i]);
  /external/chromium_org/third_party/pexpect/
FSM.py 152 string.digits, string.whitespace, string.letters, etc. to add
315 f.add_transition_list (string.digits, 'INIT', BeginBuildNumber, 'BUILDING_NUMBER')
316 f.add_transition_list (string.digits, 'BUILDING_NUMBER', BuildNumber, 'BUILDING_NUMBER')
  /external/chromium_org/third_party/skia/src/utils/
SkTFitsIn.h 18 /** SkTHasMoreDigits::type = (digits(A) >= digits(B)) ? SkTrue : SkFalse. */
20 typedef SkTBool<std::numeric_limits<A>::digits >= std::numeric_limits<B>::digits> type;
120 // If std::numeric_limits<D>::digits >= std::numeric_limits<S>::digits, nothing to check.
137 // If std::numeric_limits<D>::digits >= std::numeric_limits<S>::digits, nothing to check.
155 // no need to check the high side. (Until C++11, assume more digits means greater max.)
173 // (Until C++11, assume more digits means greater max.
    [all...]
  /external/lldb/test/pexpect-2.4/
FSM.py 134 string.digits, string.whitespace, string.letters, etc. to add
297 f.add_transition_list (string.digits, 'INIT', BeginBuildNumber, 'BUILDING_NUMBER')
298 f.add_transition_list (string.digits, 'BUILDING_NUMBER', BuildNumber, 'BUILDING_NUMBER')
  /external/skia/src/utils/
SkTFitsIn.h 18 /** SkTHasMoreDigits::type = (digits(A) >= digits(B)) ? SkTrue : SkFalse. */
20 typedef SkTBool<std::numeric_limits<A>::digits >= std::numeric_limits<B>::digits> type;
120 // If std::numeric_limits<D>::digits >= std::numeric_limits<S>::digits, nothing to check.
137 // If std::numeric_limits<D>::digits >= std::numeric_limits<S>::digits, nothing to check.
155 // no need to check the high side. (Until C++11, assume more digits means greater max.)
173 // (Until C++11, assume more digits means greater max.
    [all...]
  /external/smack/src/org/xbill/DNS/
LOCRecord.java 87 int digits = parts[1].length(); local
88 return value + (fraction / Math.pow(10, digits));
  /external/srec/config/en.us/grammars/
run_compile_grammars.sh 19 GMR=digits
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 145 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
193 number of zero digits are appended to the coefficient ("fold-down").
255 divide-integer or remainder operation had too many digits (would be
277 not exact (that is, it needed to be rounded and any discarded digits
303 rounded (that is, some zero or non-zero digits were discarded from the
531 # a string rather than as a tuple of digits. This speeds up
532 # the "digits to integer" and "integer to digits" conversions
536 # digits.
623 # process and validate the digits in value[1
    [all...]
stringold.py 16 digits -- a string containing all characters considered decimal digits
17 hexdigits -- a string containing all characters considered hexadecimal digits
18 octdigits -- a string containing all characters considered octal digits
30 digits = '0123456789' variable
31 hexdigits = digits + 'abcdef' + 'ABCDEF'
215 or more digits, possibly preceded by a sign. If base is 0, it
242 of one or more digits, possibly preceded by a sign. If base
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 145 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
193 number of zero digits are appended to the coefficient ("fold-down").
255 divide-integer or remainder operation had too many digits (would be
277 not exact (that is, it needed to be rounded and any discarded digits
303 rounded (that is, some zero or non-zero digits were discarded from the
531 # a string rather than as a tuple of digits. This speeds up
532 # the "digits to integer" and "integer to digits" conversions
536 # digits.
623 # process and validate the digits in value[1
    [all...]
stringold.py 16 digits -- a string containing all characters considered decimal digits
17 hexdigits -- a string containing all characters considered hexadecimal digits
18 octdigits -- a string containing all characters considered octal digits
30 digits = '0123456789' variable
31 hexdigits = digits + 'abcdef' + 'ABCDEF'
215 or more digits, possibly preceded by a sign. If base is 0, it
242 of one or more digits, possibly preceded by a sign. If base
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 548 = {unsigned} digits
549 {->digits.expression}
550 | {positive} plus digits
551 {->digits.expression}
552 | {negative} minus digits
553 {->New expression.negative(digits.expression)}
556 digits {->expression}
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_snprintf.c 41 * digits; fix the handling of various corner cases of field width and
949 - MAX(precision, pos) /* Number of integer digits. */
983 while (pos > 0) { /* The actual digits. */
1058 * specifies the number of significant digits, which
1059 * includes the digits in the integer part. The
1084 * Sorry, we only support 9, 19, or 38 digits (that is, the number of
1085 * digits of the 32-bit, the 64-bit, or the 128-bit UINTMAX_MAX value
1113 * Factor of ten with the number of digits needed for the fractional
1341 const char *digits = caps ? "0123456789ABCDEF" : "0123456789abcdef"; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c 41 * digits; fix the handling of various corner cases of field width and
949 - MAX(precision, pos) /* Number of integer digits. */
983 while (pos > 0) { /* The actual digits. */
1058 * specifies the number of significant digits, which
1059 * includes the digits in the integer part. The
1084 * Sorry, we only support 9, 19, or 38 digits (that is, the number of
1085 * digits of the 32-bit, the 64-bit, or the 128-bit UINTMAX_MAX value
1113 * Factor of ten with the number of digits needed for the fractional
1341 const char *digits = caps ? "0123456789ABCDEF" : "0123456789abcdef"; local
    [all...]
  /libcore/luni/src/main/java/java/util/
Formatter.java 123 * number of digits for {@code d}, {@code o}, {@code x}, or {@code X}; the minimum number of digits
125 * the maximum number of significant digits for {@code g} or {@code G}; or the maximum number of
515 * <p><i>Number localization</i>. Some conversions use localized decimal digits rather than the
516 * usual ASCII digits. So formatting {@code 123} with {@code %d} will give 123 in English locales
1703 CharSequence digits = Long.toString(value); local
1764 CharSequence digits = bigInt.toString(10); local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
rbt_set.cpp 76 int32_t digits,
82 while (digits--) {
83 target += digitString[(number >> (digits*4)) & 0xF];

Completed in 1308 milliseconds

1 2 3 4 5 67 8 91011>>