Home | History | Annotate | Download | only in ADT

Lines Matching full:issigned

661   bool isSigned;
679 isSigned = false;
680 APInt(8, 255, isSigned).toString(S, 2, isSigned, true);
683 APInt(8, 255, isSigned).toString(S, 8, isSigned, true);
686 APInt(8, 255, isSigned).toString(S, 10, isSigned, true);
689 APInt(8, 255, isSigned).toString(S, 16, isSigned, true);
692 APInt(8, 255, isSigned).toString(S, 36, isSigned, false);
696 isSigned = true;
697 APInt(8, 255, isSigned).toString(S, 2, isSigned, true);
700 APInt(8, 255, isSigned).toString(S, 8, isSigned, true);
703 APInt(8, 255, isSigned).toString(S, 10, isSigned, true);
706 APInt(8, 255, isSigned).toString(S, 16, isSigned, true);
709 APInt(8, 255, isSigned).toString(S, 36, isSigned, false);