Lines Matching defs:ParseableChunk
31 // Because no virtual destructor is defined for ParseableChunk, a pointer to
32 // a child class of ParseableChunk must be destroyed using its specific type,
33 // rather than as a ParseableChunk*.
34 class ParseableChunk {
36 ParseableChunk(const char* data_start, size_t data_size) {
93 ParseableChunk(const ParseableChunk&);
94 void operator=(const ParseableChunk&);
108 // ParseableChunk object) is added.
119 // Reuse the already-allocated ParseableChunk object.
122 parseable_chunk_ = new ParseableChunk(data_start, data_size);
138 // ParseableChunk object.
176 // point to a ParseableChunk object that has been allocated with "new" and
180 // does not own the ParseableChunk before (or simultaneously to) freeing the
182 ParseableChunk* parseable_chunk_;
330 // ParseableChunk object.
373 ParseableChunk parseable_chunk_;