Home
last modified time | relevance | path

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

/trunk/main/writerfilter/source/doctok/
H A DWW8DocumentImpl.cxx669 WW8DocumentImpl::getIterator(const CpAndFc & rCpAndFc) in getIterator() argument
672 (new WW8DocumentIteratorImpl(this, rCpAndFc)); in getIterator()
695 sal_uInt32 WW8DocumentImpl::getByteLength(const CpAndFc & rCpAndFc) const in getByteLength()
697 CpAndFc aEnd = getNextCp(rCpAndFc); in getByteLength()
701 if (rCpAndFc < aEnd) in getByteLength()
702 nResult = (aEnd - rCpAndFc) * in getByteLength()
703 (mpPieceTable->isComplex(rCpAndFc.getCp()) ? 1 : 2); in getByteLength()
759 CpAndFc WW8DocumentImpl::getNextCp(const CpAndFc & rCpAndFc) const in getNextCp()
762 CpAndFcs::const_iterator aIt = mCpAndFcs.find(rCpAndFc); in getNextCp()
772 throw ExceptionNotFound("getNextCp: " + rCpAndFc.toString()); in getNextCp()
[all …]
H A DWW8DocumentImpl.hxx115 sal_uInt32 getIndex(const CpAndFc & rCpAndFc);
144 (const CpAndFc & rCpAndFc);
158 getBookmark(const CpAndFc & rCpAndFc);
182 getShape(const CpAndFc & rCpAndFc);
207 getField(const CpAndFc & rCpAndFc);
209 WW8FLD::Pointer_t getWW8FLD(const CpAndFc & rCpAndFc);
231 getBreak(const CpAndFc & rCpAndFc);
394 (const CpAndFc & rCpAndFc);
416 sal_uInt32 getByteLength(const CpAndFc & rCpAndFc) const;
433 CpAndFc getNextCp(const CpAndFc & rCpAndFc) const;
[all …]
H A DXNoteHelperImpl.hxx90 sal_uInt32 XNoteHelper<T>::getIndexOfCpAndFc(const CpAndFc & rCpAndFc) in getIndexOfCpAndFc() argument
103 if (aCpAndFc <= rCpAndFc) in getIndexOfCpAndFc()
115 XNoteHelper<T>::get(const CpAndFc & rCpAndFc) in get() argument
119 sal_uInt32 n = getIndexOfCpAndFc(rCpAndFc); in get()
136 XNoteHelper<T>::getRef(const CpAndFc & rCpAndFc) in getRef() argument
140 sal_uInt32 n = getIndexOfCpAndFc(rCpAndFc); in getRef()
H A DWW8CpAndFc.hxx277 sal_uInt32 operator-(const CpAndFc & rCpAndFc) const in operator -()
278 { return mCp - rCpAndFc.mCp; } in operator -()
287 friend ostream & operator << (ostream & o, const CpAndFc & rCpAndFc);
343 size_t operator()(const CpAndFc & rCpAndFc) const in operator ()()
347 return aHash(rCpAndFc.getCp()); in operator ()()
H A DXNoteHelper.hxx106 sal_uInt32 getIndexOfCpAndFc(const CpAndFc & rCpAndFc);
120 writerfilter::Reference<Stream>::Pointer_t get(const CpAndFc & rCpAndFc);
134 T * getRef(const CpAndFc & rCpAndFc);
H A DWW8CpAndFc.cxx103 ostream & operator << (ostream & o, const CpAndFc & rCpAndFc) in operator <<() argument
105 return o << rCpAndFc.toString(); in operator <<()