Home
last modified time | relevance | path

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

/external/pdfium/core/src/reflow/
Dreflowedtextpage.h42 int GetIndexAtPos(CPDF_Point point, FX_FLOAT xTorelance, FX_FLOAT yTorelance) const;
44 int GetIndexAtPos(FX_FLOAT x, FX_FLOAT y, FX_FLOAT xTorelance, FX_FLOAT yTorelance) const;
Dreflowedtextpage.cpp175 int CRF_TextPage::GetIndexAtPos(CPDF_Point point, FX_FLOAT xTorelance, FX_FLOAT yTorelance) const in GetIndexAtPos() function in CRF_TextPage
200 int CRF_TextPage::GetIndexAtPos(FX_FLOAT x, FX_FLOAT y, FX_FLOAT xTorelance, FX_FLOAT yTorelance) c… in GetIndexAtPos() function in CRF_TextPage
204 if((index = GetIndexAtPos(point, xTorelance, yTorelance)) < 0) { in GetIndexAtPos()
/external/pdfium/core/include/fpdftext/
Dfpdf_text.h99 …virtual int GetIndexAtPos(CPDF_Point point, FX_FLOAT xTorelance, FX_FLOAT yTorelance) const = 0;
101 …virtual int GetIndexAtPos(FX_FLOAT x, FX_FLOAT y, FX_FLOAT xTorelance, FX_FLOAT yTorelance) con…
/external/pdfium/core/src/fpdftext/
Dtext_int.h72 … virtual int GetIndexAtPos(CPDF_Point point, FX_FLOAT xTorelance, FX_FLOAT yTorelance) const;
73 virtual int GetIndexAtPos(FX_FLOAT x, FX_FLOAT y, FX_FLOAT xTorelance,
Dfpdf_text_int.cpp352 int CPDF_TextPage::GetIndexAtPos(CPDF_Point point , FX_FLOAT xTorelance, FX_FLOAT yTorelance) const in GetIndexAtPos() function in CPDF_TextPage
483 int CPDF_TextPage::GetIndexAtPos(FX_FLOAT x, FX_FLOAT y, FX_FLOAT xTorelance, FX_FLOAT yTorelance) … in GetIndexAtPos() function in CPDF_TextPage
489 return GetIndexAtPos(point, xTorelance, yTorelance); in GetIndexAtPos()
/external/pdfium/fpdfsdk/src/
Dfpdftext.cpp83 return textpage->GetIndexAtPos((FX_FLOAT)x,(FX_FLOAT)y,(FX_FLOAT)xTorelance,(FX_FLOAT)yTorelance); in FPDFText_GetCharIndexAtPos()