HomeSort by relevance Sort by last modified time
    Searched refs:m_pObj (Results 1 - 3 of 3) sorted by null

  /external/pdfium/core/src/fpdfdoc/
doc_basic.cpp 11 if (m_pObj == NULL || m_pObj->GetType() != PDFOBJ_ARRAY) {
14 CPDF_Object* pPage = ((CPDF_Array*)m_pObj)->GetElementValue(0);
28 if (m_pObj == NULL || m_pObj->GetType() != PDFOBJ_ARRAY) {
31 CPDF_Object* pPage = ((CPDF_Array*)m_pObj)->GetElementValue(0);
46 if (m_pObj == NULL || m_pObj->GetType() != PDFOBJ_ARRAY) {
50 CPDF_Object* pObj = ((CPDF_Array*)m_pObj)->GetElementValue(1);
63 if (m_pObj == NULL || m_pObj->GetType() != PDFOBJ_ARRAY)
    [all...]
  /external/pdfium/core/include/fpdfdoc/
fpdf_doc.h 125 CPDF_Dest() : m_pObj(nullptr) { }
126 explicit CPDF_Dest(CPDF_Object* pObj) : m_pObj(pObj) { }
128 operator bool () const { return m_pObj != NULL; }
129 CPDF_Object* GetObject() const { return m_pObj; }
138 CPDF_Object* m_pObj;
493 m_pObj = pObj;
498 return m_pObj;
510 CPDF_Object *m_pObj;
    [all...]
  /external/pdfium/core/include/fxcrt/
fx_basic.h 1394 CFX_SmartPointer(T *pObj) : m_pObj(pObj) {}
1397 m_pObj->Release();
1401 return m_pObj;
1405 return *m_pObj;
1409 return m_pObj;
1412 T *m_pObj;
    [all...]

Completed in 74 milliseconds