Home
last modified time | relevance | path

Searched refs:pIdStk (Results 1 – 4 of 4) sorted by relevance

/AOO41X/main/sw/source/filter/ww8/dump/
H A Dww8scan.cxx4235 p->pIdStk = 0; in WW8PLCFMan()
4256 p->pIdStk = new std::stack<sal_uInt16>; in WW8PLCFMan()
4279 delete aD[i].pIdStk; in ~WW8PLCFMan()
4406 if (!(p->pIdStk->empty())) in GetSprmEnd()
4407 pRes->nSprmId = p->pIdStk->top(); // get end position in GetSprmEnd()
4464 if (!p || !p->pIdStk) in TransferOpenSprms()
4466 while (!p->pIdStk->empty()) in TransferOpenSprms()
4468 rStack.push(p->pIdStk->top()); in TransferOpenSprms()
4469 p->pIdStk->pop(); in TransferOpenSprms()
4483 p->pIdStk->push(nLastId); // merke Id fuer Attribut-Ende in AdvSprm()
[all …]
H A Dww8scan.hxx646 UShortStk* pIdStk;// Speicher fuer Attr-Id fuer Attr-Ende(n) member
/AOO41X/main/sw/source/filter/ww8/
H A Dww8scan.cxx4680 p->pIdStk = 0; in WW8PLCFMan()
4701 p->pIdStk = new std::stack<sal_uInt16>; in WW8PLCFMan()
4724 delete aD[i].pIdStk; in ~WW8PLCFMan()
4853 if (!(p->pIdStk->empty())) in GetSprmEnd()
4854 pRes->nSprmId = p->pIdStk->top(); // get end position in GetSprmEnd()
4911 if (!p || !p->pIdStk) in TransferOpenSprms()
4913 while (!p->pIdStk->empty()) in TransferOpenSprms()
4915 rStack.push(p->pIdStk->top()); in TransferOpenSprms()
4916 p->pIdStk->pop(); in TransferOpenSprms()
4930 p->pIdStk->push(nLastId); // merke Id fuer Attribut-Ende in AdvSprm()
[all …]
H A Dww8scan.hxx793 ::std::stack<sal_uInt16>* pIdStk; // Speicher fuer Attr-Id fuer Attr-Ende(n)
822 WW8PLCFxDesc() : pIdStk(0), nStartPos(WW8_CP_MAX) {} in WW8PLCFxDesc()