Lines Matching defs:S
37 static void writeWithCommas(raw_ostream &S, ArrayRef<char> Buffer) { in writeWithCommas()
56 static void write_unsigned_impl(raw_ostream &S, T N, size_t MinDigits, in write_unsigned_impl()
79 static void write_unsigned(raw_ostream &S, T N, size_t MinDigits, in write_unsigned()
90 static void write_signed(raw_ostream &S, T N, size_t MinDigits, in write_signed()
105 void llvm::write_integer(raw_ostream &S, unsigned int N, size_t MinDigits, in write_integer()
110 void llvm::write_integer(raw_ostream &S, int N, size_t MinDigits, in write_integer()
115 void llvm::write_integer(raw_ostream &S, unsigned long N, size_t MinDigits, in write_integer()
120 void llvm::write_integer(raw_ostream &S, long N, size_t MinDigits, in write_integer()
125 void llvm::write_integer(raw_ostream &S, unsigned long long N, size_t MinDigits, in write_integer()
130 void llvm::write_integer(raw_ostream &S, long long N, size_t MinDigits, in write_integer()
135 void llvm::write_hex(raw_ostream &S, uint64_t N, HexPrintStyle Style, in write_hex()
165 void llvm::write_double(raw_ostream &S, double N, FloatStyle Style, in write_double()
251 bool llvm::isPrefixedHexStyle(HexPrintStyle S) { in isPrefixedHexStyle()