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.cpp195 FX_BOOL CPDF_Object::IsIdentical(CPDF_Object* pOther) const { in IsIdentical()
196 if (this == pOther) in IsIdentical()
198 if (!pOther) in IsIdentical()
200 if (pOther->m_Type != m_Type) { in IsIdentical()
202 return GetDirect()->IsIdentical(pOther); in IsIdentical()
203 if (pOther->IsReference()) in IsIdentical()
204 return IsIdentical(pOther->GetDirect()); in IsIdentical()
209 return AsBoolean()->Identical(pOther->AsBoolean()); in IsIdentical()
211 return AsNumber()->Identical(pOther->AsNumber()); in IsIdentical()
213 return AsString()->Identical(pOther->AsString()); in IsIdentical()
[all …]
/external/pdfium/core/include/fpdfapi/
Dfpdf_objects.h146 FX_BOOL Identical(CPDF_Boolean* pOther) const { in Identical() argument
147 return m_bValue == pOther->m_bValue; in Identical()
171 FX_BOOL Identical(CPDF_Number* pOther) const;
221 FX_BOOL Identical(CPDF_String* pOther) const { in Identical() argument
222 return m_String == pOther->m_String; in Identical()
251 FX_BOOL Identical(CPDF_Name* pOther) const { in Identical() argument
252 return m_Name == pOther->m_Name; in Identical()
326 FX_BOOL Identical(CPDF_Array* pOther) const;
466 FX_BOOL Identical(CPDF_Stream* pOther) const;
563 FX_BOOL Identical(CPDF_Reference* pOther) const { in Identical() argument
[all …]
/external/pdfium/core/src/fpdftext/
Dfpdf_text.cpp545 FX_BOOL CTextBaseLine::CanMerge(CTextBaseLine* pOther) { in CanMerge() argument
547 if (!GetIntersection(m_Bottom, m_Top, pOther->m_Bottom, pOther->m_Top, in CanMerge()
553 inter_h < (pOther->m_Top - pOther->m_Bottom) / 2) { in CanMerge()
556 FX_FLOAT dy = (FX_FLOAT)FXSYS_fabs(m_BaseLine - pOther->m_BaseLine); in CanMerge()
559 for (int j = 0; j < pOther->m_TextList.GetSize(); j++) { in CanMerge()
560 CTextBox* pOtherText = pOther->m_TextList.GetAt(j); in CanMerge()
579 void CTextBaseLine::Merge(CTextBaseLine* pOther) { in Merge() argument
580 for (int i = 0; i < pOther->m_TextList.GetSize(); i++) { in Merge()
581 CTextBox* pText = pOther->m_TextList.GetAt(i); in Merge()
Dtxtproc.h39 FX_BOOL CanMerge(CTextBaseLine* pOther);
40 void Merge(CTextBaseLine* pOther);
/external/sqlite/dist/
Dsqlite3.c41994 PCache1 *pOther;
41999 pOther = pPage->pCache;
42000 if( pOther->szAlloc != pCache->szAlloc ){
42004 pGroup->nCurrentPage -= (pOther->bPurgeable - pCache->bPurgeable);
96178 Index *pOther = pTab->pIndex;
96179 while( pOther->pNext && pOther->pNext->onError!=OE_Replace ){
96180 pOther = pOther->pNext;
96182 pIndex->pNext = pOther->pNext;
96183 pOther->pNext = pIndex;
97523 FuncDef *pOther;
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c41976 PCache1 *pOther;
41981 pOther = pPage->pCache;
41982 if( pOther->szAlloc != pCache->szAlloc ){
41986 pGroup->nCurrentPage -= (pOther->bPurgeable - pCache->bPurgeable);
96160 Index *pOther = pTab->pIndex;
96161 while( pOther->pNext && pOther->pNext->onError!=OE_Replace ){
96162 pOther = pOther->pNext;
96164 pIndex->pNext = pOther->pNext;
96165 pOther->pNext = pIndex;
97505 FuncDef *pOther;
[all …]