Lines Matching refs:sign
352 Sign sign() { return sign_; }
402 // Ignore leading sign; skip following spaces.
516 // GetResult() will take care of the sign bit, so ignore it for now.
676 Sign sign = Sign::kNone;
679 // Ignore leading sign.
682 sign = Sign::kPositive;
686 sign = Sign::kNegative;
700 return (sign == Sign::kNegative) ? -V8_INFINITY : V8_INFINITY;
706 if (current == end) return SignedZero(sign == Sign::kNegative);
713 if (current == end || !isDigit(*current, 16) || sign != Sign::kNone) {
723 if (current == end || !isDigit(*current, 8) || sign != Sign::kNone) {
733 if (current == end || !isBinaryDigit(*current) || sign != Sign::kNone) {
744 if (current == end) return SignedZero(sign == Sign::kNegative);
789 if (current == end) return SignedZero(sign == Sign::kNegative);
878 sign == Sign::kNegative,
892 return (sign == Sign::kNegative) ? -converted : converted;
947 if (behavior_ == Behavior::kStringToBigInt && this->sign() != Sign::kNone &&
1062 int sign;
1069 base::Vector<char>(decimal_rep, kV8DtoaBufferCapacity), &sign,
1072 if (sign) builder.AddCharacter('-');
1150 int sign;
1158 &sign, &decimal_rep_length, &decimal_point);
1239 int sign;
1253 &sign, &decimal_rep_length, &decimal_point);
1258 &sign, &decimal_rep_length, &decimal_point);
1283 int sign;
1291 &sign, &decimal_rep_length, &decimal_point);
1349 // either way, with additional space for sign, decimal point and string
1415 // Add sign and terminate string.