reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/ADT/APInt.h
 1683   void toString(SmallVectorImpl<char> &Str, unsigned Radix, bool Signed,

References

include/llvm/ADT/APInt.h
 1689     toString(Str, Radix, false, false);
 1695     toString(Str, Radix, true, false);
include/llvm/ADT/APSInt.h
   83     APInt::toString(Str, Radix, isSigned());
lib/Support/APInt.cpp
 2260   toString(S, Radix, Signed, /* formatAsCLiteral = */false);
 2276   this->toString(S, 10, isSigned, /* formatAsCLiteral = */false);
tools/clang/lib/Basic/FixedPoint.cpp
  198         .toString(Str, /*Radix=*/10, Val.isSigned());
tools/clang/lib/Sema/SemaExpr.cpp
 9856   Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true);
tools/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
  455     I->getValue().toString(Str, /*Radix=*/10, /*Signed=*/false);
tools/llvm-size/llvm-size.cpp
  166   conv.toString(result, Radix, false, true);
unittests/ADT/APIntTest.cpp
 1342   APInt(8, 0).toString(S, 2, true, true);
 1345   APInt(8, 0).toString(S, 8, true, true);
 1348   APInt(8, 0).toString(S, 10, true, true);
 1351   APInt(8, 0).toString(S, 16, true, true);
 1354   APInt(8, 0).toString(S, 36, true, false);
 1359   APInt(8, 255, isSigned).toString(S, 2, isSigned, true);
 1362   APInt(8, 255, isSigned).toString(S, 8, isSigned, true);
 1365   APInt(8, 255, isSigned).toString(S, 10, isSigned, true);
 1368   APInt(8, 255, isSigned).toString(S, 16, isSigned, true);
 1371   APInt(8, 255, isSigned).toString(S, 36, isSigned, false);
 1376   APInt(8, 255, isSigned).toString(S, 2, isSigned, true);
 1379   APInt(8, 255, isSigned).toString(S, 8, isSigned, true);
 1382   APInt(8, 255, isSigned).toString(S, 10, isSigned, true);
 1385   APInt(8, 255, isSigned).toString(S, 16, isSigned, true);
 1388   APInt(8, 255, isSigned).toString(S, 36, isSigned, false);