Searched refs:decimal (Results 1 - 11 of 11) sorted by relevance

/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageTokenizer.cpp111 bool decimal = *fCurrentChar == '.'; local
113 if (decimal || isdigit(*fCurrentChar)) {
127 // optional post decimal part
128 // (required if there are no digits before the decimal)
130 decimal = true;
134 // optional post decimal digits
142 if (length == 1 && decimal) {
161 if (decimal)
/haiku/src/bin/debug/strace/
H A DContext.h28 uint32 flags, bool decimal, uint64 returnValue = 0)
30 fFlags(flags), fDecimal(decimal), fReturnValue(returnValue) {}
27 Context(Syscall *sc, char *data, MemoryReader &reader, uint32 flags, bool decimal, uint64 returnValue = 0) argument
H A Dstrace.cpp93 " -i - Print integers in decimal format instead of hexadecimal.\n"
334 bool colorize, bool decimal, thread_id &currentThreadID)
340 contentsFlags | Context::INPUT_VALUES, decimal);
387 bool printReturnValue, bool colorize, bool decimal,
395 contentsFlags | Context::OUTPUT_VALUES, decimal, message.return_value);
332 print_syscall(FILE *outputFile, Syscall* syscall, debug_pre_syscall &message, MemoryReader &memoryReader, bool printArguments, uint32 contentsFlags, bool colorize, bool decimal, thread_id &currentThreadID) argument
385 print_syscall(FILE *outputFile, Syscall* syscall, debug_post_syscall &message, MemoryReader &memoryReader, bool printArguments, uint32 contentsFlags, bool printReturnValue, bool colorize, bool decimal, thread_id &currentThreadID) argument
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf_fphex.c189 /* Locale-dependent representation of decimal point. */
190 const char *decimal; local
207 /* The maximal exponent of two in decimal notation has 5 digits. */
218 /* The leading digit before the decimal point. */
234 /* Figure out the decimal point character. */
237 decimal = _NL_CURRENT (LC_NUMERIC, DECIMAL_POINT);
242 decimal = _NL_CURRENT (LC_MONETARY, MON_DECIMAL_POINT);
246 /* The decimal point character must never be zero. */
247 assert (*decimal != '\0' && decimalwc != L'\0');
361 the decimal poin
[all...]
H A Dprintf_fp.c152 /* Locale-dependent representation of decimal point. */
153 const char *decimal; local
257 /* Figure out the decimal point character. */
260 decimal = _NL_CURRENT (LC_NUMERIC, DECIMAL_POINT);
265 decimal = _NL_CURRENT (LC_MONETARY, MON_DECIMAL_POINT);
266 if (*decimal == '\0')
267 decimal = _NL_CURRENT (LC_NUMERIC, DECIMAL_POINT);
274 /* The decimal point character must not be zero. */
275 assert (*decimal != '\0');
700 /* The factor is right. Adapt binary and decimal
[all...]
H A Dvfscanf.c287 wchar_t decimal; local
289 const char *decimal; local
350 /* Figure out the decimal point character. */
352 decimal = _NL_CURRENT_WORD (LC_NUMERIC, _NL_NUMERIC_DECIMAL_POINT_WC);
354 decimal = _NL_CURRENT (LC_NUMERIC, DECIMAL_POINT);
1162 case L_('u'): /* Unsigned decimal integer. */
1167 case L_('d'): /* Signed decimal integer. */
1603 if (c != decimal)
1610 /* Match against the decimal point. At this point
1613 (almost) never necessary since the decimal poin
[all...]
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstrtod.c1 /* Read decimal floating point numbers.
307 , const char *decimal, size_t decimal_len, const char *thousands
476 wchar_t decimal; variable
478 const char *decimal; variable
529 /* Find the locale's decimal point character. */
531 decimal = _NL_CURRENT_WORD (LC_NUMERIC, _NL_NUMERIC_DECIMAL_POINT_WC);
532 assert (decimal != L'\0');
535 decimal = _NL_CURRENT (LC_NUMERIC, DECIMAL_POINT);
536 decimal_len = strlen (decimal);
565 if (c == decimal
304 str_to_mpn(const STRING_TYPE *str, int digcnt, mp_limb_t *n, mp_size_t *nsize, int *exponent , const char *decimal, size_t decimal_len, const char *thousands ) argument
[all...]
/haiku/headers/private/shared/
H A DExpressionParser.h53 status_t SetSeparators(BString decimal, BString group);
/haiku/src/kits/locale/
H A DNumberFormat.cpp378 DecimalFormat* decimal = dynamic_cast<DecimalFormat*>(format); local
380 if (decimal == NULL)
383 const DecimalFormatSymbols* symbols = decimal->getDecimalFormatSymbols();
/haiku/src/kits/shared/
H A DExpressionParser.cpp288 void SetSeparators(BString decimal, BString group) argument
290 fDecimalSeparator = decimal;
837 ExpressionParser::SetSeparators(BString decimal, BString group) argument
839 if (decimal == group)
842 fTokenizer->SetSeparators(decimal, group);
/haiku/docs/interface_guidelines/docbook-css/
H A Dstyles.css410 list-style-type: decimal;

Completed in 92 milliseconds