Searched defs:documentPtr (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfDocument.cpp125 static jlong nativeStartPage(JNIEnv* env, jobject thiz, jlong documentPtr, argument
128 PdfDocument* document = reinterpret_cast<PdfDocument*>(documentPtr);
134 static void nativeFinishPage(JNIEnv* env, jobject thiz, jlong documentPtr) { argument
135 PdfDocument* document = reinterpret_cast<PdfDocument*>(documentPtr);
139 static void nativeWriteTo(JNIEnv* env, jobject thiz, jlong documentPtr, jobject out, argument
141 PdfDocument* document = reinterpret_cast<PdfDocument*>(documentPtr);
147 static void nativeClose(JNIEnv* env, jobject thiz, jlong documentPtr) { argument
148 PdfDocument* document = reinterpret_cast<PdfDocument*>(documentPtr);
H A DPdfRenderer.cpp104 static jlong nativeOpenPageAndGetSize(JNIEnv* env, jclass thiz, jlong documentPtr, argument
106 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
138 static void nativeClose(JNIEnv* env, jclass thiz, jlong documentPtr) { argument
139 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
144 static jint nativeGetPageCount(JNIEnv* env, jclass thiz, jlong documentPtr) { argument
145 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
149 static jboolean nativeScaleForPrinting(JNIEnv* env, jclass thiz, jlong documentPtr) { argument
150 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
241 static void nativeRenderPage(JNIEnv* env, jclass thiz, jlong documentPtr, jlong pagePtr, argument
H A DPdfEditor.cpp112 static void nativeClose(JNIEnv* env, jclass thiz, jlong documentPtr) { argument
113 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
118 static jint nativeGetPageCount(JNIEnv* env, jclass thiz, jlong documentPtr) { argument
119 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
123 static jint nativeRemovePage(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex) { argument
124 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
162 static void nativeWrite(JNIEnv* env, jclass thiz, jlong documentPtr, jint fd) { argument
163 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
175 static void nativeSetTransformAndClip(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, argument
177 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
227 nativeGetPageSize(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject outSize) argument
254 nativeScaleForPrinting(JNIEnv* env, jclass thiz, jlong documentPtr) argument
260 nativeGetPageBox(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, PageBox pageBox, jobject outBox) argument
294 nativeGetPageMediaBox(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject outMediaBox) argument
301 nativeGetPageCropBox(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject outMediaBox) argument
308 nativeSetPageBox(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, PageBox pageBox, jobject box) argument
333 nativeSetPageMediaBox(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject mediaBox) argument
338 nativeSetPageCropBox(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject mediaBox) argument
[all...]
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfEditor.java340 private static native void nativeClose(long documentPtr); argument
341 private static native int nativeGetPageCount(long documentPtr); argument
342 private static native int nativeRemovePage(long documentPtr, int pageIndex); argument
343 private static native void nativeWrite(long documentPtr, int fd); argument
344 private static native void nativeSetTransformAndClip(long documentPtr, int pageIndex, argument
346 private static native void nativeGetPageSize(long documentPtr, int pageIndex, Point outSize); argument
347 private static native boolean nativeGetPageMediaBox(long documentPtr, int pageIndex, argument
349 private static native void nativeSetPageMediaBox(long documentPtr, int pageIndex, argument
351 private static native boolean nativeGetPageCropBox(long documentPtr, int pageIndex, argument
353 private static native void nativeSetPageCropBox(long documentPtr, in argument
355 nativeScaleForPrinting(long documentPtr) argument
[all...]
H A DPdfRenderer.java450 private static native void nativeClose(long documentPtr); argument
451 private static native int nativeGetPageCount(long documentPtr); argument
452 private static native boolean nativeScaleForPrinting(long documentPtr); argument
453 private static native void nativeRenderPage(long documentPtr, long pagePtr, Bitmap dest, argument
455 private static native long nativeOpenPageAndGetSize(long documentPtr, int pageIndex, argument

Completed in 501 milliseconds