Home
last modified time | relevance | path

Searched refs:ContentChunkReference (Results 1 – 6 of 6) sorted by relevance

/dports/print/libmspub01/libmspub-0.1.4/src/lib/
H A DMSPUBParser.h39 bool operator()(const libmspub::ContentChunkReference &ref) in operator()
50 bool operator()(const libmspub::ContentChunkReference &ref) in operator()
90 typedef std::vector<ContentChunkReference>::const_iterator ccr_iterator_t;
106 bool parseDocumentChunk(librevenge::RVNGInputStream *input, const ContentChunkReference &chunk);
107 bool parsePageChunk(librevenge::RVNGInputStream *input, const ContentChunkReference &chunk);
108 bool parsePaletteChunk(librevenge::RVNGInputStream *input, const ContentChunkReference &chunk);
110 bool parseShape(librevenge::RVNGInputStream *input, const ContentChunkReference &chunk);
112 const ContentChunkReference &chunk);
114 const ContentChunkReference &chunk);
152 std::vector<ContentChunkReference> m_contentChunks;
H A DMSPUBParser2k.cpp373 m_contentChunks.push_back(ContentChunkReference(PAGE, chunkOffset, 0, id, parent)); in parseContents()
379 m_contentChunks.push_back(ContentChunkReference(DOCUMENT, chunkOffset, 0, id, parent)); in parseContents()
385 m_contentChunks.push_back(ContentChunkReference(IMAGE_2K, chunkOffset, 0, id, parent)); in parseContents()
391 m_contentChunks.push_back(ContentChunkReference(IMAGE_2K_DATA, chunkOffset, 0, id, parent)); in parseContents()
402 m_contentChunks.push_back(ContentChunkReference(SHAPE, chunkOffset, 0, id, parent)); in parseContents()
408 m_contentChunks.push_back(ContentChunkReference(PALETTE, chunkOffset, 0, id, parent)); in parseContents()
414 m_contentChunks.push_back(ContentChunkReference(GROUP, chunkOffset, 0, id, parent)); in parseContents()
420 m_contentChunks.push_back(ContentChunkReference(UNKNOWN_CHUNK, chunkOffset, 0, id, parent)); in parseContents()
440 const ContentChunkReference &chunk = m_contentChunks.at(paletteChunkIndex); in parseContents()
453 const ContentChunkReference &chunk = m_contentChunks.at(imageDataChunkIndex); in parseContents()
[all …]
H A DMSPUBTypes.h90 struct ContentChunkReference struct
92 ContentChunkReference() : type(0), offset(0), end(0), seqNum(0), parentSeqNum(0) { } in ContentChunkReference() function
93 ContentChunkReference(unsigned t, unsigned long o, unsigned long e, unsigned sn, unsigned psn) : in ContentChunkReference() function
H A DMSPUBParser.cpp412 const ContentChunkReference &documentChunk = m_contentChunks.at(m_documentChunkIndex.get()); in parseContents()
415 const ContentChunkReference &paletteChunk = m_contentChunks.at(paletteChunkIndex); in parseContents()
424 const ContentChunkReference &baChunk = in parseContents()
434 const ContentChunkReference &shapeChunk = in parseContents()
444 const ContentChunkReference &fontChunk = in parseContents()
459 const ContentChunkReference &pageChunk = m_contentChunks.at(pageChunkIndex); in parseContents()
521 librevenge::RVNGInputStream *input, const ContentChunkReference &chunk) in parseFontChunk()
586 librevenge::RVNGInputStream *input, const ContentChunkReference &chunk) in parseBorderArtChunk()
706 const ContentChunkReference &chunk) in parseShape()
2462 m_contentChunks.push_back(ContentChunkReference(type, offset, 0, in parseContentChunkReference()
[all …]
H A DMSPUBCollector.h52 typedef std::list<ContentChunkReference>::const_iterator ccr_iterator_t;
142 std::list<ContentChunkReference> m_contentChunkReferences;
H A DMSPUBParser2k.h33 bool parse2kShapeChunk(const ContentChunkReference &chunk, librevenge::RVNGInputStream *input,