Searched refs:annotationIndex (Results 1 – 5 of 5) sorted by relevance
/packages/providers/MediaProvider/pdf/framework/java/android/graphics/pdf/ |
D | PdfProcessor.java | 461 FormWidgetInfo getFormWidgetInfoAtIndex(int pageNum, int annotationIndex) { in getFormWidgetInfoAtIndex() argument 464 FormWidgetInfo result = mPdfDocument.getFormWidgetInfo(pageNum, annotationIndex); in getFormWidgetInfoAtIndex() 652 int annotationIndex = pdfAnnotationsIdManager.getIndexForId(annotationId); in removePageAnnotation() local 653 if (annotationIndex == -1) { in removePageAnnotation() 657 if (!mPdfDocument.removePageAnnotation(pageNum, annotationIndex)) { in removePageAnnotation() 679 int annotationIndex = mPageAnnotationsIdManagerMap.get(pageNum) in updatePageAnnotation() local 681 if (annotationIndex == -1) { in updatePageAnnotation() 685 if (!mPdfDocument.updatePageAnnotation(pageNum, annotationIndex, annotation)) { in updatePageAnnotation()
|
D | PdfDocumentProxy.java | 228 public native FormWidgetInfo getFormWidgetInfo(int pageNum, int annotationIndex); in getFormWidgetInfo() argument 291 @IntRange(from = 0) int annotationIndex); in removePageAnnotation() 303 int annotationIndex, PdfAnnotation annotation); in updatePageAnnotation() argument
|
D | PdfRendererPreV.java | 562 public FormWidgetInfo getFormWidgetInfoAtIndex(@IntRange(from = 0) int annotationIndex) { in getFormWidgetInfoAtIndex() 565 return mPdfProcessor.getFormWidgetInfoAtIndex(mIndex, annotationIndex); in getFormWidgetInfoAtIndex()
|
/packages/providers/MediaProvider/pdf/framework/libs/pdfClient/ |
D | pdf_document_jni.h | 106 JNIEnv* env, jobject jPdfDocument, jint pageNum, jint annotationIndex, jstring jText); 109 JNIEnv* env, jobject jPdfDocument, jint pageNum, jint annotationIndex,
|
D | pdf_document_jni.cc | 404 JNIEnv* env, jobject jPdfDocument, jint pageNum, jint annotationIndex, jstring jText) { in Java_android_graphics_pdf_PdfDocumentProxy_setFormFieldText() argument 410 bool set = page->SetFormFieldText(annotationIndex, text); in Java_android_graphics_pdf_PdfDocumentProxy_setFormFieldText() 430 JNIEnv* env, jobject jPdfDocument, jint pageNum, jint annotationIndex, in Java_android_graphics_pdf_PdfDocumentProxy_setFormFieldSelectedIndices() argument 437 bool set = page->SetChoiceSelection(annotationIndex, selected_indices); in Java_android_graphics_pdf_PdfDocumentProxy_setFormFieldSelectedIndices()
|