Searched defs:page_x (Results 1 - 3 of 3) sorted by relevance

/external/pdfium/fpdfsdk/src/
H A Dfpdfformfill.cpp16 DLLEXPORT int STDCALL FPDPage_HasFormFieldAtPoint(FPDF_FORMHANDLE hHandle, FPDF_PAGE page,double page_x, double page_y) argument
26 CPDF_FormControl* pFormCtrl = pInterForm->GetControlAtPoint(pPage, (FX_FLOAT)page_x, (FX_FLOAT)page_y);
78 DLLEXPORT FPDF_BOOL STDCALL FORM_OnMouseMove(FPDF_FORMHANDLE hHandle, FPDF_PAGE page, int modifier, double page_x, double page_y) argument
92 // double page_x = 0;
94 // pEnv->FFI_DeviceToPage(page, point_x, point_y, &page_x, &page_y);
95 CPDF_Point pt((FX_FLOAT)page_x, (FX_FLOAT)page_y);
99 DLLEXPORT FPDF_BOOL STDCALL FORM_OnLButtonDown(FPDF_FORMHANDLE hHandle, FPDF_PAGE page, int modifier, double page_x, double page_y) argument
109 // double page_x = 0;
111 // pEnv->FFI_DeviceToPage(page, point_x, point_y, &page_x, &page_y);
112 CPDF_Point pt((FX_FLOAT)page_x, (FX_FLOA
116 FORM_OnLButtonUp(FPDF_FORMHANDLE hHandle, FPDF_PAGE page, int modifier, double page_x, double page_y) argument
[all...]
H A Dfpdfview.cpp670 int rotate, int device_x, int device_y, double* page_x, double* page_y)
672 if (page == NULL || page_x == NULL || page_y == NULL) return;
683 *page_x = (page_x_f);
688 int rotate, double page_x, double page_y, int* device_x, int* device_y)
697 page2device.Transform(((FX_FLOAT)page_x), ((FX_FLOAT)page_y), device_x_f, device_y_f);
669 FPDF_DeviceToPage(FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y, int rotate, int device_x, int device_y, double* page_x, double* page_y) argument
687 FPDF_PageToDevice(FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y, int rotate, double page_x, double page_y, int* device_x, int* device_y) argument
/external/chromium_org/pdf/pdfium/
H A Dpdfium_engine.cc1342 double page_x, page_y; local
1344 DeviceToPage(page_index, point.x(), point.y(), &page_x, &page_y);
1346 FORM_OnLButtonDown(form_, pages_[page_index]->GetPage(), 0, page_x, page_y);
1348 form_, pages_[page_index]->GetPage(), page_x, page_y);
1425 double page_x, page_y; local
1427 DeviceToPage(page_index, point.x(), point.y(), &page_x, &page_y);
1429 form_, pages_[page_index]->GetPage(), 0, page_x, page_y);
1468 double page_x, page_y; local
1470 DeviceToPage(page_index, point.x(), point.y(), &page_x, &page_y);
1472 FORM_OnMouseMove(form_, pages_[page_index]->GetPage(), 0, page_x, page_
2794 DeviceToPage(int page_index, float device_x, float device_y, double* page_x, double* page_y) argument
[all...]

Completed in 369 milliseconds