Lines Matching refs:wStream
72 inline void AppendColorComponent(uint8_t value, SkWStream* wStream) { in AppendColorComponent() argument
75 wStream->write(buffer, len); in AppendColorComponent()
77 inline void AppendColorComponentF(float value, SkWStream* wStream) { in AppendColorComponentF() argument
80 wStream->write(buffer, len); in AppendColorComponentF()
90 inline void WriteUInt16BE(SkDynamicMemoryWStream* wStream, uint16_t value) { in WriteUInt16BE() argument
95 wStream->write(result, 4); in WriteUInt16BE()
98 inline void WriteUInt8(SkDynamicMemoryWStream* wStream, uint8_t value) { in WriteUInt8() argument
101 wStream->write(result, 2); in WriteUInt8()
104 inline void WriteUTF16beHex(SkDynamicMemoryWStream* wStream, SkUnichar utf32) { in WriteUTF16beHex() argument
108 SkPDFUtils::WriteUInt16BE(wStream, utf16[0]); in WriteUTF16beHex()
110 SkPDFUtils::WriteUInt16BE(wStream, utf16[1]); in WriteUTF16beHex()