[go: nahoru, domu]

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.cpp107 static jlong nativeOpenPageAndGetSize(JNIEnv* env, jclass thiz, jlong documentPtr, argument
109 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
141 static void nativeClose(JNIEnv* env, jclass thiz, jlong documentPtr) { argument
142 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
147 static jint nativeGetPageCount(JNIEnv* env, jclass thiz, jlong documentPtr) { argument
148 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
152 static jboolean nativeScaleForPrinting(JNIEnv* env, jclass thiz, jlong documentPtr) { argument
153 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
244 static void nativeRenderPage(JNIEnv* env, jclass thiz, jlong documentPtr, jlong pagePtr, argument
H A DPdfEditor.cpp115 static void nativeClose(JNIEnv* env, jclass thiz, jlong documentPtr) { argument
116 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
121 static jint nativeGetPageCount(JNIEnv* env, jclass thiz, jlong documentPtr) { argument
122 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
126 static jint nativeRemovePage(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex) { argument
127 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
165 static void nativeWrite(JNIEnv* env, jclass thiz, jlong documentPtr, jint fd) { argument
166 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
178 static void nativeSetTransformAndClip(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, argument
180 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
230 nativeGetPageSize(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject outSize) argument
257 nativeScaleForPrinting(JNIEnv* env, jclass thiz, jlong documentPtr) argument
263 nativeGetPageBox(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, PageBox pageBox, jobject outBox) argument
297 nativeGetPageMediaBox(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject outMediaBox) argument
304 nativeGetPageCropBox(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject outMediaBox) argument
311 nativeSetPageBox(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, PageBox pageBox, jobject box) argument
336 nativeSetPageMediaBox(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject mediaBox) argument
341 nativeSetPageCropBox(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject mediaBox) argument
[all...]
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfEditor.java305 private static native void nativeClose(long documentPtr); argument
306 private static native int nativeGetPageCount(long documentPtr); argument
307 private static native int nativeRemovePage(long documentPtr, int pageIndex); argument
308 private static native void nativeWrite(long documentPtr, int fd); argument
309 private static native void nativeSetTransformAndClip(long documentPtr, int pageIndex, argument
311 private static native void nativeGetPageSize(long documentPtr, int pageIndex, Point outSize); argument
312 private static native boolean nativeGetPageMediaBox(long documentPtr, int pageIndex, argument
314 private static native void nativeSetPageMediaBox(long documentPtr, int pageIndex, argument
316 private static native boolean nativeGetPageCropBox(long documentPtr, int pageIndex, argument
318 private static native void nativeSetPageCropBox(long documentPtr, in argument
320 nativeScaleForPrinting(long documentPtr) argument
[all...]
H A DPdfRenderer.java429 private static native void nativeClose(long documentPtr); argument
430 private static native int nativeGetPageCount(long documentPtr); argument
431 private static native boolean nativeScaleForPrinting(long documentPtr); argument
432 private static native void nativeRenderPage(long documentPtr, long pagePtr, Bitmap dest, argument
434 private static native long nativeOpenPageAndGetSize(long documentPtr, int pageIndex, argument

Completed in 154 milliseconds