Home
last modified time | relevance | path

Searched defs:nativeInstance (Results 1 – 25 of 325) sorted by relevance

12345678910>>...13

/aosp_15_r20/external/skia/platform_tools/android/apps/jetski/src/main/java/org/skia/jetski/
H A DCanvas.java138 private static native int nGetWidth(long nativeInstance); in nGetWidth()
139 private static native int nGetHeight(long nativeInstance); in nGetHeight()
140 private static native int nSave(long nativeInstance); in nSave()
141 private static native void nRestore(long nativeInstance); in nRestore()
142 private static native void nRestoreToCount(long nativeInstance, int count); in nRestoreToCount()
143 private static native int nSaveLayer(long nativeInstance, long nativePaint); in nSaveLayer()
145 private static native void nConcat(long nativeInstance, long nativeMatrix); in nConcat()
146 private static native void nConcat16f(long nativeInstance, float[] floatMatrix); in nConcat16f()
147 private static native void nTranslate(long nativeInstance, float tx, float ty, float tz); in nTranslate()
148 private static native void nScale(long nativeInstance, float sx, float sy, float sz); in nScale()
[all …]
H A DPaint.java107 private static native void nRelease(long nativeInstance); in nRelease()
109 private static native void nSetColor(long nativeInstance, float r, float g, float b, float a); in nSetColor()
110 private static native void nSetStroke(long nativeInstance, boolean stroke); in nSetStroke()
111 private static native void nSetStrokeWidth(long nativeInstance, float w); in nSetStrokeWidth()
112 private static native void nSetStrokeCap(long nativeInstance, int native_cap); in nSetStrokeCap()
113 private static native void nSetStrokeJoin(long nativeInstance, int native_join); in nSetStrokeJoin()
114 private static native void nSetStrokeMiter(long nativeInstance, float limit); in nSetStrokeMiter()
115 private static native void nSetColorFilter(long nativeInstance, long nativeCF); in nSetColorFilter()
116 private static native void nSetShader(long nativeInstance, long nativeShader); in nSetShader()
117 private static native void nSetImageFilter(long nativeInstance, long nativeFilter); in nSetImageFilter()
H A DSkottieAnimation.java92 private static native void nRelease(long nativeInstance); in nRelease()
94 private static native double nGetDuration(long nativeInstance); in nGetDuration()
95 private static native double nGetFrameCount(long nativeInstance); in nGetFrameCount()
96 private static native float nGetWidth(long nativeInstance); in nGetWidth()
97 private static native float nGetHeight(long nativeInstance); in nGetHeight()
99 private static native void nSeekTime(long nativeInstance, double t); in nSeekTime()
100 private static native void nSeekFrame(long nativeInstance, double frame); in nSeekFrame()
101 private static native void nRender(long nativeInstance, long nativeCanvas); in nRender()
H A DSurface.java109 private static native void nRelease(long nativeInstance); in nRelease()
110 private static native long nGetNativeCanvas(long nativeInstance); in nGetNativeCanvas()
111 private static native void nFlushAndSubmit(long nativeInstance); in nFlushAndSubmit()
112 private static native int nGetWidth(long nativeInstance); in nGetWidth()
113 private static native int nGetHeight(long nativeInstance); in nGetHeight()
114 private static native long nMakeImageSnapshot(long nativeInstance); in nMakeImageSnapshot()
H A DRuntimeShaderBuilder.java50 private static native void nRelease(long nativeInstance); in nRelease()
52 private static native void nSetUniformFloat(long nativeInstance, String name, float val); in nSetUniformFloat()
53 …private static native void nSetUniformFloat3(long nativeInstance, String name, float valX, float v… in nSetUniformFloat3()
54 … private static native void nSetUniformMatrix(long nativeInstance, String name, long nativeMatrix); in nSetUniformMatrix()
55 private static native long nMakeShader(long nativeInstance); in nMakeShader()
H A DImage.java75 Image(long nativeInstance) { in Image()
83 private static native void nRelease(long nativeInstance); in nRelease()
85 private static native int nGetWidth(long nativeInstance); in nGetWidth()
86 private static native int nGetHeight(long nativeInstance); in nGetHeight()
88 private static native long nMakeShader(long nativeInstance, int tmx, int tmy, int samplingDesc, in nMakeShader()
H A DMatrix.java39 Matrix(long nativeInstance) { in Matrix()
200 private static native void nRelease(long nativeInstance); in nRelease()
H A DColorFilter.java32 private static native void nRelease(long nativeInstance); in nRelease()
H A DPath.java33 private static native void nRelease(long nativeInstance); in nRelease()
H A DShader.java33 private static native void nRelease(long nativeInstance); in nRelease()
H A DImageFilter.java114 private static native void nRelease(long nativeInstance); in nRelease()
H A DPathBuilder.java68 private static native void nRelease(long nativeInstance); in nRelease()
/aosp_15_r20/external/robolectric/nativeruntime/src/main/java/org/robolectric/nativeruntime/
H A DPathMeasureNatives.java14 long nativeInstance, long nativePath, boolean forceClosed); in native_setPath()
16 public static native float native_getLength(long nativeInstance); in native_getLength()
19 long nativeInstance, float distance, float[] pos, float[] tan); in native_getPosTan()
22 long nativeInstance, float distance, long nativeMatrix, int flags); in native_getMatrix()
25 long nativeInstance, float startD, float stopD, long nativePath, boolean startWithMoveTo); in native_getSegment()
27 public static native boolean native_isClosed(long nativeInstance); in native_isClosed()
29 public static native boolean native_nextContour(long nativeInstance); in native_nextContour()
31 public static native void native_destroy(long nativeInstance); in native_destroy()
H A DInterpolatorNatives.java12 public static native void nativeDestructor(long nativeInstance); in nativeDestructor()
14 public static native void nativeReset(long nativeInstance, int valueCount, int frameCount); in nativeReset()
17 long nativeInstance, int index, int msec, float[] values, float[] blend); in nativeSetKeyFrame()
20 long nativeInstance, float repeatCount, boolean mirror); in nativeSetRepeatMirror()
22 public static native int nativeTimeToValues(long nativeInstance, int msec, float[] values); in nativeTimeToValues()
H A DTypefaceNatives.java32 public static native long nativeCreateFromTypeface(long nativeInstance, int style); in nativeCreateFromTypeface()
35 long nativeInstance, int weight, boolean italic); in nativeCreateFromTypefaceWithExactStyle()
38 long nativeInstance, List<FontVariationAxis> axes); in nativeCreateFromTypefaceWithVariation()
40 public static native long nativeCreateWeightAlias(long nativeInstance, int weight); in nativeCreateWeightAlias()
45 public static native int[] nativeGetSupportedAxes(long nativeInstance); in nativeGetSupportedAxes()
/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowNativePathMeasure.java29 protected static void native_setPath(long nativeInstance, long nativePath, boolean forceClosed) { in native_setPath()
34 protected static float native_getLength(long nativeInstance) { in native_getLength()
40 long nativeInstance, float distance, float[] pos, float[] tan) { in native_getPosTan()
46 long nativeInstance, float distance, long nativeMatrix, int flags) { in native_getMatrix()
52 long nativeInstance, float startD, float stopD, long nativePath, boolean startWithMoveTo) { in native_getSegment()
58 protected static boolean native_isClosed(long nativeInstance) { in native_isClosed()
63 protected static boolean native_nextContour(long nativeInstance) { in native_nextContour()
68 protected static void native_destroy(long nativeInstance) { in native_destroy()
H A DShadowNativeInterpolator.java28 protected static void nativeDestructor(long nativeInstance) { in nativeDestructor()
33 protected static void nativeReset(long nativeInstance, int valueCount, int frameCount) { in nativeReset()
39 long nativeInstance, int index, int msec, float[] values, float[] blend) { in nativeSetKeyFrame()
45 long nativeInstance, float repeatCount, boolean mirror) { in nativeSetRepeatMirror()
50 protected static int nativeTimeToValues(long nativeInstance, int msec, float[] values) { in nativeTimeToValues()
H A DShadowNativeTypeface.java140 protected static long nativeCreateFromTypeface(long nativeInstance, int style) { in nativeCreateFromTypeface()
146 long nativeInstance, int weight, boolean italic) { in nativeCreateFromTypefaceWithExactStyle()
152 long nativeInstance, List<FontVariationAxis> axes) { in nativeCreateFromTypefaceWithVariation()
157 protected static long nativeCreateWeightAlias(long nativeInstance, int weight) { in nativeCreateWeightAlias()
173 protected static int[] nativeGetSupportedAxes(long nativeInstance) { in nativeGetSupportedAxes()
H A DShadowNativeColorFilter.java27 protected static void nSafeUnref(long nativeInstance) { in nSafeUnref()
/aosp_15_r20/frameworks/base/core/java/android/hardware/
H A DSystemSensorManager.java87 private static native boolean nativeGetSensorAtIndex(long nativeInstance, in nativeGetSensorAtIndex()
89 private static native boolean nativeGetDefaultDeviceSensorAtIndex(long nativeInstance, in nativeGetDefaultDeviceSensorAtIndex()
91 private static native void nativeGetDynamicSensors(long nativeInstance, List<Sensor> list); in nativeGetDynamicSensors()
93 long nativeInstance, int deviceId, List<Sensor> list); in nativeGetRuntimeSensors()
94 private static native boolean nativeIsDataInjectionEnabled(long nativeInstance); in nativeIsDataInjectionEnabled()
95 private static native boolean nativeIsReplayDataInjectionEnabled(long nativeInstance); in nativeIsReplayDataInjectionEnabled()
96 private static native boolean nativeIsHalBypassReplayDataInjectionEnabled(long nativeInstance); in nativeIsHalBypassReplayDataInjectionEnabled()
99 long nativeInstance, int deviceId, long size, int channelType, int fd, in nativeCreateDirectChannel()
102 long nativeInstance, int channelHandle); in nativeDestroyDirectChannel()
104 long nativeInstance, int channelHandle, int sensorHandle, int rate); in nativeConfigDirectChannel()
[all …]
/aosp_15_r20/frameworks/base/core/java/android/service/dataloader/
H A DDataLoaderService.java199 FileSystemConnector(long nativeInstance) { in FileSystemConnector()
246 private static native void nativeWriteData(long nativeInstance, String name, long offsetBytes, in nativeWriteData()
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/graphics/
H A DPaintNativeInstanceTest.kt80 val nativeInstance = paint.nativeInstance in <lambda>() constant
/aosp_15_r20/external/cronet/third_party/jni_zero/java/src/org/chromium/example/jni_generator/
H A DSampleProxyEdgeCases.java44 native void nativeInstanceMethod(long nativeInstance); in nativeInstanceMethod()
/aosp_15_r20/external/cronet/third_party/jni_zero/test/java/src/org/jni_zero/
H A DSampleProxyEdgeCases.java44 native void nativeInstanceMethod(long nativeInstance); in nativeInstanceMethod()
/aosp_15_r20/frameworks/base/libs/hwui/jni/
H A DTypeface.cpp66 static jlong Typeface_createFromTypefaceWithExactStyle(JNIEnv* env, jobject, jlong nativeInstance, in Typeface_createFromTypefaceWithExactStyle()

12345678910>>...13