Searched defs:Block (Results 1 – 3 of 3) sorted by relevance
32 struct Block { struct35 Block() = default; argument37 explicit Block(size_t size) { allocate(size); } in Block() function40 Block(Iterator begin, Iterator end) : Block(end - begin) { in Block() function45 Block(Block&& move) noexcept in Block() argument50 Block& operator=(const Block& copy) = delete; argument61 void resize(size_t new_size) { in resize()71 void assign(InputIt begin, InputIt end) { in assign()99 bool operator==(const Block& rhs) const { argument104 void allocate(size_t size) { in allocate()[all …]
37 struct Block { struct43 bool populated = false;44 bool printUnlessWrapped = false;47 std::string content;48 std::vector<Block> blocks;50 Block* const parent;
257 WrappedOutput::Block::Block(const std::string& content, Block* const parent) in Block() function in android::WrappedOutput::Block