Home
last modified time | relevance | path

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

/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_objects.cpp193 FX_BOOL CPDF_Object::IsIdentical(CPDF_Object* pOther) const in IsIdentical()
195 if (this == pOther) { in IsIdentical()
198 if (pOther == NULL) { in IsIdentical()
201 if (pOther->m_Type != m_Type) { in IsIdentical()
203 return GetDirect()->IsIdentical(pOther); in IsIdentical()
204 } else if (pOther->m_Type == PDFOBJ_REFERENCE) { in IsIdentical()
205 return IsIdentical(pOther->GetDirect()); in IsIdentical()
211 return (((CPDF_Boolean*)this)->Identical((CPDF_Boolean*)pOther)); in IsIdentical()
213 return (((CPDF_Number*)this)->Identical((CPDF_Number*)pOther)); in IsIdentical()
215 return (((CPDF_String*)this)->Identical((CPDF_String*)pOther)); in IsIdentical()
[all …]
/external/pdfium/core/include/fpdfapi/
Dfpdf_objects.h124 FX_BOOL Identical(CPDF_Boolean* pOther) const in Identical() argument
126 return m_bValue == pOther->m_bValue; in Identical()
167 FX_BOOL Identical(CPDF_Number* pOther) const;
238 FX_BOOL Identical(CPDF_String* pOther) const in Identical() argument
240 return m_String == pOther->m_String; in Identical()
282 FX_BOOL Identical(CPDF_Name* pOther) const in Identical() argument
284 return m_Name == pOther->m_Name; in Identical()
380 FX_BOOL Identical(CPDF_Array* pOther) const;
527 FX_BOOL Identical(CPDF_Stream* pOther) const;
699 FX_BOOL Identical(CPDF_Reference* pOther) const in Identical() argument
[all …]
/external/pdfium/core/src/fpdftext/
Dfpdf_text.cpp539 FX_BOOL CTextBaseLine::CanMerge(CTextBaseLine* pOther) in CanMerge() argument
542 if (!GetIntersection(m_Bottom, m_Top, pOther->m_Bottom, pOther->m_Top, in CanMerge()
547 if (inter_h < (m_Top - m_Bottom) / 2 && inter_h < (pOther->m_Top - pOther->m_Bottom) / 2) { in CanMerge()
550 FX_FLOAT dy = (FX_FLOAT)FXSYS_fabs(m_BaseLine - pOther->m_BaseLine); in CanMerge()
553 for (int j = 0; j < pOther->m_TextList.GetSize(); j ++) { in CanMerge()
554 CTextBox* pOtherText = (CTextBox*)pOther->m_TextList.GetAt(j); in CanMerge()
572 void CTextBaseLine::Merge(CTextBaseLine* pOther) in Merge() argument
574 for (int i = 0; i < pOther->m_TextList.GetSize(); i ++) { in Merge()
575 CTextBox* pText = (CTextBox*)pOther->m_TextList.GetAt(i); in Merge()
Dtxtproc.h37 FX_BOOL CanMerge(CTextBaseLine* pOther);
38 void Merge(CTextBaseLine* pOther);
/external/sqlite/dist/
Dsqlite3.c40649 PCache1 *pOther;
40654 pOther = pPage->pCache;
40660 assert( (pOther->szPage & (pOther->szPage-1))==0 && pOther->szPage>=512 );
40661 assert( pOther->szExtra<512 );
40663 if( pOther->szPage+pOther->szExtra != pCache->szPage+pCache->szExtra ){
40667 pGroup->nCurrentPage -= (pOther->bPurgeable - pCache->bPurgeable);
94112 Index *pOther = pTab->pIndex;
94113 while( pOther->pNext && pOther->pNext->onError!=OE_Replace ){
94114 pOther = pOther->pNext;
94116 pIndex->pNext = pOther->pNext;
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c40631 PCache1 *pOther;
40636 pOther = pPage->pCache;
40642 assert( (pOther->szPage & (pOther->szPage-1))==0 && pOther->szPage>=512 );
40643 assert( pOther->szExtra<512 );
40645 if( pOther->szPage+pOther->szExtra != pCache->szPage+pCache->szExtra ){
40649 pGroup->nCurrentPage -= (pOther->bPurgeable - pCache->bPurgeable);
94094 Index *pOther = pTab->pIndex;
94095 while( pOther->pNext && pOther->pNext->onError!=OE_Replace ){
94096 pOther = pOther->pNext;
94098 pIndex->pNext = pOther->pNext;
[all …]