Lines Matching refs:content
45 self.content = struct.pack(format + 'III', magic, version, 0)
60 new_content = stream.content + struct.pack(stream.format + 'I',
63 s.content = new_content
81 new_content = stream.content + struct.pack(stream.format + 'II', lo,
84 s.content = new_content
108 new_content = stream.content + struct.pack(
111 s.content = new_content
125 content = self.content[self.cursor:self.cursor + n_bytes]
127 return content
208 content = struct.pack('<I', word_count + 1) # will cause EOF error
209 content += bytes(test_string_padded)
210 self.stream.content += content