| /pdf/pdf-viewer/src/main/java/androidx/pdf/data/ |
| D | TextSelection.java | 62 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()
|
| D | ListOfList.java | 50 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/ |
| D | PdfSelectionModel.java | 58 @NonNull SelectionBoundary stop) { in updateSelectionAsync() argument 61 mPdfLoader.selectPageText(page, start, stop); in updateSelectionAsync()
|
| /pdf/pdf-viewer/src/main/kotlin/androidx/pdf/content/ |
| D | PageSelection.kt | 35 public val stop: SelectionBoundary, constant in androidx.pdf.content.PageSelection
|
| /pdf/pdf-viewer/src/main/kotlin/androidx/pdf/service/ |
| D | PdfPageWrapperPreV.kt | 70 override fun selectPageText(start: SelectionBoundary, stop: SelectionBoundary): PageSelection? { in selectPageText() 71 return page.selectContent(start, stop) in selectPageText()
|
| D | PdfPageWrapperPostV.kt | 72 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/ |
| D | PdfPagePreVAdapter.kt | 80 override fun selectPageText(start: SelectionBoundary, stop: SelectionBoundary): PageSelection? { in selectPageText() 81 return page.selectContent(start, stop) in selectPageText()
|
| D | PdfPageAdapter.kt | 80 override fun selectPageText(start: SelectionBoundary, stop: SelectionBoundary): PageSelection? { in selectPageText() 81 return page.selectContent(start, stop) in selectPageText()
|
| D | PdfPage.kt | 94 public fun selectPageText(start: SelectionBoundary, stop: SelectionBoundary): PageSelection?
|
| /pdf/pdf-document-service/src/androidTest/kotlin/androidx/pdf/ |
| D | SandboxedPdfDocumentTest.kt | 192 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/ |
| D | SelectionModel.java | 59 @NonNull SelectionBoundary stop) { in updateSelectionAsync() argument
|
| /pdf/pdf-document-service/src/main/kotlin/androidx/pdf/utils/ |
| D | contentExtensions.kt | 62 stop = stop.toContentClass(), in toContentClass()
|
| /pdf/pdf-viewer/src/main/java/androidx/pdf/models/ |
| D | PageSelection.java | 69 @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/ |
| D | PdfPageAdapter.java | 134 @NonNull SelectionBoundary stop) { in selectPageText() argument 136 return mPdfRendererPage.selectContent(start, stop); in selectPageText() 138 return checkAndExecute(() -> mPdfRendererPreVPage.selectContent(start, stop)); in selectPageText()
|
| D | PdfDocument.java | 96 SelectionBoundary stop) { in selectPageText() argument
|
| /pdf/pdf-viewer/src/main/kotlin/androidx/pdf/view/ |
| D | SelectionModel.kt | 76 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/ |
| D | PdfDocumentRemote.aidl | 30 …um, in androidx.pdf.models.SelectionBoundary start, in androidx.pdf.models.SelectionBoundary stop); in selectPageText() argument
|
| D | PdfDocumentProvider.aidl | 44 …election.SelectionBoundary start, in android.graphics.pdf.models.selection.SelectionBoundary stop); in selectPageText() argument
|
| /pdf/pdf-document-service/src/main/kotlin/androidx/pdf/service/ |
| D | PdfDocumentRemoteImpl.kt | 108 stop: SelectionBoundary in <lambda>() 110 return withPage(pageNum) { page -> page.selectPageText(start, stop) } in <lambda>()
|
| /pdf/pdf-document-service/api/aidlRelease/current/androidx/pdf/ |
| D | PdfDocumentRemote.aidl | 44 …election.SelectionBoundary start, in android.graphics.pdf.models.selection.SelectionBoundary stop); in selectPageText() argument
|
| /pdf/pdf-viewer/src/main/stableAidl/androidx/pdf/models/ |
| D | PdfDocumentRemote.aidl | 31 … PageSelection selectPageText(int pageNum, in SelectionBoundary start, in SelectionBoundary stop); in selectPageText() argument
|
| D | PdfDocumentProvider.aidl | 111 … PageSelection selectPageText(int pageNum, in SelectionBoundary start, in SelectionBoundary stop); in selectPageText() argument
|
| /pdf/pdf-document-service/src/main/stableAidl/androidx/pdf/ |
| D | PdfDocumentRemote.aidl | 111 … PageSelection selectPageText(int pageNum, in SelectionBoundary start, in SelectionBoundary stop); in selectPageText() argument
|
| /pdf/pdf-viewer/src/main/java/androidx/pdf/viewer/loader/ |
| D | PdfPageLoader.java | 215 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/ |
| D | SandboxedPdfDocument.kt | 133 stop: PointF in <lambda>() 139 SelectionBoundary(point = Point(stop.x.toInt(), stop.y.toInt())).toAndroidClass() in <lambda>()
|