Lines Matching defs:__negative
58 _LIBCPP_HIDE_FROM_ABI inline _Iterator __insert_sign(_Iterator __buf, bool __negative, __format_spec::__sign __sign) {
59 if (__negative)
289 bool __negative,
294 _Iterator __first = __formatter::__insert_sign(__begin, __negative, __specs.__std_.__sign_);
349 bool __negative = false) {
353 return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array.end(), "0b", 2);
357 return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array.end(), "0B", 2);
363 __value, __ctx, __specs, __negative, __array.begin(), __array.end(), __value != 0 ? "0" : nullptr, 8);
369 __value, __ctx, __specs, __negative, __array.begin(), __array.end(), nullptr, 10);
373 return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array.end(), "0x", 16);
377 return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array.end(), "0X", 16);
395 bool __negative = __value < 0;
396 if (__negative)
399 return __formatter::__format_integer(__r, __ctx, __specs, __negative);