Home
last modified time | relevance | path

Searched refs:annotationIndex (Results 1 – 5 of 5) sorted by relevance

/packages/providers/MediaProvider/pdf/framework/libs/pdfClient/
Dpdf_document_jni.h106 JNIEnv* env, jobject jPdfDocument, jint pageNum, jint annotationIndex, jstring jText);
109 JNIEnv* env, jobject jPdfDocument, jint pageNum, jint annotationIndex,
Dpdf_document_jni.cc402 JNIEnv* env, jobject jPdfDocument, jint pageNum, jint annotationIndex, jstring jText) { in Java_android_graphics_pdf_PdfDocumentProxy_setFormFieldText() argument
408 bool set = page->SetFormFieldText(annotationIndex, text); in Java_android_graphics_pdf_PdfDocumentProxy_setFormFieldText()
428 JNIEnv* env, jobject jPdfDocument, jint pageNum, jint annotationIndex, in Java_android_graphics_pdf_PdfDocumentProxy_setFormFieldSelectedIndices() argument
435 bool set = page->SetChoiceSelection(annotationIndex, selected_indices); in Java_android_graphics_pdf_PdfDocumentProxy_setFormFieldSelectedIndices()
/packages/providers/MediaProvider/pdf/framework/java/android/graphics/pdf/
DPdfRendererPreV.java556 public FormWidgetInfo getFormWidgetInfoAtIndex(@IntRange(from = 0) int annotationIndex) { in getFormWidgetInfoAtIndex()
559 return mPdfProcessor.getFormWidgetInfoAtIndex(mIndex, annotationIndex); in getFormWidgetInfoAtIndex()
DPdfDocumentProxy.java224 public native FormWidgetInfo getFormWidgetInfo(int pageNum, int annotationIndex); in getFormWidgetInfo() argument
DPdfProcessor.java443 FormWidgetInfo getFormWidgetInfoAtIndex(int pageNum, int annotationIndex) { in getFormWidgetInfoAtIndex() argument
446 FormWidgetInfo result = mPdfDocument.getFormWidgetInfo(pageNum, annotationIndex); in getFormWidgetInfoAtIndex()