Home
last modified time | relevance | path

Searched defs:page (Results 1 – 25 of 63) sorted by relevance

123

/packages/providers/MediaProvider/pdf/framework/libs/pdfClient/
Dform_filler.cc103 bool FormFiller::RenderTile(FPDF_PAGE page, FPDF_BITMAP bitmap, FS_MATRIX transform, FS_RECTF clip, in RenderTile()
113 void FormFiller::NotifyAfterPageLoad(FPDF_PAGE page) { in NotifyAfterPageLoad()
117 void FormFiller::NotifyBeforePageClose(FPDF_PAGE page) { in NotifyBeforePageClose()
121 FormWidgetInfo FormFiller::GetFormWidgetInfo(FPDF_PAGE page, const Point_d point) { in GetFormWidgetInfo()
126 FormWidgetInfo FormFiller::GetFormWidgetInfo(FPDF_PAGE page, const int annotation_index) { in GetFormWidgetInfo()
131 FormWidgetInfo FormFiller::GetFormWidgetInfo(FPDF_PAGE page, FPDF_ANNOTATION annotation) { in GetFormWidgetInfo()
193 void FormFiller::GetFormWidgetInfos(FPDF_PAGE page, const std::unordered_set<int>& type_ids, in GetFormWidgetInfos()
215 bool FormFiller::ClickOnPoint(FPDF_PAGE page, const Point_d point) { in ClickOnPoint()
234 bool FormFiller::SetText(FPDF_PAGE page, const int annotation_index, const std::string_view text) { in SetText()
258 bool FormFiller::SetChoiceSelection(FPDF_PAGE page, const int annotation_index, in SetChoiceSelection()
[all …]
Dpage_test.cc67 std::shared_ptr<Page> page = doc.GetPage(0); in TEST() local
83 std::shared_ptr<Page> page = doc.GetPage(0); in TEST() local
101 std::shared_ptr<Page> page = doc.GetPage(0); in TEST() local
120 std::shared_ptr<Page> page = doc.GetPage(0); in TEST() local
135 std::shared_ptr<Page> page = doc.GetPage(0); in TEST() local
149 std::shared_ptr<Page> page = doc.GetPage(0); in TEST() local
Dpdf_document_jni.cc124 std::shared_ptr<Page> page = doc->GetPage(pageNum); in Java_android_graphics_pdf_PdfDocumentProxy_getPageDimensions() local
138 std::shared_ptr<Page> page = doc->GetPage(pageNum); in Java_android_graphics_pdf_PdfDocumentProxy_getPageWidth() local
147 std::shared_ptr<Page> page = doc->GetPage(pageNum); in Java_android_graphics_pdf_PdfDocumentProxy_getPageHeight() local
182 std::shared_ptr<Page> page = doc->GetPage(pageNum); in Java_android_graphics_pdf_PdfDocumentProxy_render() local
204 std::shared_ptr<Page> page = doc->GetPage(pageNum); in Java_android_graphics_pdf_PdfDocumentProxy_getPageText() local
214 std::shared_ptr<Page> page = doc->GetPage(pageNum); in Java_android_graphics_pdf_PdfDocumentProxy_getPageAltText() local
225 std::shared_ptr<Page> page = doc->GetPage(pageNum); in Java_android_graphics_pdf_PdfDocumentProxy_searchPageText() local
242 std::shared_ptr<Page> page = doc->GetPage(pageNum); in Java_android_graphics_pdf_PdfDocumentProxy_selectPageText() local
274 std::shared_ptr<Page> page = doc->GetPage(pageNum); in Java_android_graphics_pdf_PdfDocumentProxy_getPageLinks() local
287 std::shared_ptr<Page> page = doc->GetPage(pageNum); in Java_android_graphics_pdf_PdfDocumentProxy_getPageGotoLinks() local
[all …]
Dtext_test.cc73 std::shared_ptr<Page> page = doc.GetPage(0); in TEST() local
99 std::shared_ptr<Page> page = doc.GetPage(0); in TEST() local
121 std::shared_ptr<Page> page = doc.GetPage(0); in TEST() local
144 std::shared_ptr<Page> page = doc.GetPage(0); in TEST() local
190 std::shared_ptr<Page> page = doc.GetPage(0); in TEST() local
Ddocument.cc114 auto page = std::make_shared<Page>(document_.get(), pageNum, &form_filler_); in GetPage() local
125 void Document::NotifyInvalidRect(FPDF_PAGE page, Rectangle_i rect) { in NotifyInvalidRect()
136 std::shared_ptr<pdfClient::Page> page = pages_.at(pageNum); in ReleaseRetainedPage() local
DpdfClient_formfillinfo.h24 static void FormInvalidate(FPDF_FORMFILLINFO* pThis, FPDF_PAGE page, double l, double t, double r, in FormInvalidate()
53 static int FormGetRotation(FPDF_FORMFILLINFO* pThis, FPDF_PAGE page) { in FormGetRotation()
Dlinks_test.cc59 std::shared_ptr<Page> page = doc.GetPage(0); in TEST() local
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
DUserChoiceInfo.java67 public void put(@PAGE int page, String info) { in put()
71 public void put(@PAGE int page, int choice) { in put()
82 public boolean choiceChosen(CharSequence choice, @PAGE int page) { in choiceChosen()
89 public Integer getChoice(@PAGE int page) { in getChoice()
102 public String getPageSummary(@PAGE int page) { in getPageSummary()
114 public void removePageSummary(@PAGE int page) { in removePageSummary()
216 public void setVisible(@PAGE int page, boolean visible) { in setVisible()
220 public boolean isVisible(@PAGE int page) { in isVisible()
DAdvancedOptionsFlowInfo.java78 public void put(@PAGE int page, CharSequence info) { in put()
89 public boolean choiceChosen(CharSequence choice, @PAGE int page) { in choiceChosen()
102 public boolean containsPage(@PAGE int page) { in containsPage()
112 public String get(@PAGE int page) { in get()
124 public void remove(@PAGE int page) { in remove()
/packages/providers/MediaProvider/pdf/framework/libs/pdfClient/utils/
Dtext.cc52 std::string FORM_GetFocusedText(FPDF_FORMHANDLE hHandle, FPDF_PAGE page) { in FORM_GetFocusedText()
98 void GetAltTextFromPage(const FPDF_PAGE page, ResultType* result) { in GetAltTextFromPage()
106 void GetAltText(const FPDF_PAGE page, std::vector<std::string>* result) { in GetAltText()
110 void GetAltText(const FPDF_PAGE page, std::unordered_map<int, std::string>* result) { in GetAltText()
Dannot.cc27 void GetVisibleAnnots(FPDF_PAGE page, const std::unordered_set<int>& types_to_exclude, in GetVisibleAnnots()
44 void GetVisibleAnnotsOfType(FPDF_PAGE page, const std::unordered_set<int>& types, in GetVisibleAnnotsOfType()
Dannot_hider.cc24 AnnotHider::AnnotHider(FPDF_PAGE page, const std::unordered_set<int>& types) { in AnnotHider()
/packages/services/BuiltInPrintService/src/com/android/bips/
DImageToPdfTask.java77 PdfDocument.Page page = mDocument.startPage(1); in writeBitmapToDocument() local
87 private void writeBitmapToPage(PdfDocument.Page page, boolean fill) { in writeBitmapToPage()
115 private void drawDirect(PdfDocument.Page page, RectF extent, boolean fill, boolean rotate) { in drawDirect()
141 private void drawOptimized(PdfDocument.Page page, RectF extent, float scale, boolean rotate) { in drawOptimized()
/packages/apps/Settings/tests/perftests/src/com/android/settings/tests/perf/
DLaunchSettingsTest.java166 private String getMax(String page) { in getMax()
175 private String getMin(String page) { in getMin()
183 private String getAvg(String page) { in getAvg()
227 private String getPercentile(String page, double position) { in getPercentile()
/packages/services/BuiltInPrintService/src/com/android/bips/render/
DIPdfRender.aidl36 SizeD getPageSize(int page); in getPageSize()
48 ParcelFileDescriptor renderPageStripe(int page, int y, int width, int height, in renderPageStripe()
/packages/modules/AppSearch/testing/appsindexertests/src/com/android/server/appsearch/appsindexer/
DAppsIndexerManagerServiceTest.java195 List<SearchResult> page = results.getNextPageAsync().get(); in testBootstrapPackages() local
257 List<SearchResult> page = results.getNextPageAsync().get(); in testAddPackage() local
314 List<SearchResult> page = results.getNextPageAsync().get(); in testUpdatePackage() local
375 List<SearchResult> page = results.getNextPageAsync().get(); in testRemovePackage() local
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderPagedView.java166 CellLayout page = (CellLayout) getChildAt(i); in unbindItems() local
262 CellLayout page = mViewCache.getView(R.layout.folder_page, getContext(), this); in createAndAddNewPage() local
309 CellLayout page = (CellLayout) getChildAt(i); in arrangeChildren() local
383 CellLayout page = getPageAt(pageIndex); in findNearestArea() local
420 CellLayout page = getPageAt(k); in iterateOverItems() local
511 CellLayout page = getPageAt(pageNo); in verifyVisibleHighResIcons() local
615 final CellLayout page = getPageAt(p); in realTimeReorder() local
652 CellLayout page = getPageAt(pageToAnimate); in realTimeReorder() local
DFolderGridOrganizer.java159 public <T, R extends T> ArrayList<R> previewItemsForPage(int page, List<T> contents) { in previewItemsForPage()
189 public boolean isItemInPreview(int page, int rank) { in isItemInPreview()
/packages/apps/Launcher3/tests/src/com/android/launcher3/ui/workspace/
DTaplTwoPanelWorkspaceTest.java349 CellLayout page = launcher.getWorkspace().getScreenWithId(pageId); in assertPageEmpty() local
359 CellLayout page = (CellLayout) launcher.getWorkspace().getPageAt(i); in assertPagesExist() local
368 CellLayout page = launcher.getWorkspace().getScreenWithId(pageId); in assertItemsOnPage() local
/packages/services/BuiltInPrintService/src/com/android/bips/jni/
DPdfRender.java126 public SizeD getPageSize(int page) { in getPageSize()
150 public boolean renderPageStripe(int page, int y, int width, int height, in renderPageStripe()
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DWorkProfileManager.java81 public void onActivePageChanged(int page) { in onActivePageChanged()
85 private void updateWorkFAB(int page) { in updateWorkFAB()
/packages/modules/IntentResolver/java/src/com/android/intentresolver/contentpreview/payloadtoggle/domain/interactor/
DCursorPreviewsInteractor.kt180 val page: PreviewMap = buildMap { in <lambda>() constant
183 val page = in <lambda>() constant
235 val page = readPage(this@loadMoreLeft, cursor, pageNum, unclaimedRecords) in <lambda>() constant
/packages/services/BuiltInPrintService/jni/plugins/
Dpdf_render.c60 static int getPageAttributes(pdf_render_ifc_t *obj, int page, double *width, double *height) { in getPageAttributes()
76 static int renderPageStripe(pdf_render_ifc_t *obj, int page, int width, int height, float zoom, in renderPageStripe()
/packages/apps/Launcher3/src/com/android/launcher3/keyboard/
DViewGroupFocusHelper.java95 PagedView page = (PagedView) parent; in computeLocationRelativeToContainer() local
/packages/providers/MediaProvider/pdf/framework/java/android/graphics/pdf/models/jni/
DPageSelection.java51 public PageSelection(int page, SelectionBoundary left, SelectionBoundary right, in PageSelection()

123