Home
last modified time | relevance | path

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

/trunk/main/sw/source/filter/ww8/dump/
H A Dww8scan.cxx4234 p->pIdStk = 0; in WW8PLCFMan()
4255 p->pIdStk = new std::stack<sal_uInt16>; in WW8PLCFMan()
4278 delete aD[i].pIdStk; in ~WW8PLCFMan()
4405 if (!(p->pIdStk->empty())) in GetSprmEnd()
4406 pRes->nSprmId = p->pIdStk->top(); // get end position in GetSprmEnd()
4463 if (!p || !p->pIdStk) in TransferOpenSprms()
4465 while (!p->pIdStk->empty()) in TransferOpenSprms()
4467 rStack.push(p->pIdStk->top()); in TransferOpenSprms()
4468 p->pIdStk->pop(); in TransferOpenSprms()
4482 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
/trunk/main/sw/source/filter/ww8/
H A Dww8scan.cxx4679 p->pIdStk = 0; in WW8PLCFMan()
4700 p->pIdStk = new std::stack<sal_uInt16>; in WW8PLCFMan()
4723 delete aD[i].pIdStk; in ~WW8PLCFMan()
4852 if (!(p->pIdStk->empty())) in GetSprmEnd()
4853 pRes->nSprmId = p->pIdStk->top(); // get end position in GetSprmEnd()
4910 if (!p || !p->pIdStk) in TransferOpenSprms()
4912 while (!p->pIdStk->empty()) in TransferOpenSprms()
4914 rStack.push(p->pIdStk->top()); in TransferOpenSprms()
4915 p->pIdStk->pop(); in TransferOpenSprms()
4929 p->pIdStk->push(nLastId); // merke Id fuer Attribut-Ende in AdvSprm()
[all …]
H A Dww8scan.hxx792 ::std::stack<sal_uInt16>* pIdStk; // Speicher fuer Attr-Id fuer Attr-Ende(n)
821 WW8PLCFxDesc() : pIdStk(0), nStartPos(WW8_CP_MAX) {} in WW8PLCFxDesc()