Home
last modified time | relevance | path

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

/packages/providers/MediaProvider/pdf/framework/libs/pdfClient/utils/
Dannot.cc35 const int annot_flags = FPDFAnnot_GetFlags(annot.get()); in GetVisibleAnnots() local
37 if ((annot_flags & FPDF_ANNOT_FLAG_HIDDEN) == FPDF_ANNOT_FLAG_NONE) { in GetVisibleAnnots()
51 const int annot_flags = FPDFAnnot_GetFlags(annot.get()); in GetVisibleAnnotsOfType() local
53 if ((annot_flags & FPDF_ANNOT_FLAG_HIDDEN) == FPDF_ANNOT_FLAG_NONE) { in GetVisibleAnnotsOfType()
62 const int annot_flags = FPDFAnnot_GetFlags(annot.get()); in HideAnnots() local
63 FPDFAnnot_SetFlags(annot.get(), annot_flags | FPDF_ANNOT_FLAG_HIDDEN); in HideAnnots()
69 const int annot_flags = FPDFAnnot_GetFlags(annot.get()); in UnhideAnnots() local
70 FPDFAnnot_SetFlags(annot.get(), annot_flags & ~FPDF_ANNOT_FLAG_HIDDEN); in UnhideAnnots()