HomeSort by relevance Sort by last modified time
    Searched defs:pAnnot (Results 1 - 7 of 7) sorted by null

  /external/pdfium/fpdfsdk/
fsdk_baseform_embeddertest.cpp 49 CPDFSDK_Annot* pAnnot = iter.GetFirstAnnot();
50 CheckRect(pAnnot->GetRect(), RightTop);
51 pAnnot = iter.GetNextAnnot(pAnnot);
52 CheckRect(pAnnot->GetRect(), LeftTop);
53 pAnnot = iter.GetNextAnnot(pAnnot);
54 CheckRect(pAnnot->GetRect(), RightBottom);
55 pAnnot = iter.GetNextAnnot(pAnnot);
    [all...]
cfx_systemhandler.cpp 67 CPDFSDK_Annot* pAnnot = pFormFiller->GetSDKAnnot();
68 UnderlyingPageType* pPage = pAnnot->GetUnderlyingPage();
fpdfeditpage.cpp 288 CPDF_Annot* pAnnot = AnnotList.GetAt(i);
289 CFX_FloatRect rect = pAnnot->GetRect(); // transformAnnots Rectangle
294 CPDF_Array* pRectArray = pAnnot->GetAnnotDict()->GetArrayFor("Rect");
296 pRectArray = pAnnot->GetAnnotDict()->SetNewFor<CPDF_Array>("Rect");
cpdfsdk_pageview.cpp 70 for (CPDFSDK_Annot* pAnnot : m_SDKAnnotArray)
71 pAnnotHandlerMgr->ReleaseAnnot(pAnnot);
181 bool CPDFSDK_PageView::DeleteAnnot(CPDFSDK_Annot* pAnnot) {
182 if (!pAnnot)
184 CPDFXFA_Page* pPage = pAnnot->GetPDFXFAPage();
189 if (GetFocusAnnot() == pAnnot)
193 pAnnotHandler->ReleaseAnnot(pAnnot);
195 auto it = std::find(m_SDKAnnotArray.begin(), m_SDKAnnotArray.end(), pAnnot);
198 if (m_pCaptureWidget.Get() == pAnnot)
225 for (CPDFSDK_Annot* pAnnot : m_SDKAnnotArray)
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_linklist.cpp 41 CPDF_Dictionary* pAnnot = (*pPageLinkList)[annot_index];
42 if (!pAnnot)
45 CPDF_Link link(pAnnot);
63 CPDF_Dictionary* pAnnot = pAnnotList->GetDictAt(i);
64 bool add_link = (pAnnot && pAnnot->GetStringFor("Subtype") == "Link");
66 pList->push_back(add_link ? pAnnot : nullptr);
cpdf_interform.cpp 912 CPDF_Dictionary* pAnnot = pAnnotList->GetDictAt(annot_index);
913 if (!pAnnot)
916 const auto it = m_ControlMap.find(pAnnot);
1072 CPDF_Dictionary* pAnnot = pAnnots->GetDictAt(i);
1073 if (pAnnot && pAnnot->GetStringFor("Subtype") == "Widget")
1074 LoadField(pAnnot, 0);
    [all...]
  /external/pdfium/fpdfsdk/javascript/
Document.cpp 495 for (const auto& pAnnot : widgets) {
496 CPDFSDK_Widget* pWidget = static_cast<CPDFSDK_Widget*>(pAnnot.Get());
    [all...]

Completed in 98 milliseconds