HomeSort by relevance Sort by last modified time
    Searched defs:pAnnot (Results 1 - 9 of 9) 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 73 CPDFSDK_Annot* pAnnot = pFormFiller->GetSDKAnnot();
74 UnderlyingPageType* pPage = pAnnot->GetUnderlyingPage();
cpdfsdk_pageview.cpp 64 for (CPDFSDK_Annot* pAnnot : m_SDKAnnotArray)
65 pAnnotHandlerMgr->ReleaseAnnot(pAnnot);
174 bool CPDFSDK_PageView::DeleteAnnot(CPDFSDK_Annot* pAnnot) {
175 if (!pAnnot)
178 CPDFXFA_Page* pPage = pAnnot->GetPDFXFAPage();
182 CPDFSDK_Annot::ObservedPtr pObserved(pAnnot);
183 if (GetFocusAnnot() == pAnnot)
184 m_pFormFillEnv->KillFocusAnnot(0); // May invoke JS, invalidating pAnnot.
193 auto it = std::find(m_SDKAnnotArray.begin(), m_SDKAnnotArray.end(), pAnnot);
196 if (m_pCaptureWidget.Get() == pAnnot)
    [all...]
fpdfeditpage.cpp 305 CPDF_Annot* pAnnot = AnnotList.GetAt(i);
308 CFX_FloatRect rect = matrix.TransformRect(pAnnot->GetRect());
310 CPDF_Dictionary* pAnnotDict = pAnnot->GetAnnotDict();
fpdfannot.cpp 259 CPDF_AnnotContext* pAnnot = CPDFAnnotContextFromFPDFAnnotation(annot);
260 if (!pPage || !pPage->m_pFormDict || !pAnnot || !pAnnot->GetAnnotDict())
267 CPDF_Dictionary* pDict = pAnnot->GetAnnotDict();
320 CPDF_AnnotContext* pAnnot = CPDFAnnotContextFromFPDFAnnotation(annot);
322 if (!pAnnot || !pAnnot->GetAnnotDict() || !pAnnot->HasForm() || !pObj)
331 CPDF_Stream* pStream = FPDFDOC_GetAnnotAP(pAnnot->GetAnnotDict(),
337 CPDF_Form* pForm = pAnnot->GetForm()
    [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 822 CPDF_Dictionary* pAnnot = pAnnotList->GetDictAt(annot_index);
823 if (!pAnnot)
826 const auto it = m_ControlMap.find(pAnnot);
982 CPDF_Dictionary* pAnnot = pAnnots->GetDictAt(i);
983 if (pAnnot && pAnnot->GetStringFor("Subtype") == "Widget")
984 LoadField(pAnnot, 0);
    [all...]
  /external/pdfium/fpdfsdk/fpdfxfa/
cpdfxfa_docenvironment.cpp 324 CPDFSDK_Annot* pAnnot = pSdkPageView->GetAnnotByXFAWidget(hWidget);
325 if (pAnnot)
326 pSdkPageView->DeleteAnnot(pAnnot);
562 CPDFSDK_Annot::ObservedPtr pAnnot(pPageView->GetAnnotByXFAWidget(hWidget));
563 if (pAnnot) {
564 m_pContext->GetFormFillEnv()->SetFocusAnnot(&pAnnot);
    [all...]
  /external/pdfium/fxjs/
cjs_document.cpp 432 for (const auto& pAnnot : widgets) {
433 CPDFSDK_Widget* pWidget = static_cast<CPDFSDK_Widget*>(pAnnot.Get());
    [all...]

Completed in 648 milliseconds