Lines Matching refs:pAttr
137 TextCharAttrib* pAttr = GetObject( --nAttr ); in FindAttrib() local
139 if ( pAttr->GetEnd() < nPos ) in FindAttrib()
142 if ( ( pAttr->Which() == nWhich ) && pAttr->IsIn(nPos) ) in FindAttrib()
143 return pAttr; in FindAttrib()
154 TextCharAttrib* pAttr = GetObject( nAttr ); in FindNextAttrib() local
155 if ( ( pAttr->GetStart() >= nFromPos ) && in FindNextAttrib()
156 ( pAttr->GetEnd() <= nMaxPos ) && in FindNextAttrib()
157 ( pAttr->Which() == nWhich ) ) in FindNextAttrib()
158 return pAttr; in FindNextAttrib()
167 const TextCharAttrib* pAttr = GetObject( --nAttr ); in HasAttrib() local
168 if ( pAttr->Which() == nWhich ) in HasAttrib()
180 TextCharAttrib* pAttr = GetObject( --nAttr ); in HasBoundingAttrib() local
182 if ( pAttr->GetEnd() < nBound ) in HasBoundingAttrib()
185 if ( ( pAttr->GetStart() == nBound ) || ( pAttr->GetEnd() == nBound ) ) in HasBoundingAttrib()
199 TextCharAttrib* pAttr = GetObject( nAttr ); in FindEmptyAttrib() local
200 if ( pAttr->GetStart() > nPos ) in FindEmptyAttrib()
203 …if ( ( pAttr->GetStart() == nPos ) && ( pAttr->GetEnd() == nPos ) && ( pAttr->Which() == nWhich ) ) in FindEmptyAttrib()
204 return pAttr; in FindEmptyAttrib()
213 TextCharAttrib* pAttr = GetObject( nAttr ); in DeleteEmptyAttribs() local
214 if ( pAttr->IsEmpty() ) in DeleteEmptyAttribs()
217 delete pAttr; in DeleteEmptyAttribs()
230 TextCharAttrib* pAttr = GetObject( nAttr ); in DbgCheckAttribs() local
231 if ( pAttr->GetStart() > pAttr->GetEnd() ) in DbgCheckAttribs()