Home
last modified time | relevance | path

Searched refs:stop (Results 1 – 25 of 32) sorted by relevance

12

/pdf/pdf-viewer/src/main/java/androidx/pdf/data/
DTextSelection.java62 public TextSelection(@NonNull SelectionBoundary start, @NonNull SelectionBoundary stop) { in TextSelection() argument
64 this.mStop = stop; in TextSelection()
105 SelectionBoundary stop = parcel.readParcelable( in createFromParcel() local
109 Objects.requireNonNull(stop, "Stop SelectionBoundary cannot be null"); in createFromParcel()
111 return new TextSelection(start, stop); in createFromParcel()
131 SelectionBoundary stop = SelectionBoundary.CREATOR.createFromParcel(parcel); in createFromParcel() local
134 Objects.requireNonNull(stop, "Stop SelectionBoundary cannot be null"); in createFromParcel()
136 return new TextSelection(start, stop); in createFromParcel()
DListOfList.java50 int stop = indexToFirstValue(index + 1); in get() local
51 Preconditions.checkState(start < stop, "Empty inner lists are not allowed."); in get()
52 return mValues.subList(start, stop); in get()
/pdf/pdf-viewer/src/main/java/androidx/pdf/viewer/
DPdfSelectionModel.java58 @NonNull SelectionBoundary stop) { in updateSelectionAsync() argument
61 mPdfLoader.selectPageText(page, start, stop); in updateSelectionAsync()
/pdf/pdf-viewer/src/main/kotlin/androidx/pdf/content/
DPageSelection.kt35 public val stop: SelectionBoundary, constant in androidx.pdf.content.PageSelection
/pdf/pdf-viewer/src/main/kotlin/androidx/pdf/service/
DPdfPageWrapperPreV.kt70 override fun selectPageText(start: SelectionBoundary, stop: SelectionBoundary): PageSelection? { in selectPageText()
71 return page.selectContent(start, stop) in selectPageText()
DPdfPageWrapperPostV.kt72 override fun selectPageText(start: SelectionBoundary, stop: SelectionBoundary): PageSelection? { in selectPageText()
73 return page.selectContent(start, stop) in selectPageText()
/pdf/pdf-document-service/src/main/kotlin/androidx/pdf/adapter/
DPdfPagePreVAdapter.kt80 override fun selectPageText(start: SelectionBoundary, stop: SelectionBoundary): PageSelection? { in selectPageText()
81 return page.selectContent(start, stop) in selectPageText()
DPdfPageAdapter.kt80 override fun selectPageText(start: SelectionBoundary, stop: SelectionBoundary): PageSelection? { in selectPageText()
81 return page.selectContent(start, stop) in selectPageText()
DPdfPage.kt94 public fun selectPageText(start: SelectionBoundary, stop: SelectionBoundary): PageSelection?
/pdf/pdf-document-service/src/androidTest/kotlin/androidx/pdf/
DSandboxedPdfDocumentTest.kt192 val stop = PointF(120f, 100f) in <lambda>() constant
194 val selection = document.getSelectionBounds(pageNumber, start, stop) in <lambda>()
209 val stop = PointF(200f, 200f) in <lambda>() constant
211 document.getSelectionBounds(pageNumber, start, stop) in <lambda>()
221 val stop = PointF(100f, 100f) // Empty selection in <lambda>() constant
223 val selection = document.getSelectionBounds(pageNumber, start, stop) in <lambda>()
/pdf/pdf-viewer/src/main/java/androidx/pdf/select/
DSelectionModel.java59 @NonNull SelectionBoundary stop) { in updateSelectionAsync() argument
/pdf/pdf-document-service/src/main/kotlin/androidx/pdf/utils/
DcontentExtensions.kt62 stop = stop.toContentClass(), in toContentClass()
/pdf/pdf-viewer/src/main/java/androidx/pdf/models/
DPageSelection.java69 @NonNull SelectionBoundary stop, @NonNull List<Rect> rects, @NonNull String text) { in PageSelection() argument
70 super(start, stop); in PageSelection()
/pdf/pdf-viewer/src/main/java/androidx/pdf/service/
DPdfPageAdapter.java134 @NonNull SelectionBoundary stop) { in selectPageText() argument
136 return mPdfRendererPage.selectContent(start, stop); in selectPageText()
138 return checkAndExecute(() -> mPdfRendererPreVPage.selectContent(start, stop)); in selectPageText()
DPdfDocument.java96 SelectionBoundary stop) { in selectPageText() argument
/pdf/pdf-viewer/src/main/kotlin/androidx/pdf/view/
DSelectionModel.kt76 requireNotNull(pageSelection.stop.point) { "PageSelection is missing end point" } in fromSinglePageSelection()
91 pageSelection.stop.isRtl in fromSinglePageSelection()
/pdf/pdf-viewer/api/aidlRelease/current/androidx/pdf/models/
DPdfDocumentRemote.aidl30 …um, in androidx.pdf.models.SelectionBoundary start, in androidx.pdf.models.SelectionBoundary stop); in selectPageText() argument
DPdfDocumentProvider.aidl44 …election.SelectionBoundary start, in android.graphics.pdf.models.selection.SelectionBoundary stop); in selectPageText() argument
/pdf/pdf-document-service/src/main/kotlin/androidx/pdf/service/
DPdfDocumentRemoteImpl.kt108 stop: SelectionBoundary in <lambda>()
110 return withPage(pageNum) { page -> page.selectPageText(start, stop) } in <lambda>()
/pdf/pdf-document-service/api/aidlRelease/current/androidx/pdf/
DPdfDocumentRemote.aidl44 …election.SelectionBoundary start, in android.graphics.pdf.models.selection.SelectionBoundary stop); in selectPageText() argument
/pdf/pdf-viewer/src/main/stableAidl/androidx/pdf/models/
DPdfDocumentRemote.aidl31 … PageSelection selectPageText(int pageNum, in SelectionBoundary start, in SelectionBoundary stop); in selectPageText() argument
DPdfDocumentProvider.aidl111 … PageSelection selectPageText(int pageNum, in SelectionBoundary start, in SelectionBoundary stop); in selectPageText() argument
/pdf/pdf-document-service/src/main/stableAidl/androidx/pdf/
DPdfDocumentRemote.aidl111 … PageSelection selectPageText(int pageNum, in SelectionBoundary start, in SelectionBoundary stop); in selectPageText() argument
/pdf/pdf-viewer/src/main/java/androidx/pdf/viewer/loader/
DPdfPageLoader.java215 public void selectPageText(@NonNull SelectionBoundary start, @NonNull SelectionBoundary stop) { in selectPageText() argument
219 if (Objects.equals(start, stop)) { in selectPageText()
226 mSelectionTask = new SelectionTask(start, stop); in selectPageText()
568 SelectionTask(SelectionBoundary start, SelectionBoundary stop) { in SelectionTask() argument
571 this.mStop = stop; in SelectionTask()
/pdf/pdf-document-service/src/main/kotlin/androidx/pdf/
DSandboxedPdfDocument.kt133 stop: PointF in <lambda>()
139 SelectionBoundary(point = Point(stop.x.toInt(), stop.y.toInt())).toAndroidClass() in <lambda>()

12