Lines Matching refs:Result
119 std::string Result(size(), char()); in lower()
121 Result[i] = ascii_tolower(Data[i]); in lower()
123 return Result; in lower()
127 std::string Result(size(), char()); in upper()
129 Result[i] = ascii_toupper(Data[i]); in upper()
131 return Result; in upper()
341 unsigned long long &Result) { in getAsUnsignedInteger() argument
350 Result = 0; in getAsUnsignedInteger()
368 unsigned long long PrevResult = Result; in getAsUnsignedInteger()
369 Result = Result*Radix+CharVal; in getAsUnsignedInteger()
372 if (Result/Radix < PrevResult) in getAsUnsignedInteger()
382 long long &Result) { in getAsSignedInteger() argument
391 Result = ULLVal; in getAsSignedInteger()
403 Result = -ULLVal; in getAsSignedInteger()
407 bool StringRef::getAsInteger(unsigned Radix, APInt &Result) const { in getAsInteger()
426 Result = APInt(64, 0); in getAsInteger()
436 if (BitWidth < Result.getBitWidth()) in getAsInteger()
437 BitWidth = Result.getBitWidth(); // don't shrink the result in getAsInteger()
438 else if (BitWidth > Result.getBitWidth()) in getAsInteger()
439 Result = Result.zext(BitWidth); in getAsInteger()
449 Result = 0; in getAsInteger()
468 Result <<= Log2Radix; in getAsInteger()
469 Result |= CharVal; in getAsInteger()
471 Result *= RadixAP; in getAsInteger()
473 Result += CharAP; in getAsInteger()