Home | History | Annotate | Download | only in data

Lines Matching refs:Write

32 void FontOutputStream::Write(byte_t b) {
34 stream_->Write(b);
39 void FontOutputStream::Write(ByteVector* b) {
41 Write(b, 0, b->size());
46 void FontOutputStream::Write(ByteVector* b, int32_t off, int32_t len) {
58 stream_->Write(b, off, len);
62 void FontOutputStream::Write(byte_t* b, int32_t off, int32_t len) {
73 stream_->Write(b, off, len);
78 Write(c);
82 Write((byte_t)((us >> 8) & 0xff));
83 Write((byte_t)(us & 0xff));
91 Write((byte_t)(ui >> 16) & 0xff);
92 Write((byte_t)(ui >> 8) & 0xff);
93 Write((byte_t)ui & 0xff);
97 Write((byte_t)((ul >> 24) & 0xff));
98 Write((byte_t)((ul >> 16) & 0xff));
99 Write((byte_t)((ul >> 8) & 0xff));
100 Write((byte_t)(ul & 0xff));