Home | History | Annotate | Download | only in Support

Lines Matching refs:Out

359       Out(yout),
537 Out << s;
547 Out << "\n";
597 void ScalarTraits<bool>::output(const bool &Val, void *, raw_ostream &Out) {
598 Out << (Val ? "true" : "false");
613 raw_ostream &Out) {
614 Out << Val;
624 raw_ostream &Out) {
627 Out << Num;
635 return "out of range number";
641 raw_ostream &Out) {
642 Out << Val;
651 return "out of range number";
657 raw_ostream &Out) {
658 Out << Val;
667 return "out of range number";
673 Out) {
674 Out << Val;
686 void ScalarTraits<int8_t>::output(const int8_t &Val, void *, raw_ostream &Out) {
689 Out << Num;
697 return "out of range number";
703 raw_ostream &Out) {
704 Out << Val;
712 return "out of range number";
718 raw_ostream &Out) {
719 Out << Val;
727 return "out of range number";
733 raw_ostream &Out) {
734 Out << Val;
745 void ScalarTraits<double>::output(const double &Val, void *, raw_ostream &Out) {
746 Out << format("%g", Val);
758 void ScalarTraits<float>::output(const float &Val, void *, raw_ostream &Out) {
759 Out << format("%g", Val);
771 void ScalarTraits<Hex8>::output(const Hex8 &Val, void *, raw_ostream &Out) {
773 Out << format("0x%02X", Num);
781 return "out of range hex8 number";
786 void ScalarTraits<Hex16>::output(const Hex16 &Val, void *, raw_ostream &Out) {
788 Out << format("0x%04X", Num);
796 return "out of range hex16 number";
801 void ScalarTraits<Hex32>::output(const Hex32 &Val, void *, raw_ostream &Out) {
803 Out << format("0x%08X", Num);
811 return "out of range hex32 number";
816 void ScalarTraits<Hex64>::output(const Hex64 &Val, void *, raw_ostream &Out) {
818 Out << format("0x%016llX", Num);