From e52d6ac3e78f00462c0eadd88fbe5b2b2aece31a Mon Sep 17 00:00:00 2001 From: Alexander Gorshenev Date: Fri, 25 Oct 2024 13:33:09 +0300 Subject: [PATCH 1/4] A trivial ArkTS UI program talking to C API Signed-off-by: Alexander Gorshenev --- arkoala-arkts/loader/package.json | 4 + .../loader/src/trivial/ArkUINodeType.ts | 37 ++ .../loader/src/trivial/NativeModule.ts | 515 ++++++++++++++++++ arkoala-arkts/loader/src/trivial/main.ts | 42 ++ 4 files changed, 598 insertions(+) create mode 100644 arkoala-arkts/loader/src/trivial/ArkUINodeType.ts create mode 100644 arkoala-arkts/loader/src/trivial/NativeModule.ts create mode 100644 arkoala-arkts/loader/src/trivial/main.ts diff --git a/arkoala-arkts/loader/package.json b/arkoala-arkts/loader/package.json index 4fda3570f..da91d4c30 100644 --- a/arkoala-arkts/loader/package.json +++ b/arkoala-arkts/loader/package.json @@ -13,6 +13,10 @@ "compile:arkts": "npm run unmemoize && npm run unmemoize --prefix ../arkui && npm run compile:unmemoize --prefix ../../incremental/runtime && bash -x ../../incremental/tools/panda/arkts/arktsc --arktsconfig ./arktsconfig-run-unmemoized.json --ets-module", "compile:runner:program:arkts": "bash -x ../../incremental/tools/panda/arkts/arktsc --arktsconfig ./arktsconfig-run-unmemoized-runner.json", "compile:runner:arkts": "bash -x ../../incremental/tools/panda/arkts/arktsc --arktsconfig ./arktsconfig-run-unmemoized-runner.json --ets-module", + "compile:trivial:program:main": "bash -x ../../incremental/tools/panda/arkts/arktsc --arktsconfig ./arktsconfig-trivial-main.json", + "compile:trivial:main": "bash -x ../../incremental/tools/panda/arkts/arktsc --arktsconfig ./arktsconfig-trivial-main.json --ets-module", + "compile:trivial:arkoala": "bash -x ../../incremental/tools/panda/arkts/arktsc --arktsconfig ./arktsconfig-trivial-arkoala.json --ets-module", + "execute:trivial": "bash -x ../../incremental/tools/panda/arkts/ark build/abc/src/trivial/main.abc --ark-boot-files build/abc/src/trivial/NativeModule.abc:build/abc/src/trivial/ArkUINodeType.abc:../../incremental/runtime/build/incremental.abc --ark-entry-point ETSGLOBAL::main", "execute:panda": "LD_LIBRARY_PATH=. bash -x ../../incremental/tools/panda/arkts/ark build/abc/unmemoized/src/runner.abc --ark-boot-files build/abc/unmemoized/generated/hello.abc:../arkui/build/arkoala.abc --ark-entry-point ETSGLOBAL::main", "run": "npm run compile:arkts && npm run compile:runner:program:arkts && npm run link:arkoala && npm run execute:panda", "compile:native:node": "npm run compile:native-panda-with-node-host --prefix ../../arkoala/framework", diff --git a/arkoala-arkts/loader/src/trivial/ArkUINodeType.ts b/arkoala-arkts/loader/src/trivial/ArkUINodeType.ts new file mode 100644 index 000000000..c671e96ad --- /dev/null +++ b/arkoala-arkts/loader/src/trivial/ArkUINodeType.ts @@ -0,0 +1,37 @@ +export enum ArkUINodeType { + Root, + ComponentRoot, + CustomNode, + Blank, + Button, + CalendarPicker, + Canvas, + Column, + Common, + CommonMethod, + CommonShapeMethod, + EmbeddedComponent, + FormComponent, + GridContainer, + Image, + List, + NavDestination, + Navigation, + Rect, + Scroll, + ScrollableCommonMethod, + Select, + Shape, + SideBarContainer, + Swiper, + SymbolGlyph, + TabContent, + Tabs, + Test, + Text, + TextInput, + TextPicker, + UIExtensionComponent, + Vector, + Web, +} \ No newline at end of file diff --git a/arkoala-arkts/loader/src/trivial/NativeModule.ts b/arkoala-arkts/loader/src/trivial/NativeModule.ts new file mode 100644 index 000000000..73811cbe8 --- /dev/null +++ b/arkoala-arkts/loader/src/trivial/NativeModule.ts @@ -0,0 +1,515 @@ + + + +/* + * Copyright (c) 2024 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// import { callCallback } from "../CallbackRegistry" +import { int32 } from "@koalaui/common" +import { + KBoolean, + KUInt, + KInt, + KLong, + KFloat, + KPointer, + KStringPtr, + KUint8ArrayPtr, + KInt32ArrayPtr, + KFloat32ArrayPtr, +} from "@koalaui/interop" + + + +let theModule: NativeModule + +export function nativeModule(): NativeModule { + if (theModule) return theModule + // todo: is this code actually reachable? + theModule = new NativeModule() + return theModule +} + +export class NativeModule { + static { + loadLibrary("NativeBridgeArk") + NativeModule.init(); + } + + static native init(): void; + + static callCallbackFromNative(id: KInt, args: KUint8ArrayPtr, length: KInt): KInt { + // return callCallback(id, args, length) + return 0 + } + + native static _BlankInterface_setBlankOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _BlankAttribute_color(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _ButtonInterface_setButtonOptions(ptr: KPointer): void + native static _ButtonAttribute_type(ptr: KPointer, value: KInt): void + native static _ButtonAttribute_labelStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CalendarPickerInterface_setCalendarPickerOptions(ptr: KPointer): void + native static _CalendarPickerAttribute_edgeAlign(ptr: KPointer, alignType: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CalendarPickerAttribute_altEdgeAlign(ptr: KPointer, alignType: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CanvasInterface_setCanvasOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CanvasAttribute_onReady(ptr: KPointer, event: KInt): void + native static _CanvasAttribute_enableAnalyzer(ptr: KPointer, enable: KInt): void + native static _ColumnInterface_setColumnOptions(ptr: KPointer): void + native static _ColumnAttribute_alignItems(ptr: KPointer, value: KInt): void + native static _CommonMethod_stateStyles(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CommonMethod_backdropBlur(ptr: KPointer, value: number, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CommonMethod_width(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CommonMethod_height(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CommonMethod_key(ptr: KPointer, value: KStringPtr): void + native static _CommonMethod_restoreId(ptr: KPointer, value: number): void + native static _CommonMethod_padding(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CommonMethod_bindSheet(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CommonMethod_backgroundBlurStyle(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CommonMethod_dragPreviewOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CommonMethod_linearGradient(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CommonMethod_border(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CommonMethod_onChildTouchTest(ptr: KPointer, event: KInt): void + native static _CommonMethod_gestureModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CommonMethod_onGestureRecognizerJudgeBegin(ptr: KPointer, callback: KInt): void + native static _CommonMethod_onClick0(ptr: KPointer, event: KInt): void + native static _CommonMethod_onClick1(ptr: KPointer, event: KInt, distanceThreshold: number): void + native static _CommonInterface_setCommonOptions(ptr: KPointer): void + native static _ScrollableCommonMethod_scrollBarWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CommonShapeMethod_stroke(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _EmbeddedComponentInterface_setEmbeddedComponentOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32, type: KInt): void + native static _EmbeddedComponentAttribute_onTerminated(ptr: KPointer, callback: KInt): void + native static _EmbeddedComponentAttribute_onError(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _FormComponentInterface_setFormComponentOptions(ptr: KPointer): void + native static _FormComponentAttribute_size(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _FormComponentAttribute_onAcquired(ptr: KPointer, callback: KInt): void + native static _GridContainerInterface_setGridContainerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _ImageInterface_setImageOptions(ptr: KPointer): void + native static _ListInterface_setListOptions(ptr: KPointer): void + native static _ListAttribute_someOptional(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _ListAttribute_onScrollVisibleContentChange(ptr: KPointer, handler: KInt): void + native static _NavDestinationInterface_setNavDestinationOptions(ptr: KPointer): void + native static _NavDestinationAttribute_title(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavDestinationAttribute_hideTitleBar(ptr: KPointer, value: KInt): void + native static _NavDestinationAttribute_onShown(ptr: KPointer, callback: KInt): void + native static _NavDestinationAttribute_onHidden(ptr: KPointer, callback: KInt): void + native static _NavDestinationAttribute_onBackPressed(ptr: KPointer, callback: KInt): void + native static _NavDestinationAttribute_mode(ptr: KPointer, value: KInt): void + native static _NavDestinationAttribute_backButtonIcon(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavDestinationAttribute_menus(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavDestinationAttribute_onReady(ptr: KPointer, callback: KInt): void + native static _NavDestinationAttribute_onWillAppear(ptr: KPointer, callback: KInt): void + native static _NavDestinationAttribute_onWillDisappear(ptr: KPointer, callback: KInt): void + native static _NavDestinationAttribute_onWillShow(ptr: KPointer, callback: KInt): void + native static _NavDestinationAttribute_onWillHide(ptr: KPointer, callback: KInt): void + native static _NavDestinationAttribute_ignoreLayoutSafeArea(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavDestinationAttribute_systemBarStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationInterface_setNavigationOptions0(ptr: KPointer): void + native static _NavigationInterface_setNavigationOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationAttribute_navBarWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationAttribute_navBarPosition(ptr: KPointer, value: KInt): void + native static _NavigationAttribute_navBarWidthRange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationAttribute_minContentWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationAttribute_mode(ptr: KPointer, value: KInt): void + native static _NavigationAttribute_backButtonIcon(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationAttribute_hideNavBar(ptr: KPointer, value: KInt): void + native static _NavigationAttribute_title(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationAttribute_subTitle(ptr: KPointer, value: KStringPtr): void + native static _NavigationAttribute_hideTitleBar(ptr: KPointer, value: KInt): void + native static _NavigationAttribute_hideBackButton(ptr: KPointer, value: KInt): void + native static _NavigationAttribute_titleMode(ptr: KPointer, value: KInt): void + native static _NavigationAttribute_menus(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationAttribute_toolBar(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationAttribute_toolbarConfiguration(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationAttribute_hideToolBar(ptr: KPointer, value: KInt): void + native static _NavigationAttribute_onTitleModeChange(ptr: KPointer, callback: KInt): void + native static _NavigationAttribute_onNavBarStateChange(ptr: KPointer, callback: KInt): void + native static _NavigationAttribute_onNavigationModeChange(ptr: KPointer, callback: KInt): void + native static _NavigationAttribute_navDestination(ptr: KPointer, builder: KInt): void + native static _NavigationAttribute_customNavContentTransition(ptr: KPointer, delegate: KInt): void + native static _NavigationAttribute_ignoreLayoutSafeArea(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationAttribute_systemBarStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _RectInterface_setRectOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _RectAttribute_radiusWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _RectAttribute_radiusHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _RectAttribute_radius(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _ScrollInterface_setScrollOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _SelectInterface_setSelectOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _SelectAttribute_menuItemContentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _ShapeInterface_setShapeOptions(ptr: KPointer): void + native static _SideBarContainerInterface_setSideBarContainerOptions(ptr: KPointer): void + native static _SideBarContainerAttribute_minSideBarWidth0(ptr: KPointer, value: number): void + native static _SideBarContainerAttribute_minSideBarWidth1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _SwiperInterface_setSwiperOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _SwiperAttribute_index(ptr: KPointer, value: number): void + native static _SwiperAttribute_indicator(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _SymbolGlyphInterface_setSymbolGlyphOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _SymbolGlyphAttribute_fontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TabContentInterface_setTabContentOptions(ptr: KPointer): void + native static _TabContentAttribute_tabBar0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TabContentAttribute_tabBar1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TabsInterface_setTabsOptions(ptr: KPointer): void + native static _TabsAttribute_barMode(ptr: KPointer, value: KInt): void + native static _TestInterface_setTestOptions(ptr: KPointer): void + native static _TestAttribute_testBoolean(ptr: KPointer, value: KInt): void + native static _TestAttribute_testNumber(ptr: KPointer, value: number): void + native static _TestAttribute_testString(ptr: KPointer, value: KStringPtr): void + native static _TestAttribute_testEnum(ptr: KPointer, value: KInt): void + native static _TestAttribute_testFunction(ptr: KPointer, value: KInt): void + native static _TestAttribute_testBasicMix(ptr: KPointer, v1: number, v2: KStringPtr, v3: number): void + native static _TestAttribute_testBooleanUndefined(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testNumberUndefined(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testStringUndefined(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testEnumUndefined(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testFunctionUndefined(ptr: KPointer, value: KInt): void + native static _TestAttribute_testUnionNumberEnum(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testUnionBooleanString(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testUnionStringNumber(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testUnionBooleanStringNumberUndefined(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testUnionWithGenericArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testUnionWithArrayType(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testBooleanArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testNumberArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testStringArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testEnumArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testArrayMix(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testTupleBooleanNumber(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testTupleNumberStringEnum(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testTupleOptional(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testTupleUnion(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testArrayRefBoolean(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testArrayRefNumber(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testBooleanInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testNumberInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testStringInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testUnionInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testUnionOptional(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testTupleInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testOptionInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testArrayRefNumberInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testBooleanInterfaceOption(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testBooleanInterfaceTuple(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testBooleanInterfaceArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testBooleanInterfaceArrayRef(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testInterfaceMixed(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32, v2: number): void + native static _TestAttribute_testClass(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testClassWithConstructor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testClassWithConstructorAndFields(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testClassWithConstructorAndMethods(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testClassWithConstructorAndStaticMethods(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testClassWithConstructorAndFieldsAndMethods(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testClassWithConstructorAndNonOptionalParams(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testClassWithConstructorAndSomeOptionalParams(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testClassWithConstructorAndAllOptionalParams(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TestAttribute_testClassWithConstructorAndWithoutParams(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TextInterface_setTextOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TextAttribute_font(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TextAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TextInputInterface_setTextInputOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TextInputAttribute_type(ptr: KPointer, value: KInt): void + native static _TextInputAttribute_contentType(ptr: KPointer, value: KInt): void + native static _TextInputAttribute_onEditChanged(ptr: KPointer, callback: KInt): void + native static _TextPickerInterface_setTextPickerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TextPickerAttribute_defaultPickerItemHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TextPickerAttribute_canLoop(ptr: KPointer, value: KInt): void + native static _TextPickerAttribute_onAccept(ptr: KPointer, callback: KInt): void + native static _TextPickerAttribute_onCancel(ptr: KPointer, callback: KInt): void + native static _TextPickerAttribute_onChange(ptr: KPointer, callback: KInt): void + native static _TextPickerAttribute_selectedIndex(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TextPickerAttribute_divider(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _TextPickerAttribute_gradientHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _UIExtensionComponentInterface_setUIExtensionComponentOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _UIExtensionComponentAttribute_onRemoteReady(ptr: KPointer, callback: KInt): void + native static _UIExtensionComponentAttribute_onReceive(ptr: KPointer, callback: KInt): void + native static _UIExtensionComponentAttribute_onResult(ptr: KPointer, callback: KInt): void + native static _UIExtensionComponentAttribute_onRelease(ptr: KPointer, callback: KInt): void + native static _UIExtensionComponentAttribute_onError(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _UIExtensionComponentAttribute_onTerminated(ptr: KPointer, callback: KInt): void + native static _VectorInterface_setVectorOptions(ptr: KPointer): void + native static _VectorAttribute_testVector1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _VectorAttribute_testVector2(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _VectorAttribute_testUnionVector1Number(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _VectorAttribute_testUnionVector2Number(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _WebInterface_setWebOptions(ptr: KPointer): void + native static _WebAttribute_onNativeEmbedLifecycleChange(ptr: KPointer, callback: KInt): void + native static _WebAttribute_onRenderExited0(ptr: KPointer, callback: KInt): void + native static _WebAttribute_onRenderExited1(ptr: KPointer, callback: KInt): void + native static _WebAttribute_onHttpErrorReceive(ptr: KPointer, callback: KInt): void + native static _GestureModifier_ctor(): KPointer + native static _GestureModifier_getFinalizer(): KPointer + native static _GestureModifier_applyGesture0(ptr: KPointer): void + native static _GestureModifier_applyGesture1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _GestureRecognizer_ctor(): KPointer + native static _GestureRecognizer_getFinalizer(): KPointer + native static _GestureRecognizer_getTag(ptr: KPointer): string + native static _GestureRecognizer_getType(ptr: KPointer): KPointer + native static _GestureRecognizer_isBuiltIn(ptr: KPointer): boolean + native static _GestureRecognizer_setEnabled(ptr: KPointer, isEnabled: KInt): void + native static _GestureRecognizer_isEnabled(ptr: KPointer): boolean + native static _GestureRecognizer_getState(ptr: KPointer): KPointer + native static _GestureRecognizer_getEventTargetInfo(ptr: KPointer): KPointer + native static _EventTargetInfo_ctor(): KPointer + native static _EventTargetInfo_getFinalizer(): KPointer + native static _EventTargetInfo_getId(ptr: KPointer): string + native static _CanvasRenderingContext2D_ctor(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _CanvasRenderingContext2D_getFinalizer(): KPointer + native static _CanvasRenderingContext2D_stopImageAnalyzer(ptr: KPointer): void + native static _CanvasRenderingContext2D_of(): KPointer + native static _CanvasRenderingContext2D_getHeight(ptr: KPointer): number + native static _CanvasRenderingContext2D_getWidth(ptr: KPointer): number + native static _CanvasRenderer_ctor(): KPointer + native static _CanvasRenderer_getFinalizer(): KPointer + native static _CanvasRenderer_beginPath(ptr: KPointer): void + native static _CanvasRenderer_clip(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CanvasRenderer_reset(ptr: KPointer): void + native static _CanvasRenderer_putImageData0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CanvasRenderer_putImageData1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CanvasRenderer_getGlobalAlpha(ptr: KPointer): number + native static _CanvasRenderer_setGlobalAlpha(ptr: KPointer, globalAlpha: number): void + native static _CanvasRenderer_getGlobalCompositeOperation(ptr: KPointer): string + native static _CanvasRenderer_setGlobalCompositeOperation(ptr: KPointer, globalCompositeOperation: KStringPtr): void + native static _CanvasRenderer_setFillStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CanvasPath_ctor(): KPointer + native static _CanvasPath_getFinalizer(): KPointer + native static _CanvasPath_rect(ptr: KPointer, x: number, y: number, w: number, h: number): void + native static _CanvasPath_arc(ptr: KPointer, x: number, y: number, radius: number, startAngle: number, endAngle: number, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CanvasPath_closePath(ptr: KPointer): void + native static _CanvasGradient_ctor(): KPointer + native static _CanvasGradient_getFinalizer(): KPointer + native static _CanvasGradient_addColorStop(ptr: KPointer, offset: number, color: KStringPtr): void + native static _CanvasPattern_ctor(): KPointer + native static _CanvasPattern_getFinalizer(): KPointer + native static _CanvasPattern_setTransform(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _Matrix2D_ctor(): KPointer + native static _Matrix2D_getFinalizer(): KPointer + native static _Matrix2D_identity(ptr: KPointer): KPointer + native static _Matrix2D_invert(ptr: KPointer): KPointer + native static _Matrix2D_multiply(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _Matrix2D_rotate0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _Matrix2D_rotate1(ptr: KPointer, degree: number, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _Matrix2D_translate(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _Matrix2D_scale(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _Matrix2D_getScaleX(ptr: KPointer): number + native static _Matrix2D_setScaleX(ptr: KPointer, scaleX: number): void + native static _Matrix2D_getRotateY(ptr: KPointer): number + native static _Matrix2D_setRotateY(ptr: KPointer, rotateY: number): void + native static _Matrix2D_getRotateX(ptr: KPointer): number + native static _Matrix2D_setRotateX(ptr: KPointer, rotateX: number): void + native static _Matrix2D_getScaleY(ptr: KPointer): number + native static _Matrix2D_setScaleY(ptr: KPointer, scaleY: number): void + native static _Matrix2D_getTranslateX(ptr: KPointer): number + native static _Matrix2D_setTranslateX(ptr: KPointer, translateX: number): void + native static _Matrix2D_getTranslateY(ptr: KPointer): number + native static _Matrix2D_setTranslateY(ptr: KPointer, translateY: number): void + native static _DrawingRenderingContext_ctor(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _DrawingRenderingContext_getFinalizer(): KPointer + native static _DrawingRenderingContext_invalidate(ptr: KPointer): void + native static _NavDestinationContext_ctor(): KPointer + native static _NavDestinationContext_getFinalizer(): KPointer + native static _NavDestinationContext_getConfigInRouteMap(ptr: KPointer): KPointer + native static _NavDestinationContext_setPathInfo(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavDestinationContext_setPathStack(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavDestinationContext_getNavDestinationId(ptr: KPointer): string + native static _NavDestinationContext_setNavDestinationId(ptr: KPointer, navDestinationId: KStringPtr): void + native static _NavPathStack_ctor(): KPointer + native static _NavPathStack_getFinalizer(): KPointer + native static _NavPathStack_pushPath0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavPathStack_pushPath1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavPathStack_pushDestination0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _NavPathStack_pushDestination1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _NavPathStack_pushPathByName0(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavPathStack_pushPathByName1(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32, onPop: KInt): void + native static _NavPathStack_pushDestinationByName0(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _NavPathStack_pushDestinationByName1(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32, onPop: KInt): KPointer + native static _NavPathStack_replacePath0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavPathStack_replacePath1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavPathStack_replacePathByName(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavPathStack_removeByIndexes(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): number + native static _NavPathStack_removeByName(ptr: KPointer, name: KStringPtr): number + native static _NavPathStack_removeByNavDestinationId(ptr: KPointer, navDestinationId: KStringPtr): boolean + native static _NavPathStack_pop0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _NavPathStack_pop1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _NavPathStack_popToName0(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): number + native static _NavPathStack_popToName1(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): number + native static _NavPathStack_popToIndex0(ptr: KPointer, index: number, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavPathStack_popToIndex1(ptr: KPointer, index: number, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavPathStack_moveToTop(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): number + native static _NavPathStack_moveIndexToTop(ptr: KPointer, index: number, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavPathStack_clear(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavPathStack_getAllPathName(ptr: KPointer): KPointer + native static _NavPathStack_getParamByIndex(ptr: KPointer, index: number): KPointer + native static _NavPathStack_getParamByName(ptr: KPointer, name: KStringPtr): KPointer + native static _NavPathStack_getIndexByName(ptr: KPointer, name: KStringPtr): KPointer + native static _NavPathStack_getParent(ptr: KPointer): KPointer + native static _NavPathStack_size(ptr: KPointer): number + native static _NavPathStack_disableAnimation(ptr: KPointer, value: KInt): void + native static _NavPathStack_setInterception(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationTransitionProxy_ctor(): KPointer + native static _NavigationTransitionProxy_getFinalizer(): KPointer + native static _NavigationTransitionProxy_finishTransition(ptr: KPointer): void + native static _NavigationTransitionProxy_cancelTransition(ptr: KPointer): void + native static _NavigationTransitionProxy_updateTransition(ptr: KPointer, progress: number): void + native static _NavigationTransitionProxy_setFrom(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationTransitionProxy_setTo(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _NavigationTransitionProxy_getIsInteractive(ptr: KPointer): boolean + native static _NavigationTransitionProxy_setIsInteractive(ptr: KPointer, isInteractive: KInt): void + native static _Scroller_ctor(): KPointer + native static _Scroller_getFinalizer(): KPointer + native static _Scroller_scrollTo(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _Scroller_scrollPage0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _Scroller_scrollPage1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _ICurve_ctor(): KPointer + native static _ICurve_getFinalizer(): KPointer + native static _ICurve_interpolate(ptr: KPointer, fraction: number): number + native static _SwiperController_ctor(): KPointer + native static _SwiperController_getFinalizer(): KPointer + native static _SwiperController_showNext(ptr: KPointer): void + native static _SwiperController_showPrevious(ptr: KPointer): void + native static _SwiperController_changeIndex(ptr: KPointer, index: number, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _SwiperController_finishAnimation(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _ClassWithConstructorAndMethodsDTS_ctor(valNumber: number, valString: KStringPtr): KPointer + native static _ClassWithConstructorAndMethodsDTS_getFinalizer(): KPointer + native static _ClassWithConstructorAndMethodsDTS_method(ptr: KPointer, valNumber: number, valString: KStringPtr): void + native static _ClassWithConstructorAndStaticMethodsDTS_ctor(valNumber: number, valString: KStringPtr): KPointer + native static _ClassWithConstructorAndStaticMethodsDTS_getFinalizer(): KPointer + native static _ClassWithConstructorAndStaticMethodsDTS_of(valNumber: number, valString: KStringPtr): KPointer + native static _ClassWithConstructorAndFieldsAndMethodsDTS_ctor(valNumber: number, valBoolean: KInt): KPointer + native static _ClassWithConstructorAndFieldsAndMethodsDTS_getFinalizer(): KPointer + native static _ClassWithConstructorAndFieldsAndMethodsDTS_method(ptr: KPointer, valNumber: number, valString: KStringPtr): void + native static _ClassWithConstructorAndFieldsAndMethodsDTS_getValNumber(ptr: KPointer): number + native static _ClassWithConstructorAndFieldsAndMethodsDTS_setValNumber(ptr: KPointer, valNumber: number): void + native static _ClassWithConstructorAndFieldsAndMethodsDTS_getValBoolean(ptr: KPointer): boolean + native static _ClassWithConstructorAndFieldsAndMethodsDTS_setValBoolean(ptr: KPointer, valBoolean: KInt): void + native static _ClassWithConstructorAndNonOptionalParamsDTS_ctor(valNumber: number, valString: KStringPtr): KPointer + native static _ClassWithConstructorAndNonOptionalParamsDTS_getFinalizer(): KPointer + native static _ClassWithConstructorAndNonOptionalParamsDTS_of(valNumber: number, valString: KStringPtr): KPointer + native static _ClassWithConstructorAndNonOptionalParamsDTS_method(ptr: KPointer, valBoolean: KInt, valString: KStringPtr): void + native static _ClassWithConstructorAndSomeOptionalParamsDTS_ctor(valNumber: number, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _ClassWithConstructorAndSomeOptionalParamsDTS_getFinalizer(): KPointer + native static _ClassWithConstructorAndSomeOptionalParamsDTS_of(valNumber: number, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _ClassWithConstructorAndSomeOptionalParamsDTS_method(ptr: KPointer, valBoolean: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _ClassWithConstructorAndAllOptionalParamsDTS_ctor(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _ClassWithConstructorAndAllOptionalParamsDTS_getFinalizer(): KPointer + native static _ClassWithConstructorAndAllOptionalParamsDTS_of(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _ClassWithConstructorAndAllOptionalParamsDTS_method(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _ClassWithConstructorAndWithoutParamsDTS_ctor(): KPointer + native static _ClassWithConstructorAndWithoutParamsDTS_getFinalizer(): KPointer + native static _ClassWithConstructorAndWithoutParamsDTS_of(): KPointer + native static _ClassWithConstructorAndWithoutParamsDTS_method(ptr: KPointer): void + native static _TextController_ctor(): KPointer + native static _TextController_getFinalizer(): KPointer + native static _TextController_closeSelectionMenu(ptr: KPointer): void + native static _TextController_setStyledString(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _StyledString_ctor(): KPointer + native static _StyledString_getFinalizer(): KPointer + native static _StyledString_getString(ptr: KPointer): string + native static _StyledString_equals(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): boolean + native static _StyledString_subStyledString(ptr: KPointer, start: number, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _StyledString_marshalling(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _StyledString_getLength(ptr: KPointer): number + native static _UIExtensionProxy_ctor(): KPointer + native static _UIExtensionProxy_getFinalizer(): KPointer + native static _UIExtensionProxy_send(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _UIExtensionProxy_sendSync(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer + native static _UIExtensionProxy_on0(ptr: KPointer, type: KStringPtr, callback: KInt): void + native static _UIExtensionProxy_on1(ptr: KPointer, type: KStringPtr, callback: KInt): void + native static _UIExtensionProxy_off0(ptr: KPointer, type: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _UIExtensionProxy_off1(ptr: KPointer, type: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _WebResourceResponse_ctor(): KPointer + native static _WebResourceResponse_getFinalizer(): KPointer + native static _WebResourceResponse_setResponseData(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void + native static _CheckArkoalaGeneratedEvents(result: KUint8ArrayPtr, size: KInt): KInt + + // interop + native static _StartNativeTest(ptr1: KStringPtr, arg: KInt): void + native static _StopNativeTest(arg0: KInt): void + native static _GetGroupedLog(arg0: KInt): KPointer + native static _StartGroupedLog(arg0: KInt): void + native static _StopGroupedLog(arg0: KInt): void + native static _GetStringFinalizer(): KPointer + native static _InvokeFinalizer(ptr1: KPointer, ptr2: KPointer): void + native static _GetPtrVectorElement(ptr1: KPointer, arg: KInt): KPointer + native static _GetNodeFinalizer(): KPointer + native static _StringLength(ptr1: KPointer): KInt + native static _StringData(ptr1: KPointer, arr: KUint8ArrayPtr, i: KInt): void + native static _StringMake(str1: KStringPtr): KPointer + native static _GetPtrVectorSize(ptr1: KPointer): KInt + native static _ManagedStringWrite(str1: KStringPtr, arr: KUint8ArrayPtr, arg: KInt): KInt + native static _Test_SetEventsApi(): void + native static _Test_Common_OnChildTouchTest(arr: KUint8ArrayPtr, arg: KInt): void + native static _Test_List_OnScrollVisibleContentChange(arr: KUint8ArrayPtr, arg: KInt): void + native static _Test_TextPicker_OnAccept(arr: KUint8ArrayPtr, arg: KInt): void + native static _TestPerfNumber(arg: KInt): KInt + native static _TestPerfNumberWithArray(arr: KUint8ArrayPtr, arg: KInt): void + native static _StartPerf(str1: KStringPtr): void + native static _EndPerf(str1: KStringPtr): void + native static _DumpPerf(arg: KInt): KPointer + native static _GetManagerCallbackCaller(callbackKind: KInt): KPointer + native static _GetManagedResourceHolder(): KPointer + native static _GetManagedResourceReleaser(): KPointer + native static _CallCallback(callbackKind: KInt, caller: KPointer, resourceId: KInt, args: KUint8ArrayPtr, argsSize: KInt): void + native static _CallCallbackResourceHolder(holder: KPointer, resourceId: KInt): void + native static _CallCallbackResourceReleaser(releaser: KPointer, resourceId: KInt): void +// loader + native static _LoadVirtualMachine(arg0: KInt, arg1: KStringPtr, arg2: KStringPtr): KInt + native static _RunApplication(arg0: KInt, arg1: KInt): KInt + native static _StartApplication(): KInt +// node + native static _CreateNode(pointer: KInt, arg0: KInt, arg1: KInt): KPointer + native static _GetNodeByViewStack(): KPointer + native static _DisposeNode(ptr0: KPointer): void + native static _DumpTreeNode(ptr0: KPointer): void + native static _SetCreateNodeDelay(arg0: KInt, arg1: KLong): void + native static _SetMeasureNodeDelay(arg0: KInt, arg1: KLong): void + native static _SetLayoutNodeDelay(arg0: KInt, arg1: KLong): void + native static _SetDrawNodeDelay(arg0: KInt, arg1: KLong): void + native static _AddChild(ptr1: KPointer, ptr2: KPointer): KInt + native static _RemoveChild(ptr0: KPointer, ptr2: KPointer): void + native static _InsertChildAfter(ptr0: KPointer, ptr1: KPointer, ptr2: KPointer): KInt + native static _InsertChildBefore(ptr0: KPointer, ptr1: KPointer, ptr2: KPointer): KInt + native static _InsertChildAt(ptr0: KPointer, ptr1: KPointer, arg: KInt): KInt + native static _ApplyModifierFinish(ptr0: KPointer): void + native static _MarkDirty(ptr0: KPointer, arg: KInt): void + native static _IsBuilderNode(ptr0: KPointer): KBoolean + native static _ConvertLengthMetricsUnit(arg0: KFloat, arg1: KInt, arg2: KInt): KFloat + native static _SetCustomCallback(ptr0: KPointer, arg: KInt): void + native static _MeasureLayoutAndDraw(ptr0: KPointer): void + native static _MeasureNode(ptr0: KPointer, arr: KFloat32ArrayPtr): KInt + native static _LayoutNode(ptr0: KPointer, arr: KFloat32ArrayPtr): KInt + native static _DrawNode(ptr0: KPointer, arr: KFloat32ArrayPtr): KInt + native static _SetMeasureWidth(ptr0: KPointer, arg: KInt): void + native static _GetMeasureWidth(ptr0: KPointer): KInt + native static _SetMeasureHeight(ptr0: KPointer, arg: KInt): void + native static _GetMeasureHeight(ptr0: KPointer): KInt + native static _SetX(ptr0: KPointer, arg: KInt): void + native static _GetX(ptr0: KPointer): KInt + native static _SetY(ptr0: KPointer, arg: KInt): void + native static _GetY(ptr0: KPointer): KInt + native static _SetAlignment(ptr0: KPointer, arg: KInt): void + native static _GetAlignment(ptr0: KPointer): KInt + native static _IndexerChecker(ptr0: KPointer): KInt + native static _SetRangeUpdater(ptr0: KPointer, arg: KInt): void + native static _SetLazyItemIndexer(ptr0: KPointer, arg: KInt): void + native static _GetPipelineContext(ptr0: KPointer): KPointer + native static _SetVsyncCallback(ptr0: KPointer, arg: KInt): void + native static _UnblockVsyncWait(ptr0: KPointer): void + native static _SetChildTotalCount(ptr0: KPointer, arg: KInt): void + native static _ShowCrash(message: KStringPtr): void +// test + native static _TestCallIntNoArgs(arg0: KInt): KInt + native static _TestCallIntIntArraySum(arg0: KInt, arg1: KInt32ArrayPtr, arg2: KInt): KInt + native static _TestCallVoidIntArrayPrefixSum(arg0: KInt, arr: KInt32ArrayPtr, arg2: KInt): void + native static _TestCallIntRecursiveCallback(arg0: KInt, arr: KUint8ArrayPtr, arg2: KInt): KInt + native static _TestCallIntMemory(arg0: KInt, arg1: KInt): KInt +} diff --git a/arkoala-arkts/loader/src/trivial/main.ts b/arkoala-arkts/loader/src/trivial/main.ts new file mode 100644 index 000000000..259497eb7 --- /dev/null +++ b/arkoala-arkts/loader/src/trivial/main.ts @@ -0,0 +1,42 @@ +import { int32, int8Array } from "@koalaui/common" +import { nativeModule } from "./NativeModule" +import { ArkUINodeType } from "./ArkUINodeType" + +export function startNativeLog(group: int32) { + nativeModule()._StartGroupedLog(group) +} + +export function stopNativeLog(group: int32) { + nativeModule()._StopGroupedLog(group) +} + +export function getNativeLog(group: int32): string { + let ptr = nativeModule()._GetGroupedLog(group) + let length = nativeModule()._StringLength(ptr) + let data = int8Array(length) + nativeModule()._StringData(ptr, data, length) + nativeModule()._InvokeFinalizer(ptr, nativeModule()._GetStringFinalizer()) + // TODO: better string decoding. + let result = new StringBuilder() + for (let i = 0; i < length; i++) { + result.append(String.fromCharCode(data[i] as int32)) + } + return result.toString() +} + + +export function main() { + startNativeLog(1) + + const root = nativeModule()._CreateNode(ArkUINodeType.Root as int32, 1001, 0) + const componentRoot = nativeModule()._CreateNode(ArkUINodeType.ComponentRoot as int32, 1005, 0) + const column = nativeModule()._CreateNode(ArkUINodeType.Column as int32, 1002, 0) + const button = nativeModule()._CreateNode(ArkUINodeType.Button as int32, 1003, 0) + nativeModule()._AddChild(root, componentRoot) + nativeModule()._AddChild(componentRoot, column) + nativeModule()._AddChild(column, button) + nativeModule()._MeasureLayoutAndDraw(root) + + stopNativeLog(1) + console.log(getNativeLog(1)) +} -- Gitee From a7087db53b90bcc954e7f10b89008dca39007893 Mon Sep 17 00:00:00 2001 From: Alexander Gorshenev Date: Fri, 25 Oct 2024 14:50:04 +0300 Subject: [PATCH 2/4] More trivial compilation and execution Signed-off-by: Alexander Gorshenev --- .../loader/arktsconfig-trivial-arkoala.json | 23 +++++++++++++++++++ .../loader/arktsconfig-trivial-main.json | 23 +++++++++++++++++++ arkoala-arkts/loader/package.json | 2 +- 3 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 arkoala-arkts/loader/arktsconfig-trivial-arkoala.json create mode 100644 arkoala-arkts/loader/arktsconfig-trivial-main.json diff --git a/arkoala-arkts/loader/arktsconfig-trivial-arkoala.json b/arkoala-arkts/loader/arktsconfig-trivial-arkoala.json new file mode 100644 index 000000000..a9f6af0ac --- /dev/null +++ b/arkoala-arkts/loader/arktsconfig-trivial-arkoala.json @@ -0,0 +1,23 @@ +{ + "include": [ + "./src/trivial/NativeModule.ts", "./src/trivial/ArkUINodeType.ts" + ], + "compilerOptions": { + "outDir": "build/abc", + "baseUrl": ".", + "paths": { + "@koalaui/compat": [ + "../../incremental/compat/src/arkts" + ], + "@koalaui/common": [ + "../../incremental/common/src" + ], + "@koalaui/runtime": [ + "../../incremental/runtime/unmemoized/src" + ], + "@koalaui/interop": [ + "../../interop/src/arkts" + ] + } + } +} diff --git a/arkoala-arkts/loader/arktsconfig-trivial-main.json b/arkoala-arkts/loader/arktsconfig-trivial-main.json new file mode 100644 index 000000000..d4850eed2 --- /dev/null +++ b/arkoala-arkts/loader/arktsconfig-trivial-main.json @@ -0,0 +1,23 @@ +{ + "include": [ + "./src/trivial/main.ts" + ], + "compilerOptions": { + "outDir": "build/abc", + "baseUrl": ".", + "paths": { + "@koalaui/compat": [ + "../../incremental/compat/src/arkts" + ], + "@koalaui/common": [ + "../../incremental/common/src" + ], + "@koalaui/runtime": [ + "../../incremental/runtime/unmemoized/src" + ], + "@koalaui/interop": [ + "../../interop/src/arkts" + ] + } + } +} diff --git a/arkoala-arkts/loader/package.json b/arkoala-arkts/loader/package.json index da91d4c30..612f1747f 100644 --- a/arkoala-arkts/loader/package.json +++ b/arkoala-arkts/loader/package.json @@ -16,7 +16,7 @@ "compile:trivial:program:main": "bash -x ../../incremental/tools/panda/arkts/arktsc --arktsconfig ./arktsconfig-trivial-main.json", "compile:trivial:main": "bash -x ../../incremental/tools/panda/arkts/arktsc --arktsconfig ./arktsconfig-trivial-main.json --ets-module", "compile:trivial:arkoala": "bash -x ../../incremental/tools/panda/arkts/arktsc --arktsconfig ./arktsconfig-trivial-arkoala.json --ets-module", - "execute:trivial": "bash -x ../../incremental/tools/panda/arkts/ark build/abc/src/trivial/main.abc --ark-boot-files build/abc/src/trivial/NativeModule.abc:build/abc/src/trivial/ArkUINodeType.abc:../../incremental/runtime/build/incremental.abc --ark-entry-point ETSGLOBAL::main", + "execute:trivial": "LD_LIBRARY_PATH=. bash -x ../../incremental/tools/panda/arkts/ark build/abc/src/trivial/main.abc --ark-boot-files build/abc/src/trivial/NativeModule.abc:build/abc/src/trivial/ArkUINodeType.abc:../../incremental/runtime/build/incremental.abc --ark-entry-point ETSGLOBAL::main", "execute:panda": "LD_LIBRARY_PATH=. bash -x ../../incremental/tools/panda/arkts/ark build/abc/unmemoized/src/runner.abc --ark-boot-files build/abc/unmemoized/generated/hello.abc:../arkui/build/arkoala.abc --ark-entry-point ETSGLOBAL::main", "run": "npm run compile:arkts && npm run compile:runner:program:arkts && npm run link:arkoala && npm run execute:panda", "compile:native:node": "npm run compile:native-panda-with-node-host --prefix ../../arkoala/framework", -- Gitee From 3219c84a5507d369d21a875d0bec8c631cf2732c Mon Sep 17 00:00:00 2001 From: naumovdmitrii Date: Fri, 25 Oct 2024 15:54:07 +0300 Subject: [PATCH 3/4] full Signed-off-by: naumovdmitrii --- .../loader/src/trivial/NativeModule.ts | 2706 ++++++++++++++--- 1 file changed, 2219 insertions(+), 487 deletions(-) diff --git a/arkoala-arkts/loader/src/trivial/NativeModule.ts b/arkoala-arkts/loader/src/trivial/NativeModule.ts index 73811cbe8..59cadb653 100644 --- a/arkoala-arkts/loader/src/trivial/NativeModule.ts +++ b/arkoala-arkts/loader/src/trivial/NativeModule.ts @@ -1,38 +1,17 @@ - - - -/* - * Copyright (c) 2024 Huawei Device Co., Ltd. - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// import { callCallback } from "../CallbackRegistry" import { int32 } from "@koalaui/common" -import { +import { KBoolean, KUInt, - KInt, + KInt, KLong, KFloat, - KPointer, - KStringPtr, + KPointer, + KStringPtr, KUint8ArrayPtr, KInt32ArrayPtr, KFloat32ArrayPtr, } from "@koalaui/interop" - - let theModule: NativeModule export function nativeModule(): NativeModule { @@ -43,473 +22,2226 @@ export function nativeModule(): NativeModule { } export class NativeModule { - static { - loadLibrary("NativeBridgeArk") - NativeModule.init(); - } + static { + loadLibrary("NativeBridgeArk") + NativeModule.init(); + } - static native init(): void; + static native init(): void; + + static native _Dump(): void + static native _GetInteropProfile(): void + static native _ResetInteropProfile(): void + static native _XComponentAttribute_options(): void + static native _XComponentAttribute_Get_surfaceId(): void + static native _XComponentAttribute_surfaceSize(): void + static native _XComponentController_Get_(): void + static native _SetCustomCallbackId(): void + static callCallbackFromNative(id: KInt, args: KUint8ArrayPtr, length: KInt): KInt { // return callCallback(id, args, length) return 0 } + +static native _CheckImpl(): KPointer +static native _SetCallbackDispatcher(dispatcher: (id: int32, args: KUint8ArrayPtr, length: int32) => int32): void +static native _CleanCallbackDispatcher(): void - native static _BlankInterface_setBlankOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _BlankAttribute_color(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _ButtonInterface_setButtonOptions(ptr: KPointer): void - native static _ButtonAttribute_type(ptr: KPointer, value: KInt): void - native static _ButtonAttribute_labelStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CalendarPickerInterface_setCalendarPickerOptions(ptr: KPointer): void - native static _CalendarPickerAttribute_edgeAlign(ptr: KPointer, alignType: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CalendarPickerAttribute_altEdgeAlign(ptr: KPointer, alignType: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CanvasInterface_setCanvasOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CanvasAttribute_onReady(ptr: KPointer, event: KInt): void - native static _CanvasAttribute_enableAnalyzer(ptr: KPointer, enable: KInt): void - native static _ColumnInterface_setColumnOptions(ptr: KPointer): void - native static _ColumnAttribute_alignItems(ptr: KPointer, value: KInt): void - native static _CommonMethod_stateStyles(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CommonMethod_backdropBlur(ptr: KPointer, value: number, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CommonMethod_width(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CommonMethod_height(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CommonMethod_key(ptr: KPointer, value: KStringPtr): void - native static _CommonMethod_restoreId(ptr: KPointer, value: number): void - native static _CommonMethod_padding(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CommonMethod_bindSheet(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CommonMethod_backgroundBlurStyle(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CommonMethod_dragPreviewOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CommonMethod_linearGradient(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CommonMethod_border(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CommonMethod_onChildTouchTest(ptr: KPointer, event: KInt): void - native static _CommonMethod_gestureModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CommonMethod_onGestureRecognizerJudgeBegin(ptr: KPointer, callback: KInt): void - native static _CommonMethod_onClick0(ptr: KPointer, event: KInt): void - native static _CommonMethod_onClick1(ptr: KPointer, event: KInt, distanceThreshold: number): void - native static _CommonInterface_setCommonOptions(ptr: KPointer): void - native static _ScrollableCommonMethod_scrollBarWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CommonShapeMethod_stroke(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _EmbeddedComponentInterface_setEmbeddedComponentOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32, type: KInt): void - native static _EmbeddedComponentAttribute_onTerminated(ptr: KPointer, callback: KInt): void - native static _EmbeddedComponentAttribute_onError(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _FormComponentInterface_setFormComponentOptions(ptr: KPointer): void - native static _FormComponentAttribute_size(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _FormComponentAttribute_onAcquired(ptr: KPointer, callback: KInt): void - native static _GridContainerInterface_setGridContainerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _ImageInterface_setImageOptions(ptr: KPointer): void - native static _ListInterface_setListOptions(ptr: KPointer): void - native static _ListAttribute_someOptional(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _ListAttribute_onScrollVisibleContentChange(ptr: KPointer, handler: KInt): void - native static _NavDestinationInterface_setNavDestinationOptions(ptr: KPointer): void - native static _NavDestinationAttribute_title(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavDestinationAttribute_hideTitleBar(ptr: KPointer, value: KInt): void - native static _NavDestinationAttribute_onShown(ptr: KPointer, callback: KInt): void - native static _NavDestinationAttribute_onHidden(ptr: KPointer, callback: KInt): void - native static _NavDestinationAttribute_onBackPressed(ptr: KPointer, callback: KInt): void - native static _NavDestinationAttribute_mode(ptr: KPointer, value: KInt): void - native static _NavDestinationAttribute_backButtonIcon(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavDestinationAttribute_menus(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavDestinationAttribute_onReady(ptr: KPointer, callback: KInt): void - native static _NavDestinationAttribute_onWillAppear(ptr: KPointer, callback: KInt): void - native static _NavDestinationAttribute_onWillDisappear(ptr: KPointer, callback: KInt): void - native static _NavDestinationAttribute_onWillShow(ptr: KPointer, callback: KInt): void - native static _NavDestinationAttribute_onWillHide(ptr: KPointer, callback: KInt): void - native static _NavDestinationAttribute_ignoreLayoutSafeArea(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavDestinationAttribute_systemBarStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationInterface_setNavigationOptions0(ptr: KPointer): void - native static _NavigationInterface_setNavigationOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationAttribute_navBarWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationAttribute_navBarPosition(ptr: KPointer, value: KInt): void - native static _NavigationAttribute_navBarWidthRange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationAttribute_minContentWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationAttribute_mode(ptr: KPointer, value: KInt): void - native static _NavigationAttribute_backButtonIcon(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationAttribute_hideNavBar(ptr: KPointer, value: KInt): void - native static _NavigationAttribute_title(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationAttribute_subTitle(ptr: KPointer, value: KStringPtr): void - native static _NavigationAttribute_hideTitleBar(ptr: KPointer, value: KInt): void - native static _NavigationAttribute_hideBackButton(ptr: KPointer, value: KInt): void - native static _NavigationAttribute_titleMode(ptr: KPointer, value: KInt): void - native static _NavigationAttribute_menus(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationAttribute_toolBar(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationAttribute_toolbarConfiguration(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationAttribute_hideToolBar(ptr: KPointer, value: KInt): void - native static _NavigationAttribute_onTitleModeChange(ptr: KPointer, callback: KInt): void - native static _NavigationAttribute_onNavBarStateChange(ptr: KPointer, callback: KInt): void - native static _NavigationAttribute_onNavigationModeChange(ptr: KPointer, callback: KInt): void - native static _NavigationAttribute_navDestination(ptr: KPointer, builder: KInt): void - native static _NavigationAttribute_customNavContentTransition(ptr: KPointer, delegate: KInt): void - native static _NavigationAttribute_ignoreLayoutSafeArea(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationAttribute_systemBarStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _RectInterface_setRectOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _RectAttribute_radiusWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _RectAttribute_radiusHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _RectAttribute_radius(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _ScrollInterface_setScrollOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _SelectInterface_setSelectOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _SelectAttribute_menuItemContentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _ShapeInterface_setShapeOptions(ptr: KPointer): void - native static _SideBarContainerInterface_setSideBarContainerOptions(ptr: KPointer): void - native static _SideBarContainerAttribute_minSideBarWidth0(ptr: KPointer, value: number): void - native static _SideBarContainerAttribute_minSideBarWidth1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _SwiperInterface_setSwiperOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _SwiperAttribute_index(ptr: KPointer, value: number): void - native static _SwiperAttribute_indicator(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _SymbolGlyphInterface_setSymbolGlyphOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _SymbolGlyphAttribute_fontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TabContentInterface_setTabContentOptions(ptr: KPointer): void - native static _TabContentAttribute_tabBar0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TabContentAttribute_tabBar1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TabsInterface_setTabsOptions(ptr: KPointer): void - native static _TabsAttribute_barMode(ptr: KPointer, value: KInt): void - native static _TestInterface_setTestOptions(ptr: KPointer): void - native static _TestAttribute_testBoolean(ptr: KPointer, value: KInt): void - native static _TestAttribute_testNumber(ptr: KPointer, value: number): void - native static _TestAttribute_testString(ptr: KPointer, value: KStringPtr): void - native static _TestAttribute_testEnum(ptr: KPointer, value: KInt): void - native static _TestAttribute_testFunction(ptr: KPointer, value: KInt): void - native static _TestAttribute_testBasicMix(ptr: KPointer, v1: number, v2: KStringPtr, v3: number): void - native static _TestAttribute_testBooleanUndefined(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testNumberUndefined(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testStringUndefined(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testEnumUndefined(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testFunctionUndefined(ptr: KPointer, value: KInt): void - native static _TestAttribute_testUnionNumberEnum(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testUnionBooleanString(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testUnionStringNumber(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testUnionBooleanStringNumberUndefined(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testUnionWithGenericArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testUnionWithArrayType(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testBooleanArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testNumberArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testStringArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testEnumArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testArrayMix(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testTupleBooleanNumber(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testTupleNumberStringEnum(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testTupleOptional(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testTupleUnion(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testArrayRefBoolean(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testArrayRefNumber(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testBooleanInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testNumberInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testStringInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testUnionInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testUnionOptional(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testTupleInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testOptionInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testArrayRefNumberInterface(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testBooleanInterfaceOption(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testBooleanInterfaceTuple(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testBooleanInterfaceArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testBooleanInterfaceArrayRef(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testInterfaceMixed(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32, v2: number): void - native static _TestAttribute_testClass(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testClassWithConstructor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testClassWithConstructorAndFields(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testClassWithConstructorAndMethods(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testClassWithConstructorAndStaticMethods(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testClassWithConstructorAndFieldsAndMethods(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testClassWithConstructorAndNonOptionalParams(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testClassWithConstructorAndSomeOptionalParams(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testClassWithConstructorAndAllOptionalParams(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TestAttribute_testClassWithConstructorAndWithoutParams(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TextInterface_setTextOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TextAttribute_font(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TextAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TextInputInterface_setTextInputOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TextInputAttribute_type(ptr: KPointer, value: KInt): void - native static _TextInputAttribute_contentType(ptr: KPointer, value: KInt): void - native static _TextInputAttribute_onEditChanged(ptr: KPointer, callback: KInt): void - native static _TextPickerInterface_setTextPickerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TextPickerAttribute_defaultPickerItemHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TextPickerAttribute_canLoop(ptr: KPointer, value: KInt): void - native static _TextPickerAttribute_onAccept(ptr: KPointer, callback: KInt): void - native static _TextPickerAttribute_onCancel(ptr: KPointer, callback: KInt): void - native static _TextPickerAttribute_onChange(ptr: KPointer, callback: KInt): void - native static _TextPickerAttribute_selectedIndex(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TextPickerAttribute_divider(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _TextPickerAttribute_gradientHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _UIExtensionComponentInterface_setUIExtensionComponentOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _UIExtensionComponentAttribute_onRemoteReady(ptr: KPointer, callback: KInt): void - native static _UIExtensionComponentAttribute_onReceive(ptr: KPointer, callback: KInt): void - native static _UIExtensionComponentAttribute_onResult(ptr: KPointer, callback: KInt): void - native static _UIExtensionComponentAttribute_onRelease(ptr: KPointer, callback: KInt): void - native static _UIExtensionComponentAttribute_onError(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _UIExtensionComponentAttribute_onTerminated(ptr: KPointer, callback: KInt): void - native static _VectorInterface_setVectorOptions(ptr: KPointer): void - native static _VectorAttribute_testVector1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _VectorAttribute_testVector2(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _VectorAttribute_testUnionVector1Number(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _VectorAttribute_testUnionVector2Number(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _WebInterface_setWebOptions(ptr: KPointer): void - native static _WebAttribute_onNativeEmbedLifecycleChange(ptr: KPointer, callback: KInt): void - native static _WebAttribute_onRenderExited0(ptr: KPointer, callback: KInt): void - native static _WebAttribute_onRenderExited1(ptr: KPointer, callback: KInt): void - native static _WebAttribute_onHttpErrorReceive(ptr: KPointer, callback: KInt): void - native static _GestureModifier_ctor(): KPointer - native static _GestureModifier_getFinalizer(): KPointer - native static _GestureModifier_applyGesture0(ptr: KPointer): void - native static _GestureModifier_applyGesture1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _GestureRecognizer_ctor(): KPointer - native static _GestureRecognizer_getFinalizer(): KPointer - native static _GestureRecognizer_getTag(ptr: KPointer): string - native static _GestureRecognizer_getType(ptr: KPointer): KPointer - native static _GestureRecognizer_isBuiltIn(ptr: KPointer): boolean - native static _GestureRecognizer_setEnabled(ptr: KPointer, isEnabled: KInt): void - native static _GestureRecognizer_isEnabled(ptr: KPointer): boolean - native static _GestureRecognizer_getState(ptr: KPointer): KPointer - native static _GestureRecognizer_getEventTargetInfo(ptr: KPointer): KPointer - native static _EventTargetInfo_ctor(): KPointer - native static _EventTargetInfo_getFinalizer(): KPointer - native static _EventTargetInfo_getId(ptr: KPointer): string - native static _CanvasRenderingContext2D_ctor(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _CanvasRenderingContext2D_getFinalizer(): KPointer - native static _CanvasRenderingContext2D_stopImageAnalyzer(ptr: KPointer): void - native static _CanvasRenderingContext2D_of(): KPointer - native static _CanvasRenderingContext2D_getHeight(ptr: KPointer): number - native static _CanvasRenderingContext2D_getWidth(ptr: KPointer): number - native static _CanvasRenderer_ctor(): KPointer - native static _CanvasRenderer_getFinalizer(): KPointer - native static _CanvasRenderer_beginPath(ptr: KPointer): void - native static _CanvasRenderer_clip(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CanvasRenderer_reset(ptr: KPointer): void - native static _CanvasRenderer_putImageData0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CanvasRenderer_putImageData1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CanvasRenderer_getGlobalAlpha(ptr: KPointer): number - native static _CanvasRenderer_setGlobalAlpha(ptr: KPointer, globalAlpha: number): void - native static _CanvasRenderer_getGlobalCompositeOperation(ptr: KPointer): string - native static _CanvasRenderer_setGlobalCompositeOperation(ptr: KPointer, globalCompositeOperation: KStringPtr): void - native static _CanvasRenderer_setFillStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CanvasPath_ctor(): KPointer - native static _CanvasPath_getFinalizer(): KPointer - native static _CanvasPath_rect(ptr: KPointer, x: number, y: number, w: number, h: number): void - native static _CanvasPath_arc(ptr: KPointer, x: number, y: number, radius: number, startAngle: number, endAngle: number, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CanvasPath_closePath(ptr: KPointer): void - native static _CanvasGradient_ctor(): KPointer - native static _CanvasGradient_getFinalizer(): KPointer - native static _CanvasGradient_addColorStop(ptr: KPointer, offset: number, color: KStringPtr): void - native static _CanvasPattern_ctor(): KPointer - native static _CanvasPattern_getFinalizer(): KPointer - native static _CanvasPattern_setTransform(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _Matrix2D_ctor(): KPointer - native static _Matrix2D_getFinalizer(): KPointer - native static _Matrix2D_identity(ptr: KPointer): KPointer - native static _Matrix2D_invert(ptr: KPointer): KPointer - native static _Matrix2D_multiply(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _Matrix2D_rotate0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _Matrix2D_rotate1(ptr: KPointer, degree: number, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _Matrix2D_translate(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _Matrix2D_scale(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _Matrix2D_getScaleX(ptr: KPointer): number - native static _Matrix2D_setScaleX(ptr: KPointer, scaleX: number): void - native static _Matrix2D_getRotateY(ptr: KPointer): number - native static _Matrix2D_setRotateY(ptr: KPointer, rotateY: number): void - native static _Matrix2D_getRotateX(ptr: KPointer): number - native static _Matrix2D_setRotateX(ptr: KPointer, rotateX: number): void - native static _Matrix2D_getScaleY(ptr: KPointer): number - native static _Matrix2D_setScaleY(ptr: KPointer, scaleY: number): void - native static _Matrix2D_getTranslateX(ptr: KPointer): number - native static _Matrix2D_setTranslateX(ptr: KPointer, translateX: number): void - native static _Matrix2D_getTranslateY(ptr: KPointer): number - native static _Matrix2D_setTranslateY(ptr: KPointer, translateY: number): void - native static _DrawingRenderingContext_ctor(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _DrawingRenderingContext_getFinalizer(): KPointer - native static _DrawingRenderingContext_invalidate(ptr: KPointer): void - native static _NavDestinationContext_ctor(): KPointer - native static _NavDestinationContext_getFinalizer(): KPointer - native static _NavDestinationContext_getConfigInRouteMap(ptr: KPointer): KPointer - native static _NavDestinationContext_setPathInfo(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavDestinationContext_setPathStack(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavDestinationContext_getNavDestinationId(ptr: KPointer): string - native static _NavDestinationContext_setNavDestinationId(ptr: KPointer, navDestinationId: KStringPtr): void - native static _NavPathStack_ctor(): KPointer - native static _NavPathStack_getFinalizer(): KPointer - native static _NavPathStack_pushPath0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavPathStack_pushPath1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavPathStack_pushDestination0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _NavPathStack_pushDestination1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _NavPathStack_pushPathByName0(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavPathStack_pushPathByName1(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32, onPop: KInt): void - native static _NavPathStack_pushDestinationByName0(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _NavPathStack_pushDestinationByName1(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32, onPop: KInt): KPointer - native static _NavPathStack_replacePath0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavPathStack_replacePath1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavPathStack_replacePathByName(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavPathStack_removeByIndexes(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): number - native static _NavPathStack_removeByName(ptr: KPointer, name: KStringPtr): number - native static _NavPathStack_removeByNavDestinationId(ptr: KPointer, navDestinationId: KStringPtr): boolean - native static _NavPathStack_pop0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _NavPathStack_pop1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _NavPathStack_popToName0(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): number - native static _NavPathStack_popToName1(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): number - native static _NavPathStack_popToIndex0(ptr: KPointer, index: number, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavPathStack_popToIndex1(ptr: KPointer, index: number, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavPathStack_moveToTop(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): number - native static _NavPathStack_moveIndexToTop(ptr: KPointer, index: number, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavPathStack_clear(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavPathStack_getAllPathName(ptr: KPointer): KPointer - native static _NavPathStack_getParamByIndex(ptr: KPointer, index: number): KPointer - native static _NavPathStack_getParamByName(ptr: KPointer, name: KStringPtr): KPointer - native static _NavPathStack_getIndexByName(ptr: KPointer, name: KStringPtr): KPointer - native static _NavPathStack_getParent(ptr: KPointer): KPointer - native static _NavPathStack_size(ptr: KPointer): number - native static _NavPathStack_disableAnimation(ptr: KPointer, value: KInt): void - native static _NavPathStack_setInterception(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationTransitionProxy_ctor(): KPointer - native static _NavigationTransitionProxy_getFinalizer(): KPointer - native static _NavigationTransitionProxy_finishTransition(ptr: KPointer): void - native static _NavigationTransitionProxy_cancelTransition(ptr: KPointer): void - native static _NavigationTransitionProxy_updateTransition(ptr: KPointer, progress: number): void - native static _NavigationTransitionProxy_setFrom(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationTransitionProxy_setTo(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _NavigationTransitionProxy_getIsInteractive(ptr: KPointer): boolean - native static _NavigationTransitionProxy_setIsInteractive(ptr: KPointer, isInteractive: KInt): void - native static _Scroller_ctor(): KPointer - native static _Scroller_getFinalizer(): KPointer - native static _Scroller_scrollTo(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _Scroller_scrollPage0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _Scroller_scrollPage1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _ICurve_ctor(): KPointer - native static _ICurve_getFinalizer(): KPointer - native static _ICurve_interpolate(ptr: KPointer, fraction: number): number - native static _SwiperController_ctor(): KPointer - native static _SwiperController_getFinalizer(): KPointer - native static _SwiperController_showNext(ptr: KPointer): void - native static _SwiperController_showPrevious(ptr: KPointer): void - native static _SwiperController_changeIndex(ptr: KPointer, index: number, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _SwiperController_finishAnimation(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _ClassWithConstructorAndMethodsDTS_ctor(valNumber: number, valString: KStringPtr): KPointer - native static _ClassWithConstructorAndMethodsDTS_getFinalizer(): KPointer - native static _ClassWithConstructorAndMethodsDTS_method(ptr: KPointer, valNumber: number, valString: KStringPtr): void - native static _ClassWithConstructorAndStaticMethodsDTS_ctor(valNumber: number, valString: KStringPtr): KPointer - native static _ClassWithConstructorAndStaticMethodsDTS_getFinalizer(): KPointer - native static _ClassWithConstructorAndStaticMethodsDTS_of(valNumber: number, valString: KStringPtr): KPointer - native static _ClassWithConstructorAndFieldsAndMethodsDTS_ctor(valNumber: number, valBoolean: KInt): KPointer - native static _ClassWithConstructorAndFieldsAndMethodsDTS_getFinalizer(): KPointer - native static _ClassWithConstructorAndFieldsAndMethodsDTS_method(ptr: KPointer, valNumber: number, valString: KStringPtr): void - native static _ClassWithConstructorAndFieldsAndMethodsDTS_getValNumber(ptr: KPointer): number - native static _ClassWithConstructorAndFieldsAndMethodsDTS_setValNumber(ptr: KPointer, valNumber: number): void - native static _ClassWithConstructorAndFieldsAndMethodsDTS_getValBoolean(ptr: KPointer): boolean - native static _ClassWithConstructorAndFieldsAndMethodsDTS_setValBoolean(ptr: KPointer, valBoolean: KInt): void - native static _ClassWithConstructorAndNonOptionalParamsDTS_ctor(valNumber: number, valString: KStringPtr): KPointer - native static _ClassWithConstructorAndNonOptionalParamsDTS_getFinalizer(): KPointer - native static _ClassWithConstructorAndNonOptionalParamsDTS_of(valNumber: number, valString: KStringPtr): KPointer - native static _ClassWithConstructorAndNonOptionalParamsDTS_method(ptr: KPointer, valBoolean: KInt, valString: KStringPtr): void - native static _ClassWithConstructorAndSomeOptionalParamsDTS_ctor(valNumber: number, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _ClassWithConstructorAndSomeOptionalParamsDTS_getFinalizer(): KPointer - native static _ClassWithConstructorAndSomeOptionalParamsDTS_of(valNumber: number, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _ClassWithConstructorAndSomeOptionalParamsDTS_method(ptr: KPointer, valBoolean: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _ClassWithConstructorAndAllOptionalParamsDTS_ctor(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _ClassWithConstructorAndAllOptionalParamsDTS_getFinalizer(): KPointer - native static _ClassWithConstructorAndAllOptionalParamsDTS_of(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _ClassWithConstructorAndAllOptionalParamsDTS_method(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _ClassWithConstructorAndWithoutParamsDTS_ctor(): KPointer - native static _ClassWithConstructorAndWithoutParamsDTS_getFinalizer(): KPointer - native static _ClassWithConstructorAndWithoutParamsDTS_of(): KPointer - native static _ClassWithConstructorAndWithoutParamsDTS_method(ptr: KPointer): void - native static _TextController_ctor(): KPointer - native static _TextController_getFinalizer(): KPointer - native static _TextController_closeSelectionMenu(ptr: KPointer): void - native static _TextController_setStyledString(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _StyledString_ctor(): KPointer - native static _StyledString_getFinalizer(): KPointer - native static _StyledString_getString(ptr: KPointer): string - native static _StyledString_equals(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): boolean - native static _StyledString_subStyledString(ptr: KPointer, start: number, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _StyledString_marshalling(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _StyledString_getLength(ptr: KPointer): number - native static _UIExtensionProxy_ctor(): KPointer - native static _UIExtensionProxy_getFinalizer(): KPointer - native static _UIExtensionProxy_send(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _UIExtensionProxy_sendSync(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer - native static _UIExtensionProxy_on0(ptr: KPointer, type: KStringPtr, callback: KInt): void - native static _UIExtensionProxy_on1(ptr: KPointer, type: KStringPtr, callback: KInt): void - native static _UIExtensionProxy_off0(ptr: KPointer, type: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _UIExtensionProxy_off1(ptr: KPointer, type: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _WebResourceResponse_ctor(): KPointer - native static _WebResourceResponse_getFinalizer(): KPointer - native static _WebResourceResponse_setResponseData(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void - native static _CheckArkoalaGeneratedEvents(result: KUint8ArrayPtr, size: KInt): KInt +static native _StartNativeTest(ptr1: string, arg: KInt): void +static native _StopNativeTest(arg0: KInt): void +static native _GetGroupedLog(arg0: KInt): KPointer +static native _StartGroupedLog(arg0: KInt): void +static native _StopGroupedLog(arg0: KInt): void +static native _GetStringFinalizer(): KPointer +static native _InvokeFinalizer(ptr1: KPointer, ptr2: KPointer): void +static native _GetPtrVectorElement(ptr1: KPointer, arg: KInt): KPointer +static native _GetNodeFinalizer(): KPointer +static native _StringLength(ptr1: KPointer): KInt +static native _StringData(ptr1: KPointer, arr: KUint8ArrayPtr, i: KInt): void +static native _StringMake(str1: string): KPointer +static native _GetPtrVectorSize(ptr1: KPointer): KInt +static native _ManagedStringWrite(str1: string, arr: KUint8ArrayPtr, arg: KInt): KInt +static native _Test_SetEventsApi(): void +static native _Test_Common_OnChildTouchTest(arr: KUint8ArrayPtr, arg: KInt): void +static native _Test_List_OnScrollVisibleContentChange(arr: KUint8ArrayPtr, arg: KInt): void +static native _Test_TextPicker_OnAccept(arr: KUint8ArrayPtr, arg: KInt): void +static native _TestPerfNumber(arg: KInt): KInt +static native _TestPerfNumberWithArray(arr: KUint8ArrayPtr, arg: KInt): void +static native _StartPerf(str1: string): void +static native _EndPerf(str1: string): void +static native _DumpPerf(arg: KInt): KPointer +static native _GetManagerCallbackCaller(): KPointer +static native _GetManagedResourceHolder(): KPointer +static native _GetManagedResourceReleaser(): KPointer +static native _DrawRect(canvas: KPointer, left: KFloat, top: KFloat, right: KFloat, bottom: KFloat, paint: KPointer): void +static native _PaintMake(): KPointer +static native _PaintSetColor(paint: KPointer, color: KInt): void +static native _PaintGetColor(paint: KPointer): KInt +static native _PaintFinalizer(): KPointer +static native _LoadVirtualMachine(arg0: KInt, arg1: string, arg2: string): KInt +static native _RunApplication(arg0: KInt, arg1: KInt): KInt +static native _StartApplication(): KInt +static native _CreateNode(pointer: KInt, arg0: KInt, arg1: KInt): KPointer +static native _GetNodeByViewStack(): KPointer +static native _DisposeNode(ptr0: KPointer): void +static native _DumpTreeNode(ptr0: KPointer): void +static native _SetCreateNodeDelay(arg0: KInt, arg1: KInt): void +static native _SetMeasureNodeDelay(arg0: KInt, arg1: KInt): void +static native _SetLayoutNodeDelay(arg0: KInt, arg1: KInt): void +static native _SetDrawNodeDelay(arg0: KInt, arg1: KInt): void +static native _AddChild(ptr1: KPointer, ptr2: KPointer): KInt +static native _RemoveChild(ptr0: KPointer, ptr2: KPointer): void +static native _InsertChildAfter(ptr0: KPointer, ptr1: KPointer, ptr2: KPointer): KInt +static native _InsertChildBefore(ptr0: KPointer, ptr1: KPointer, ptr2: KPointer): KInt +static native _InsertChildAt(ptr0: KPointer, ptr1: KPointer, arg: KInt): KInt +static native _ApplyModifierFinish(ptr0: KPointer): void +static native _MarkDirty(ptr0: KPointer, arg: KInt): void +static native _IsBuilderNode(ptr0: KPointer): KInt +static native _ConvertLengthMetricsUnit(arg0: KInt, arg1: KInt, arg2: KInt): KInt +static native _SetCustomCallback(ptr0: KPointer, arg: KInt): void +static native _MeasureLayoutAndDraw(ptr0: KPointer): void +static native _MeasureNode(ptr0: KPointer, arr: Float32Array): KInt +static native _LayoutNode(ptr0: KPointer, arr: Float32Array): KInt +static native _DrawNode(ptr0: KPointer, arr: Float32Array): KInt +static native _SetMeasureWidth(ptr0: KPointer, arg: KInt): void +static native _GetMeasureWidth(ptr0: KPointer): KInt +static native _SetMeasureHeight(ptr0: KPointer, arg: KInt): void +static native _GetMeasureHeight(ptr0: KPointer): KInt +static native _SetX(ptr0: KPointer, arg: KInt): void +static native _GetX(ptr0: KPointer): KInt +static native _SetY(ptr0: KPointer, arg: KInt): void +static native _GetY(ptr0: KPointer): KInt +static native _SetAlignment(ptr0: KPointer, arg: KInt): void +static native _GetAlignment(ptr0: KPointer): KInt +static native _IndexerChecker(ptr0: KPointer): KInt +static native _SetRangeUpdater(ptr0: KPointer, arg: KInt): void +static native _SetLazyItemIndexer(ptr0: KPointer, arg: KInt): void +static native _GetPipelineContext(ptr0: KPointer): KPointer +static native _SetVsyncCallback(ptr0: KPointer, arg: KInt): void +static native _UnblockVsyncWait(ptr0: KPointer): void +static native _SetChildTotalCount(ptr0: KPointer, arg: KInt): void +static native _ShowCrash(message: string): void +static native _GetFrameNodeById(id: KInt): KPointer +static native _PopPageToIndex(index: KInt): void +static native _GetName(ptr: KPointer): KPointer +static native _GetId(ptr: KPointer): KInt +static native _GetAttribute(ptr: KPointer, namePtr: KStringPtr): KPointer +static native _SetAttribute(ptr: KPointer, namePtr: KStringPtr, valuePtr: KStringPtr): void +static native _ResetAttribute(ptr: KPointer, namePtr: KStringPtr): void +static native _CheckArkoalaEvents(result: KInt32ArrayPtr, count: KInt): KInt +static native _SendArkoalaEvent(event: KInt32ArrayPtr, count: KInt): void +// static native _GetPipelineContext(nodePtr: KPointer): KPointer +static native _CallContinuation(continuationId: KInt, argCount: KInt, args: KInt32ArrayPtr): void +// static native _IndexerChecker(node: KPointer): KInt +static native _StartAnimation(spec: KInt32ArrayPtr, callbackId: KInt): void +// static native _SetChildTotalCount(ptr: KPointer, value: KInt): void +// static native _ApplyModifierFinish(ptr: KPointer): void +static native _NotifyComponentAsyncEvent(ptr: KPointer, kind: KInt): void +static native _NotifyResetComponentAsyncEvent(ptr: KPointer, kind: KInt): void - // interop - native static _StartNativeTest(ptr1: KStringPtr, arg: KInt): void - native static _StopNativeTest(arg0: KInt): void - native static _GetGroupedLog(arg0: KInt): KPointer - native static _StartGroupedLog(arg0: KInt): void - native static _StopGroupedLog(arg0: KInt): void - native static _GetStringFinalizer(): KPointer - native static _InvokeFinalizer(ptr1: KPointer, ptr2: KPointer): void - native static _GetPtrVectorElement(ptr1: KPointer, arg: KInt): KPointer - native static _GetNodeFinalizer(): KPointer - native static _StringLength(ptr1: KPointer): KInt - native static _StringData(ptr1: KPointer, arr: KUint8ArrayPtr, i: KInt): void - native static _StringMake(str1: KStringPtr): KPointer - native static _GetPtrVectorSize(ptr1: KPointer): KInt - native static _ManagedStringWrite(str1: KStringPtr, arr: KUint8ArrayPtr, arg: KInt): KInt - native static _Test_SetEventsApi(): void - native static _Test_Common_OnChildTouchTest(arr: KUint8ArrayPtr, arg: KInt): void - native static _Test_List_OnScrollVisibleContentChange(arr: KUint8ArrayPtr, arg: KInt): void - native static _Test_TextPicker_OnAccept(arr: KUint8ArrayPtr, arg: KInt): void - native static _TestPerfNumber(arg: KInt): KInt - native static _TestPerfNumberWithArray(arr: KUint8ArrayPtr, arg: KInt): void - native static _StartPerf(str1: KStringPtr): void - native static _EndPerf(str1: KStringPtr): void - native static _DumpPerf(arg: KInt): KPointer - native static _GetManagerCallbackCaller(callbackKind: KInt): KPointer - native static _GetManagedResourceHolder(): KPointer - native static _GetManagedResourceReleaser(): KPointer - native static _CallCallback(callbackKind: KInt, caller: KPointer, resourceId: KInt, args: KUint8ArrayPtr, argsSize: KInt): void - native static _CallCallbackResourceHolder(holder: KPointer, resourceId: KInt): void - native static _CallCallbackResourceReleaser(releaser: KPointer, resourceId: KInt): void -// loader - native static _LoadVirtualMachine(arg0: KInt, arg1: KStringPtr, arg2: KStringPtr): KInt - native static _RunApplication(arg0: KInt, arg1: KInt): KInt - native static _StartApplication(): KInt -// node - native static _CreateNode(pointer: KInt, arg0: KInt, arg1: KInt): KPointer - native static _GetNodeByViewStack(): KPointer - native static _DisposeNode(ptr0: KPointer): void - native static _DumpTreeNode(ptr0: KPointer): void - native static _SetCreateNodeDelay(arg0: KInt, arg1: KLong): void - native static _SetMeasureNodeDelay(arg0: KInt, arg1: KLong): void - native static _SetLayoutNodeDelay(arg0: KInt, arg1: KLong): void - native static _SetDrawNodeDelay(arg0: KInt, arg1: KLong): void - native static _AddChild(ptr1: KPointer, ptr2: KPointer): KInt - native static _RemoveChild(ptr0: KPointer, ptr2: KPointer): void - native static _InsertChildAfter(ptr0: KPointer, ptr1: KPointer, ptr2: KPointer): KInt - native static _InsertChildBefore(ptr0: KPointer, ptr1: KPointer, ptr2: KPointer): KInt - native static _InsertChildAt(ptr0: KPointer, ptr1: KPointer, arg: KInt): KInt - native static _ApplyModifierFinish(ptr0: KPointer): void - native static _MarkDirty(ptr0: KPointer, arg: KInt): void - native static _IsBuilderNode(ptr0: KPointer): KBoolean - native static _ConvertLengthMetricsUnit(arg0: KFloat, arg1: KInt, arg2: KInt): KFloat - native static _SetCustomCallback(ptr0: KPointer, arg: KInt): void - native static _MeasureLayoutAndDraw(ptr0: KPointer): void - native static _MeasureNode(ptr0: KPointer, arr: KFloat32ArrayPtr): KInt - native static _LayoutNode(ptr0: KPointer, arr: KFloat32ArrayPtr): KInt - native static _DrawNode(ptr0: KPointer, arr: KFloat32ArrayPtr): KInt - native static _SetMeasureWidth(ptr0: KPointer, arg: KInt): void - native static _GetMeasureWidth(ptr0: KPointer): KInt - native static _SetMeasureHeight(ptr0: KPointer, arg: KInt): void - native static _GetMeasureHeight(ptr0: KPointer): KInt - native static _SetX(ptr0: KPointer, arg: KInt): void - native static _GetX(ptr0: KPointer): KInt - native static _SetY(ptr0: KPointer, arg: KInt): void - native static _GetY(ptr0: KPointer): KInt - native static _SetAlignment(ptr0: KPointer, arg: KInt): void - native static _GetAlignment(ptr0: KPointer): KInt - native static _IndexerChecker(ptr0: KPointer): KInt - native static _SetRangeUpdater(ptr0: KPointer, arg: KInt): void - native static _SetLazyItemIndexer(ptr0: KPointer, arg: KInt): void - native static _GetPipelineContext(ptr0: KPointer): KPointer - native static _SetVsyncCallback(ptr0: KPointer, arg: KInt): void - native static _UnblockVsyncWait(ptr0: KPointer): void - native static _SetChildTotalCount(ptr0: KPointer, arg: KInt): void - native static _ShowCrash(message: KStringPtr): void -// test - native static _TestCallIntNoArgs(arg0: KInt): KInt - native static _TestCallIntIntArraySum(arg0: KInt, arg1: KInt32ArrayPtr, arg2: KInt): KInt - native static _TestCallVoidIntArrayPrefixSum(arg0: KInt, arr: KInt32ArrayPtr, arg2: KInt): void - native static _TestCallIntRecursiveCallback(arg0: KInt, arr: KUint8ArrayPtr, arg2: KInt): KInt - native static _TestCallIntMemory(arg0: KInt, arg1: KInt): KInt -} +static native _CloseImplicitAnimation(): void +static native _OpenImplicitAnimation(curve: KInt, options: KFloat32ArrayPtr, onFinish: KInt): KInt + + +static native _ParseDimension(str: KStringPtr, out: KFloat32ArrayPtr): void + + +static native _GetDensity(deviceId: KInt): KFloat +static native _GetFontScale(deviceId: KInt): KFloat +static native _GetDesignWidthScale(deviceId: KInt): KFloat + +static native _CaptureUIStructure(): KPointer; +static native _ElementById(elementId: KStringPtr): KInt; + + +static native _FormLinkAttribute_options(ptr: KPointer, actionPtr: KStringPtr, moduleNamePtr: KStringPtr, bundleNamePtr: KStringPtr, abilityNamePtr: KStringPtr, uri: KStringPtr, paramsPtr: KStringPtr): void; + +static native _AbilityComponentInterface_setAbilityComponentOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AbilityComponentAttribute_onConnect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AbilityComponentAttribute_onDisconnect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerInterface_setAlphabetIndexerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_onSelected(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_color(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_selectedColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_popupColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_selectedBackgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_popupBackground(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_popupSelectedColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_popupUnselectedColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_popupItemBackgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_usingPopup(ptr: KPointer, value: KInt): void +static native _AlphabetIndexerAttribute_selectedFont(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_popupFont(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_popupItemFont(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_itemSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_font(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_alignStyle(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_onSelect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_onRequestPopupData(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_onPopupSelect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_selected(ptr: KPointer, index: KInt): void +static native _AlphabetIndexerAttribute_popupPosition(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_autoCollapse(ptr: KPointer, value: KInt): void +static native _AlphabetIndexerAttribute_popupItemBorderRadius(ptr: KPointer, value: KInt): void +static native _AlphabetIndexerAttribute_itemBorderRadius(ptr: KPointer, value: KInt): void +static native _AlphabetIndexerAttribute_popupBackgroundBlurStyle(ptr: KPointer, value: KInt): void +static native _AlphabetIndexerAttribute_popupTitleBackground(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AlphabetIndexerAttribute_enableHapticFeedback(ptr: KPointer, value: KInt): void +static native _AnimatorInterface_setAnimatorOptions(ptr: KPointer, value: KStringPtr): void +static native _AnimatorAttribute_state(ptr: KPointer, value: KInt): void +static native _AnimatorAttribute_duration(ptr: KPointer, value: KInt): void +static native _AnimatorAttribute_curve(ptr: KPointer, value: KInt): void +static native _AnimatorAttribute_delay(ptr: KPointer, value: KInt): void +static native _AnimatorAttribute_fillMode(ptr: KPointer, value: KInt): void +static native _AnimatorAttribute_iterations(ptr: KPointer, value: KInt): void +static native _AnimatorAttribute_playMode(ptr: KPointer, value: KInt): void +static native _AnimatorAttribute_motion(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AnimatorAttribute_onStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AnimatorAttribute_onPause(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AnimatorAttribute_onRepeat(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AnimatorAttribute_onCancel(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AnimatorAttribute_onFinish(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AnimatorAttribute_onFrame(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _BadgeInterface_setBadgeOptions0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _BadgeInterface_setBadgeOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _BlankInterface_setBlankOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _BlankAttribute_color(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ButtonInterface_setButtonOptions0(ptr: KPointer): void +static native _ButtonInterface_setButtonOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ButtonInterface_setButtonOptions2(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ButtonAttribute_type(ptr: KPointer, value: KInt): void +static native _ButtonAttribute_stateEffect(ptr: KPointer, value: KInt): void +static native _ButtonAttribute_buttonStyle(ptr: KPointer, value: KInt): void +static native _ButtonAttribute_controlSize(ptr: KPointer, value: KInt): void +static native _ButtonAttribute_role(ptr: KPointer, value: KInt): void +static native _ButtonAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ButtonAttribute_fontSize(ptr: KPointer, value: string|number|object): void +static native _ButtonAttribute_fontWeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ButtonAttribute_fontStyle(ptr: KPointer, value: KInt): void +static native _ButtonAttribute_fontFamily(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ButtonAttribute_contentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ButtonAttribute_labelStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CalendarInterface_setCalendarOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CalendarAttribute_showLunar(ptr: KPointer, value: KInt): void +static native _CalendarAttribute_showHoliday(ptr: KPointer, value: KInt): void +static native _CalendarAttribute_needSlide(ptr: KPointer, value: KInt): void +static native _CalendarAttribute_startOfWeek(ptr: KPointer, value: KInt): void +static native _CalendarAttribute_offDays(ptr: KPointer, value: KInt): void +static native _CalendarAttribute_direction(ptr: KPointer, value: KInt): void +static native _CalendarAttribute_currentDayStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CalendarAttribute_nonCurrentDayStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CalendarAttribute_todayStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CalendarAttribute_weekStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CalendarAttribute_workStateStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CalendarAttribute_onSelectChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CalendarAttribute_onRequestData(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CalendarPickerInterface_setCalendarPickerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CalendarPickerAttribute_edgeAlign(ptr: KPointer, alignType: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CalendarPickerAttribute_textStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CalendarPickerAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasInterface_setCanvasOptions0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasInterface_setCanvasOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasAttribute_onReady(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasAttribute_enableAnalyzer(ptr: KPointer, enable: KInt): void +static native _CheckboxInterface_setCheckboxOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CheckboxAttribute_select(ptr: KPointer, value: KInt): void +static native _CheckboxAttribute_selectedColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CheckboxAttribute_shape(ptr: KPointer, value: KInt): void +static native _CheckboxAttribute_unselectedColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CheckboxAttribute_mark(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CheckboxAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CheckboxAttribute_contentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CheckboxGroupInterface_setCheckboxGroupOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CheckboxGroupAttribute_selectAll(ptr: KPointer, value: KInt): void +static native _CheckboxGroupAttribute_selectedColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CheckboxGroupAttribute_unselectedColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CheckboxGroupAttribute_mark(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CheckboxGroupAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CheckboxGroupAttribute_checkboxShape(ptr: KPointer, value: KInt): void +static native _CircleInterface_setCircleOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ColumnInterface_setColumnOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ColumnAttribute_alignItems(ptr: KPointer, value: KInt): void +static native _ColumnAttribute_justifyContent(ptr: KPointer, value: KInt): void +static native _ColumnAttribute_pointLight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ColumnAttribute_reverse(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ColumnSplitInterface_setColumnSplitOptions(ptr: KPointer): void +static native _ColumnSplitAttribute_resizeable(ptr: KPointer, value: KInt): void +static native _ColumnSplitAttribute_divider(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_width(ptr: KPointer, value: string|number|object): void +static native _CommonMethod_height(ptr: KPointer, value: string|number|object): void +static native _CommonMethod_drawModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_customProperty(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_expandSafeArea(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_responseRegion(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_mouseResponseRegion(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_size(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_constraintSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_touchable(ptr: KPointer, value: KInt): void +static native _CommonMethod_hitTestBehavior(ptr: KPointer, value: KInt): void +static native _CommonMethod_onChildTouchTest(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_layoutWeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_padding(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_margin(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_background(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_backgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_pixelRound(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_backgroundImage(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_backgroundImageSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_backgroundImagePosition(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_backgroundBlurStyle(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_backgroundEffect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_backgroundImageResizable(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_foregroundEffect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_visualEffect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_backgroundFilter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_foregroundFilter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_compositingFilter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_foregroundBlurStyle(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_opacity(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_border(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_borderStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_borderWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_borderColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_borderRadius(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_borderImage(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_outline(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_outlineStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_outlineWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_outlineColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_outlineRadius(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_foregroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onClick(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onHover(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onAccessibilityHover(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_hoverEffect(ptr: KPointer, value: KInt): void +static native _CommonMethod_onMouse(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onTouch(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onKeyEvent(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onKeyPreIme(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_focusable(ptr: KPointer, value: KInt): void +static native _CommonMethod_onFocus(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onBlur(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_tabIndex(ptr: KPointer, index: KInt): void +static native _CommonMethod_defaultFocus(ptr: KPointer, value: KInt): void +static native _CommonMethod_groupDefaultFocus(ptr: KPointer, value: KInt): void +static native _CommonMethod_focusOnTouch(ptr: KPointer, value: KInt): void +static native _CommonMethod_focusBox(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_focusScopeId(ptr: KPointer, id: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_focusScopePriority(ptr: KPointer, scopeId: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_animation(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_transition0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_transition1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_gesture(ptr: KPointer, gesture: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_priorityGesture(ptr: KPointer, gesture: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_parallelGesture(ptr: KPointer, gesture: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_blur(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_linearGradientBlur(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_motionBlur(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_brightness(ptr: KPointer, value: KInt): void +static native _CommonMethod_contrast(ptr: KPointer, value: KInt): void +static native _CommonMethod_grayscale(ptr: KPointer, value: KInt): void +static native _CommonMethod_colorBlend(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_saturate(ptr: KPointer, value: KInt): void +static native _CommonMethod_sepia(ptr: KPointer, value: KInt): void +static native _CommonMethod_invert(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_systemBarEffect(ptr: KPointer): void +static native _CommonMethod_hueRotate(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_useShadowBatching(ptr: KPointer, value: KInt): void +static native _CommonMethod_useEffect(ptr: KPointer, value: KInt): void +static native _CommonMethod_backdropBlur(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_renderGroup(ptr: KPointer, value: KInt): void +static native _CommonMethod_freeze(ptr: KPointer, value: KInt): void +static native _CommonMethod_translate(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_scale(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_gridSpan(ptr: KPointer, value: KInt): void +static native _CommonMethod_gridOffset(ptr: KPointer, value: KInt): void +static native _CommonMethod_rotate(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_transform(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onAppear(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onDisAppear(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onAttach(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onDetach(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onAreaChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_visibility(ptr: KPointer, value: KInt): void +static native _CommonMethod_flexGrow(ptr: KPointer, value: KInt): void +static native _CommonMethod_flexShrink(ptr: KPointer, value: KInt): void +static native _CommonMethod_flexBasis(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_alignSelf(ptr: KPointer, value: KInt): void +static native _CommonMethod_displayPriority(ptr: KPointer, value: KInt): void +static native _CommonMethod_zIndex(ptr: KPointer, value: KInt): void +static native _CommonMethod_sharedTransition(ptr: KPointer, id: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_direction(ptr: KPointer, value: KInt): void +static native _CommonMethod_align(ptr: KPointer, value: KInt): void +static native _CommonMethod_position(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_markAnchor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_offset(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_enabled(ptr: KPointer, value: KInt): void +static native _CommonMethod_useSizeType(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_alignRules0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_alignRules1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_chainMode(ptr: KPointer, direction: KInt, style: KInt): void +static native _CommonMethod_aspectRatio(ptr: KPointer, value: KInt): void +static native _CommonMethod_clickEffect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onDragStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onDragEnter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onDragMove(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onDragLeave(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onDrop(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onDragEnd(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_allowDrop(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_draggable(ptr: KPointer, value: KInt): void +static native _CommonMethod_dragPreview(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_dragPreviewOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onPreDrag(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_overlay(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_linearGradient(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_sweepGradient(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_radialGradient(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_motionPath(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_shadow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_blendMode(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_advancedBlendMode(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_clip0(ptr: KPointer, value: KInt): void +static native _CommonMethod_clip1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_clipShape(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_mask0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_mask1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_maskShape(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_key(ptr: KPointer, value: KStringPtr): void +static native _CommonMethod_id(ptr: KPointer, value: KStringPtr): void +static native _CommonMethod_geometryTransition0(ptr: KPointer, id: KStringPtr): void +static native _CommonMethod_geometryTransition1(ptr: KPointer, id: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_bindPopup(ptr: KPointer, show: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_bindMenu0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_bindMenu1(ptr: KPointer, isShow: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_bindContextMenu0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32, responseType: KInt): void +static native _CommonMethod_bindContextMenu1(ptr: KPointer, isShown: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_bindContentCover0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_bindContentCover1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_bindSheet(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_stateStyles(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_restoreId(ptr: KPointer, value: KInt): void +static native _CommonMethod_onVisibleAreaChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_sphericalEffect(ptr: KPointer, value: KInt): void +static native _CommonMethod_lightUpEffect(ptr: KPointer, value: KInt): void +static native _CommonMethod_pixelStretchEffect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_keyboardShortcut(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_accessibilityGroup(ptr: KPointer, value: KInt): void +static native _CommonMethod_accessibilityText0(ptr: KPointer, value: KStringPtr): void +static native _CommonMethod_accessibilityText1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_accessibilityTextHint(ptr: KPointer, value: KStringPtr): void +static native _CommonMethod_accessibilityDescription0(ptr: KPointer, value: KStringPtr): void +static native _CommonMethod_accessibilityDescription1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_accessibilityLevel(ptr: KPointer, value: KStringPtr): void +static native _CommonMethod_accessibilityVirtualNode(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_obscured(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_reuseId(ptr: KPointer, id: KStringPtr): void +static native _CommonMethod_renderFit(ptr: KPointer, fitMode: KInt): void +static native _CommonMethod_gestureModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_backgroundBrightness(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onGestureJudgeBegin(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onGestureRecognizerJudgeBegin(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_shouldBuiltInRecognizerParallelWith(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_monopolizeEvents(ptr: KPointer, monopolize: KInt): void +static native _CommonMethod_onTouchIntercept(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonMethod_onSizeChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonShapeMethod_stroke(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonShapeMethod_fill(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonShapeMethod_strokeDashOffset(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonShapeMethod_strokeLineCap(ptr: KPointer, value: KInt): void +static native _CommonShapeMethod_strokeLineJoin(ptr: KPointer, value: KInt): void +static native _CommonShapeMethod_strokeMiterLimit(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonShapeMethod_strokeOpacity(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonShapeMethod_fillOpacity(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonShapeMethod_strokeWidth(ptr: KPointer, value: string|number|object): void +static native _CommonShapeMethod_antiAlias(ptr: KPointer, value: KInt): void +static native _CommonShapeMethod_strokeDashArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CommonInterface_setCommonOptions(ptr: KPointer): void +static native _ScrollableCommonMethod_scrollBar(ptr: KPointer, barState: KInt): void +static native _ScrollableCommonMethod_scrollBarColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollableCommonMethod_scrollBarWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollableCommonMethod_edgeEffect(ptr: KPointer, edgeEffect: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollableCommonMethod_fadingEdge(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollableCommonMethod_nestedScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollableCommonMethod_enableScrollInteraction(ptr: KPointer, value: KInt): void +static native _ScrollableCommonMethod_friction(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollableCommonMethod_onScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollableCommonMethod_onReachStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollableCommonMethod_onReachEnd(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollableCommonMethod_onScrollStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollableCommonMethod_onScrollStop(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollableCommonMethod_flingSpeedLimit(ptr: KPointer, speedLimit: KInt): void +static native _Component3DInterface_setComponent3DOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _Component3DAttribute_environment(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _Component3DAttribute_customRender(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32, selfRenderUpdate: KInt): void +static native _Component3DAttribute_shader(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _Component3DAttribute_shaderImageTexture(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _Component3DAttribute_shaderInputBuffer(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _Component3DAttribute_renderWidth(ptr: KPointer, value: string|number|object): void +static native _Component3DAttribute_renderHeight(ptr: KPointer, value: string|number|object): void +static native _ContainerSpanInterface_setContainerSpanOptions(ptr: KPointer): void +static native _ContainerSpanAttribute_textBackgroundStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CounterInterface_setCounterOptions(ptr: KPointer): void +static native _CounterAttribute_onInc(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CounterAttribute_onDec(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CounterAttribute_enableDec(ptr: KPointer, value: KInt): void +static native _CounterAttribute_enableInc(ptr: KPointer, value: KInt): void +static native _DataPanelInterface_setDataPanelOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DataPanelAttribute_closeEffect(ptr: KPointer, value: KInt): void +static native _DataPanelAttribute_valueColors(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DataPanelAttribute_trackBackgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DataPanelAttribute_strokeWidth(ptr: KPointer, value: string|number|object): void +static native _DataPanelAttribute_trackShadow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DataPanelAttribute_contentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DatePickerInterface_setDatePickerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DatePickerAttribute_lunar(ptr: KPointer, value: KInt): void +static native _DatePickerAttribute_disappearTextStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DatePickerAttribute_textStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DatePickerAttribute_selectedTextStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DatePickerAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DatePickerAttribute_onDateChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DividerInterface_setDividerOptions(ptr: KPointer): void +static native _DividerAttribute_vertical(ptr: KPointer, value: KInt): void +static native _DividerAttribute_color(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DividerAttribute_strokeWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DividerAttribute_lineCap(ptr: KPointer, value: KInt): void +static native _EffectComponentInterface_setEffectComponentOptions(ptr: KPointer): void +static native _EllipseInterface_setEllipseOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _EmbeddedComponentInterface_setEmbeddedComponentOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32, type: KInt): void +static native _EmbeddedComponentAttribute_onTerminated(ptr: KPointer, callback: KInt): void +static native _EmbeddedComponentAttribute_onError(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FlexInterface_setFlexOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FlexAttribute_pointLight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FlowItemInterface_setFlowItemOptions(ptr: KPointer): void +static native _FolderStackInterface_setFolderStackOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FolderStackAttribute_alignContent(ptr: KPointer, value: KInt): void +static native _FolderStackAttribute_onFolderStateChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FolderStackAttribute_onHoverStatusChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FolderStackAttribute_enableAnimation(ptr: KPointer, value: KInt): void +static native _FolderStackAttribute_autoHalfFold(ptr: KPointer, value: KInt): void +static native _FormComponentInterface_setFormComponentOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FormComponentAttribute_size(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FormComponentAttribute_moduleName(ptr: KPointer, value: KStringPtr): void +static native _FormComponentAttribute_dimension(ptr: KPointer, value: KInt): void +static native _FormComponentAttribute_allowUpdate(ptr: KPointer, value: KInt): void +static native _FormComponentAttribute_visibility(ptr: KPointer, value: KInt): void +static native _FormComponentAttribute_onAcquired(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FormComponentAttribute_onError(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FormComponentAttribute_onRouter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FormComponentAttribute_onUninstall(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FormComponentAttribute_onLoad(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _FormLinkInterface_setFormLinkOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GaugeInterface_setGaugeOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GaugeAttribute_value(ptr: KPointer, value: KInt): void +static native _GaugeAttribute_startAngle(ptr: KPointer, angle: KInt): void +static native _GaugeAttribute_endAngle(ptr: KPointer, angle: KInt): void +static native _GaugeAttribute_colors(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GaugeAttribute_strokeWidth(ptr: KPointer, length: string|number|object): void +static native _GaugeAttribute_description(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GaugeAttribute_trackShadow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GaugeAttribute_indicator(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GaugeAttribute_privacySensitive(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GaugeAttribute_contentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridInterface_setGridOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_columnsTemplate(ptr: KPointer, value: KStringPtr): void +static native _GridAttribute_rowsTemplate(ptr: KPointer, value: KStringPtr): void +static native _GridAttribute_columnsGap(ptr: KPointer, value: string|number|object): void +static native _GridAttribute_rowsGap(ptr: KPointer, value: string|number|object): void +static native _GridAttribute_scrollBarWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_scrollBarColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_scrollBar(ptr: KPointer, value: KInt): void +static native _GridAttribute_onScrollBarUpdate(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_onScrollIndex(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_cachedCount(ptr: KPointer, value: KInt): void +static native _GridAttribute_editMode(ptr: KPointer, value: KInt): void +static native _GridAttribute_multiSelectable(ptr: KPointer, value: KInt): void +static native _GridAttribute_maxCount(ptr: KPointer, value: KInt): void +static native _GridAttribute_minCount(ptr: KPointer, value: KInt): void +static native _GridAttribute_cellLength(ptr: KPointer, value: KInt): void +static native _GridAttribute_layoutDirection(ptr: KPointer, value: KInt): void +static native _GridAttribute_supportAnimation(ptr: KPointer, value: KInt): void +static native _GridAttribute_onItemDragStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_onItemDragEnter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_onItemDragMove(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_onItemDragLeave(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_onItemDrop(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_edgeEffect(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_nestedScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_enableScrollInteraction(ptr: KPointer, value: KInt): void +static native _GridAttribute_friction(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_alignItems(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_onScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_onReachStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_onReachEnd(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_onScrollStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_onScrollStop(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridAttribute_onScrollFrameBegin(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridItemInterface_setGridItemOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridItemAttribute_rowStart(ptr: KPointer, value: KInt): void +static native _GridItemAttribute_rowEnd(ptr: KPointer, value: KInt): void +static native _GridItemAttribute_columnStart(ptr: KPointer, value: KInt): void +static native _GridItemAttribute_columnEnd(ptr: KPointer, value: KInt): void +static native _GridItemAttribute_forceRebuild(ptr: KPointer, value: KInt): void +static native _GridItemAttribute_selectable(ptr: KPointer, value: KInt): void +static native _GridItemAttribute_selected(ptr: KPointer, value: KInt): void +static native _GridItemAttribute_onSelect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridColInterface_setGridColOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridColAttribute_span(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridColAttribute_gridColOffset(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridColAttribute_order(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridContainerInterface_setGridContainerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridRowInterface_setGridRowOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridRowAttribute_onBreakpointChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _GridRowAttribute_alignItems(ptr: KPointer, value: KInt): void +static native _HyperlinkInterface_setHyperlinkOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _HyperlinkAttribute_color(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageInterface_setImageOptions0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageInterface_setImageOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageInterface_setImageOptions2(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAttribute_alt(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAttribute_matchTextDirection(ptr: KPointer, value: KInt): void +static native _ImageAttribute_fitOriginalSize(ptr: KPointer, value: KInt): void +static native _ImageAttribute_fillColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAttribute_objectFit(ptr: KPointer, value: KInt): void +static native _ImageAttribute_objectRepeat(ptr: KPointer, value: KInt): void +static native _ImageAttribute_autoResize(ptr: KPointer, value: KInt): void +static native _ImageAttribute_renderMode(ptr: KPointer, value: KInt): void +static native _ImageAttribute_dynamicRangeMode(ptr: KPointer, value: KInt): void +static native _ImageAttribute_interpolation(ptr: KPointer, value: KInt): void +static native _ImageAttribute_sourceSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAttribute_syncLoad(ptr: KPointer, value: KInt): void +static native _ImageAttribute_colorFilter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAttribute_copyOption(ptr: KPointer, value: KInt): void +static native _ImageAttribute_draggable(ptr: KPointer, value: KInt): void +static native _ImageAttribute_pointLight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAttribute_edgeAntialiasing(ptr: KPointer, value: KInt): void +static native _ImageAttribute_onComplete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAttribute_onError(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAttribute_onFinish(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAttribute_enableAnalyzer(ptr: KPointer, enable: KInt): void +static native _ImageAttribute_analyzerConfig(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAttribute_resizable(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAttribute_privacySensitive(ptr: KPointer, supported: KInt): void +static native _ImageAttribute_enhancedImageQuality(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAnimatorInterface_setImageAnimatorOptions(ptr: KPointer): void +static native _ImageAnimatorAttribute_images(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAnimatorAttribute_state(ptr: KPointer, value: KInt): void +static native _ImageAnimatorAttribute_duration(ptr: KPointer, value: KInt): void +static native _ImageAnimatorAttribute_reverse(ptr: KPointer, value: KInt): void +static native _ImageAnimatorAttribute_fixedSize(ptr: KPointer, value: KInt): void +static native _ImageAnimatorAttribute_preDecode(ptr: KPointer, value: KInt): void +static native _ImageAnimatorAttribute_fillMode(ptr: KPointer, value: KInt): void +static native _ImageAnimatorAttribute_iterations(ptr: KPointer, value: KInt): void +static native _ImageAnimatorAttribute_onStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAnimatorAttribute_onPause(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAnimatorAttribute_onRepeat(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAnimatorAttribute_onCancel(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageAnimatorAttribute_onFinish(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageSpanInterface_setImageSpanOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageSpanAttribute_verticalAlign(ptr: KPointer, value: KInt): void +static native _ImageSpanAttribute_colorFilter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageSpanAttribute_objectFit(ptr: KPointer, value: KInt): void +static native _ImageSpanAttribute_onComplete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageSpanAttribute_onError(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageSpanAttribute_alt(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _LineInterface_setLineOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _LineAttribute_startPoint(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _LineAttribute_endPoint(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListInterface_setListOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_lanes(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_alignListItem(ptr: KPointer, value: KInt): void +static native _ListAttribute_listDirection(ptr: KPointer, value: KInt): void +static native _ListAttribute_scrollBar(ptr: KPointer, value: KInt): void +static native _ListAttribute_edgeEffect(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_contentStartOffset(ptr: KPointer, value: KInt): void +static native _ListAttribute_contentEndOffset(ptr: KPointer, value: KInt): void +static native _ListAttribute_divider(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_editMode(ptr: KPointer, value: KInt): void +static native _ListAttribute_multiSelectable(ptr: KPointer, value: KInt): void +static native _ListAttribute_cachedCount(ptr: KPointer, value: KInt): void +static native _ListAttribute_chainAnimation(ptr: KPointer, value: KInt): void +static native _ListAttribute_chainAnimationOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_sticky(ptr: KPointer, value: KInt): void +static native _ListAttribute_scrollSnapAlign(ptr: KPointer, value: KInt): void +static native _ListAttribute_nestedScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_enableScrollInteraction(ptr: KPointer, value: KInt): void +static native _ListAttribute_friction(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_childrenMainSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_maintainVisibleContentPosition(ptr: KPointer, enabled: KInt): void +static native _ListAttribute_onScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onScrollIndex(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onScrollVisibleContentChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onReachStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onReachEnd(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onScrollStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onScrollStop(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onItemDelete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onItemMove(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onItemDragStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onItemDragEnter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onItemDragMove(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onItemDragLeave(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onItemDrop(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListAttribute_onScrollFrameBegin(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListItemInterface_setListItemOptions0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListItemInterface_setListItemOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListItemAttribute_sticky(ptr: KPointer, value: KInt): void +static native _ListItemAttribute_editable(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListItemAttribute_selectable(ptr: KPointer, value: KInt): void +static native _ListItemAttribute_selected(ptr: KPointer, value: KInt): void +static native _ListItemAttribute_swipeAction(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListItemAttribute_onSelect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListItemGroupInterface_setListItemGroupOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListItemGroupAttribute_divider(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListItemGroupAttribute_childrenMainSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _LoadingProgressInterface_setLoadingProgressOptions(ptr: KPointer): void +static native _LoadingProgressAttribute_color(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _LoadingProgressAttribute_enableLoading(ptr: KPointer, value: KInt): void +static native _LoadingProgressAttribute_contentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _LocationButtonInterface_setLocationButtonOptions0(ptr: KPointer): void +static native _LocationButtonInterface_setLocationButtonOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _LocationButtonAttribute_onClick(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MarqueeInterface_setMarqueeOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MarqueeAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MarqueeAttribute_fontSize(ptr: KPointer, value: string|number|object): void +static native _MarqueeAttribute_allowScale(ptr: KPointer, value: KInt): void +static native _MarqueeAttribute_fontWeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MarqueeAttribute_fontFamily(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MarqueeAttribute_marqueeUpdateStrategy(ptr: KPointer, value: KInt): void +static native _MarqueeAttribute_onStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MarqueeAttribute_onBounce(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MarqueeAttribute_onFinish(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MediaCachedImageInterface_setMediaCachedImageOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuInterface_setMenuOptions(ptr: KPointer): void +static native _MenuAttribute_fontSize(ptr: KPointer, value: string|number|object): void +static native _MenuAttribute_font(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuAttribute_radius(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuAttribute_menuItemDivider(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuAttribute_menuItemGroupDivider(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuAttribute_subMenuExpandingMode(ptr: KPointer, mode: KInt): void +static native _MenuItemInterface_setMenuItemOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuItemAttribute_selected(ptr: KPointer, value: KInt): void +static native _MenuItemAttribute_selectIcon(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuItemAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuItemAttribute_contentFont(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuItemAttribute_contentFontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuItemAttribute_labelFont(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuItemAttribute_labelFontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MenuItemGroupInterface_setMenuItemGroupOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationInterface_setNavDestinationOptions(ptr: KPointer): void +static native _NavDestinationAttribute_title(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_hideTitleBar0(ptr: KPointer, value: KInt): void +static native _NavDestinationAttribute_hideTitleBar1(ptr: KPointer, hide: KInt, animated: KInt): void +static native _NavDestinationAttribute_onShown(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_onHidden(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_onBackPressed(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_mode(ptr: KPointer, value: KInt): void +static native _NavDestinationAttribute_backButtonIcon(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_menus(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_onReady(ptr: KPointer, callback: KInt): void +static native _NavDestinationAttribute_onWillAppear(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_onWillDisappear(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_onWillShow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_onWillHide(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_ignoreLayoutSafeArea(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_systemBarStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_recoverable(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationAttribute_systemTransition(ptr: KPointer, type: KInt): void +static native _NavRouterInterface_setNavRouterOptions0(ptr: KPointer): void +static native _NavRouterInterface_setNavRouterOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavRouterAttribute_onStateChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavRouterAttribute_mode(ptr: KPointer, mode: KInt): void +static native _NavigationInterface_setNavigationOptions0(ptr: KPointer): void +static native _NavigationInterface_setNavigationOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_navBarWidth(ptr: KPointer, value: string|number|object): void +static native _NavigationAttribute_navBarPosition(ptr: KPointer, value: KInt): void +static native _NavigationAttribute_navBarWidthRange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_minContentWidth(ptr: KPointer, value: string|number|object): void +static native _NavigationAttribute_mode(ptr: KPointer, value: KInt): void +static native _NavigationAttribute_backButtonIcon(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_hideNavBar(ptr: KPointer, value: KInt): void +static native _NavigationAttribute_title(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_subTitle(ptr: KPointer, value: KStringPtr): void +static native _NavigationAttribute_hideTitleBar0(ptr: KPointer, value: KInt): void +static native _NavigationAttribute_hideTitleBar1(ptr: KPointer, hide: KInt, animated: KInt): void +static native _NavigationAttribute_hideBackButton(ptr: KPointer, value: KInt): void +static native _NavigationAttribute_titleMode(ptr: KPointer, value: KInt): void +static native _NavigationAttribute_menus(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_toolBar(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_toolbarConfiguration(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_hideToolBar0(ptr: KPointer, value: KInt): void +static native _NavigationAttribute_hideToolBar1(ptr: KPointer, hide: KInt, animated: KInt): void +static native _NavigationAttribute_onTitleModeChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_onNavBarStateChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_onNavigationModeChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_navDestination(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_customNavContentTransition(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_ignoreLayoutSafeArea(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_systemBarStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationAttribute_recoverable(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigatorInterface_setNavigatorOptions0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigatorInterface_setNavigatorOptions1(ptr: KPointer): void +static native _NavigatorAttribute_active(ptr: KPointer, value: KInt): void +static native _NavigatorAttribute_type(ptr: KPointer, value: KInt): void +static native _NavigatorAttribute_target(ptr: KPointer, value: KStringPtr): void +static native _NavigatorAttribute_params(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NodeContainerInterface_setNodeContainerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PanelInterface_setPanelOptions(ptr: KPointer, show: KInt): void +static native _PanelAttribute_mode(ptr: KPointer, value: KInt): void +static native _PanelAttribute_type(ptr: KPointer, value: KInt): void +static native _PanelAttribute_dragBar(ptr: KPointer, value: KInt): void +static native _PanelAttribute_customHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PanelAttribute_fullHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PanelAttribute_halfHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PanelAttribute_miniHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PanelAttribute_show(ptr: KPointer, value: KInt): void +static native _PanelAttribute_backgroundMask(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PanelAttribute_showCloseIcon(ptr: KPointer, value: KInt): void +static native _PanelAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PanelAttribute_onHeightChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PasteButtonInterface_setPasteButtonOptions0(ptr: KPointer): void +static native _PasteButtonInterface_setPasteButtonOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PasteButtonAttribute_onClick(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PathInterface_setPathOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PathAttribute_commands(ptr: KPointer, value: KStringPtr): void +static native _PatternLockInterface_setPatternLockOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PatternLockAttribute_sideLength(ptr: KPointer, value: string|number|object): void +static native _PatternLockAttribute_circleRadius(ptr: KPointer, value: string|number|object): void +static native _PatternLockAttribute_backgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PatternLockAttribute_regularColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PatternLockAttribute_selectedColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PatternLockAttribute_activeColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PatternLockAttribute_pathColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PatternLockAttribute_pathStrokeWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PatternLockAttribute_onPatternComplete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PatternLockAttribute_autoReset(ptr: KPointer, value: KInt): void +static native _PatternLockAttribute_onDotConnect(ptr: KPointer, callback: KInt): void +static native _PatternLockAttribute_activateCircleStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PluginComponentInterface_setPluginComponentOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PluginComponentAttribute_onComplete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PluginComponentAttribute_onError(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PolygonInterface_setPolygonOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PolygonAttribute_points(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PolylineInterface_setPolylineOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _PolylineAttribute_points(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ProgressInterface_setProgressOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ProgressAttribute_value(ptr: KPointer, value: KInt): void +static native _ProgressAttribute_color(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ProgressAttribute_style(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ProgressAttribute_privacySensitive(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ProgressAttribute_contentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _QRCodeInterface_setQRCodeOptions(ptr: KPointer, value: KStringPtr): void +static native _QRCodeAttribute_color(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _QRCodeAttribute_backgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _QRCodeAttribute_contentOpacity(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RadioInterface_setRadioOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RadioAttribute_checked(ptr: KPointer, value: KInt): void +static native _RadioAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RadioAttribute_radioStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RadioAttribute_contentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RatingInterface_setRatingOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RatingAttribute_stars(ptr: KPointer, value: KInt): void +static native _RatingAttribute_stepSize(ptr: KPointer, value: KInt): void +static native _RatingAttribute_starStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RatingAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RatingAttribute_contentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RectInterface_setRectOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RectAttribute_radiusWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RectAttribute_radiusHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RectAttribute_radius(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RefreshInterface_setRefreshOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RefreshAttribute_onStateChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RefreshAttribute_onRefreshing(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RefreshAttribute_refreshOffset(ptr: KPointer, value: KInt): void +static native _RefreshAttribute_pullToRefresh(ptr: KPointer, value: KInt): void +static native _RefreshAttribute_onOffsetChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RefreshAttribute_pullDownRatio(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RelativeContainerInterface_setRelativeContainerOptions(ptr: KPointer): void +static native _RelativeContainerAttribute_guideLine(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RelativeContainerAttribute_barrier0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RelativeContainerAttribute_barrier1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorInterface_setRichEditorOptions0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorInterface_setRichEditorOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_onReady(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_onSelect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_onSelectionChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_aboutToIMEInput(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_onIMEInputComplete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_onDidIMEInput(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_aboutToDelete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_onDeleteComplete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_copyOptions(ptr: KPointer, value: KInt): void +static native _RichEditorAttribute_bindSelectionMenu(ptr: KPointer, spanType: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_customKeyboard(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_onPaste(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_enableDataDetector(ptr: KPointer, enable: KInt): void +static native _RichEditorAttribute_enablePreviewText(ptr: KPointer, enable: KInt): void +static native _RichEditorAttribute_dataDetectorConfig(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_placeholder(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_caretColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_selectedBackgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_onEditingChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_enterKeyType(ptr: KPointer, value: KInt): void +static native _RichEditorAttribute_onSubmit(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_onWillChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_onDidChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_onCut(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_onCopy(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_editMenuOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorAttribute_enableKeyboardOnFocus(ptr: KPointer, isEnabled: KInt): void +static native _RichEditorAttribute_enableHapticFeedback(ptr: KPointer, isEnabled: KInt): void +static native _RichEditorAttribute_barState(ptr: KPointer, state: KInt): void +static native _RichTextInterface_setRichTextOptions(ptr: KPointer, content: KStringPtr): void +static native _RichTextAttribute_onStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichTextAttribute_onComplete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RootSceneInterface_setRootSceneOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RowInterface_setRowOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RowAttribute_alignItems(ptr: KPointer, value: KInt): void +static native _RowAttribute_justifyContent(ptr: KPointer, value: KInt): void +static native _RowAttribute_pointLight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RowAttribute_reverse(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RowSplitInterface_setRowSplitOptions(ptr: KPointer): void +static native _RowSplitAttribute_resizeable(ptr: KPointer, value: KInt): void +static native _SaveButtonInterface_setSaveButtonOptions0(ptr: KPointer): void +static native _SaveButtonInterface_setSaveButtonOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SaveButtonAttribute_onClick(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScreenInterface_setScreenOptions(ptr: KPointer, screenId: KInt): void +static native _ScrollInterface_setScrollOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_scrollable(ptr: KPointer, value: KInt): void +static native _ScrollAttribute_onScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_onScrollEdge(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_onScrollStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_onScrollEnd(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_onScrollStop(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_scrollBar(ptr: KPointer, barState: KInt): void +static native _ScrollAttribute_scrollBarColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_scrollBarWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_edgeEffect(ptr: KPointer, edgeEffect: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_onScrollFrameBegin(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_nestedScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_enableScrollInteraction(ptr: KPointer, value: KInt): void +static native _ScrollAttribute_friction(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_scrollSnap(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollAttribute_enablePaging(ptr: KPointer, value: KInt): void +static native _ScrollAttribute_initialOffset(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollBarInterface_setScrollBarOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScrollBarAttribute_enableNestedScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchInterface_setSearchOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_searchButton(ptr: KPointer, value: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_searchIcon(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_cancelButton(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_textIndent(ptr: KPointer, value: string|number|object): void +static native _SearchAttribute_inputFilter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_onEditChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_selectedBackgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_caretStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_placeholderColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_placeholderFont(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_textFont(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_enterKeyType(ptr: KPointer, value: KInt): void +static native _SearchAttribute_onSubmit(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_onTextSelectionChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_onContentScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_onCopy(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_onCut(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_onPaste(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_copyOption(ptr: KPointer, value: KInt): void +static native _SearchAttribute_maxLength(ptr: KPointer, value: KInt): void +static native _SearchAttribute_textAlign(ptr: KPointer, value: KInt): void +static native _SearchAttribute_enableKeyboardOnFocus(ptr: KPointer, value: KInt): void +static native _SearchAttribute_selectionMenuHidden(ptr: KPointer, value: KInt): void +static native _SearchAttribute_minFontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_maxFontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_customKeyboard(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_decoration(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_letterSpacing(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_lineHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_type(ptr: KPointer, value: KInt): void +static native _SearchAttribute_fontFeature(ptr: KPointer, value: KStringPtr): void +static native _SearchAttribute_onWillInsert(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_onDidInsert(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_onWillDelete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_onDidDelete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_editMenuOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SearchAttribute_enablePreviewText(ptr: KPointer, enable: KInt): void +static native _SearchAttribute_enableHapticFeedback(ptr: KPointer, isEnabled: KInt): void +static native _SecurityComponentMethod_iconSize(ptr: KPointer, value: string|number|object): void +static native _SecurityComponentMethod_layoutDirection(ptr: KPointer, value: KInt): void +static native _SecurityComponentMethod_position(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SecurityComponentMethod_markAnchor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SecurityComponentMethod_offset(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SecurityComponentMethod_fontSize(ptr: KPointer, value: string|number|object): void +static native _SecurityComponentMethod_fontStyle(ptr: KPointer, value: KInt): void +static native _SecurityComponentMethod_fontWeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SecurityComponentMethod_fontFamily(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SecurityComponentMethod_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SecurityComponentMethod_iconColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SecurityComponentMethod_backgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SecurityComponentMethod_borderStyle(ptr: KPointer, value: KInt): void +static native _SecurityComponentMethod_borderWidth(ptr: KPointer, value: string|number|object): void +static native _SecurityComponentMethod_borderColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SecurityComponentMethod_borderRadius(ptr: KPointer, value: string|number|object): void +static native _SecurityComponentMethod_padding(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SecurityComponentMethod_textIconSpace(ptr: KPointer, value: string|number|object): void +static native _SecurityComponentMethod_key(ptr: KPointer, value: KStringPtr): void +static native _SecurityComponentMethod_width(ptr: KPointer, value: string|number|object): void +static native _SecurityComponentMethod_height(ptr: KPointer, value: string|number|object): void +static native _SecurityComponentMethod_size(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SecurityComponentMethod_constraintSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectInterface_setSelectOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_selected(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_value(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_font(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_selectedOptionBgColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_selectedOptionFont(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_selectedOptionFontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_optionBgColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_optionFont(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_optionFontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_onSelect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_space(ptr: KPointer, value: string|number|object): void +static native _SelectAttribute_arrowPosition(ptr: KPointer, value: KInt): void +static native _SelectAttribute_menuAlign(ptr: KPointer, alignType: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_optionWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_optionHeight(ptr: KPointer, value: string|number|object): void +static native _SelectAttribute_menuBackgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_menuBackgroundBlurStyle(ptr: KPointer, value: KInt): void +static native _SelectAttribute_controlSize(ptr: KPointer, value: KInt): void +static native _SelectAttribute_menuItemContentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SelectAttribute_divider(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ShapeInterface_setShapeOptions0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ShapeInterface_setShapeOptions1(ptr: KPointer): void +static native _ShapeAttribute_viewPort(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ShapeAttribute_stroke(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ShapeAttribute_fill(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ShapeAttribute_strokeDashOffset(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ShapeAttribute_strokeDashArray(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ShapeAttribute_strokeLineCap(ptr: KPointer, value: KInt): void +static native _ShapeAttribute_strokeLineJoin(ptr: KPointer, value: KInt): void +static native _ShapeAttribute_strokeMiterLimit(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ShapeAttribute_strokeOpacity(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ShapeAttribute_fillOpacity(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ShapeAttribute_strokeWidth(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ShapeAttribute_antiAlias(ptr: KPointer, value: KInt): void +static native _ShapeAttribute_mesh(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32, column: KInt, row: KInt): void +static native _SliderInterface_setSliderOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SliderAttribute_blockColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SliderAttribute_trackColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SliderAttribute_selectedColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SliderAttribute_minLabel(ptr: KPointer, value: KStringPtr): void +static native _SliderAttribute_maxLabel(ptr: KPointer, value: KStringPtr): void +static native _SliderAttribute_showSteps(ptr: KPointer, value: KInt): void +static native _SliderAttribute_showTips(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SliderAttribute_trackThickness(ptr: KPointer, value: string|number|object): void +static native _SliderAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SliderAttribute_blockBorderColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SliderAttribute_blockBorderWidth(ptr: KPointer, value: string|number|object): void +static native _SliderAttribute_stepColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SliderAttribute_trackBorderRadius(ptr: KPointer, value: string|number|object): void +static native _SliderAttribute_selectedBorderRadius(ptr: KPointer, value: string|number|object): void +static native _SliderAttribute_blockSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SliderAttribute_blockStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SliderAttribute_stepSize(ptr: KPointer, value: string|number|object): void +static native _SliderAttribute_sliderInteractionMode(ptr: KPointer, value: KInt): void +static native _SliderAttribute_minResponsiveDistance(ptr: KPointer, value: KInt): void +static native _SliderAttribute_contentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SliderAttribute_slideRange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _BaseSpan_textBackgroundStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _BaseSpan_baselineOffset(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SpanInterface_setSpanOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SpanAttribute_font(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SpanAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SpanAttribute_fontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SpanAttribute_fontStyle(ptr: KPointer, value: KInt): void +static native _SpanAttribute_fontWeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SpanAttribute_fontFamily(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SpanAttribute_decoration(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SpanAttribute_letterSpacing(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SpanAttribute_textCase(ptr: KPointer, value: KInt): void +static native _SpanAttribute_lineHeight(ptr: KPointer, value: string|number|object): void +static native _SpanAttribute_textShadow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _StackInterface_setStackOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _StackAttribute_alignContent(ptr: KPointer, value: KInt): void +static native _StackAttribute_pointLight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _StepperInterface_setStepperOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _StepperAttribute_onFinish(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _StepperAttribute_onSkip(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _StepperAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _StepperAttribute_onNext(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _StepperAttribute_onPrevious(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _StepperItemInterface_setStepperItemOptions(ptr: KPointer): void +static native _StepperItemAttribute_prevLabel(ptr: KPointer, value: KStringPtr): void +static native _StepperItemAttribute_nextLabel(ptr: KPointer, value: KStringPtr): void +static native _StepperItemAttribute_status(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperInterface_setSwiperOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_index(ptr: KPointer, value: KInt): void +static native _SwiperAttribute_autoPlay(ptr: KPointer, value: KInt): void +static native _SwiperAttribute_interval(ptr: KPointer, value: KInt): void +static native _SwiperAttribute_indicator(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_displayArrow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_loop(ptr: KPointer, value: KInt): void +static native _SwiperAttribute_duration(ptr: KPointer, value: KInt): void +static native _SwiperAttribute_vertical(ptr: KPointer, value: KInt): void +static native _SwiperAttribute_itemSpace(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_displayMode(ptr: KPointer, value: KInt): void +static native _SwiperAttribute_cachedCount(ptr: KPointer, value: KInt): void +static native _SwiperAttribute_displayCount(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_effectMode(ptr: KPointer, value: KInt): void +static native _SwiperAttribute_disableSwipe(ptr: KPointer, value: KInt): void +static native _SwiperAttribute_curve(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_indicatorStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_prevMargin(ptr: KPointer, value: string|number|object, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_nextMargin(ptr: KPointer, value: string|number|object, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_onAnimationStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_onAnimationEnd(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_onGestureSwipe(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_nestedScroll(ptr: KPointer, value: KInt): void +static native _SwiperAttribute_customContentTransition(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_onContentDidScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperAttribute_indicatorInteractive(ptr: KPointer, value: KInt): void +static native _SymbolGlyphInterface_setSymbolGlyphOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SymbolGlyphAttribute_fontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SymbolGlyphAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SymbolGlyphAttribute_fontWeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SymbolGlyphAttribute_effectStrategy(ptr: KPointer, value: KInt): void +static native _SymbolGlyphAttribute_renderingStrategy(ptr: KPointer, value: KInt): void +static native _SymbolGlyphAttribute_symbolEffect0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SymbolGlyphAttribute_symbolEffect1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SymbolSpanInterface_setSymbolSpanOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SymbolSpanAttribute_fontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SymbolSpanAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SymbolSpanAttribute_fontWeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SymbolSpanAttribute_effectStrategy(ptr: KPointer, value: KInt): void +static native _SymbolSpanAttribute_renderingStrategy(ptr: KPointer, value: KInt): void +static native _TabsInterface_setTabsOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_vertical(ptr: KPointer, value: KInt): void +static native _TabsAttribute_barPosition(ptr: KPointer, value: KInt): void +static native _TabsAttribute_scrollable(ptr: KPointer, value: KInt): void +static native _TabsAttribute_barMode0(ptr: KPointer, value: KInt): void +static native _TabsAttribute_barMode1(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_barMode2(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_barWidth(ptr: KPointer, value: string|number|object): void +static native _TabsAttribute_barHeight(ptr: KPointer, value: string|number|object): void +static native _TabsAttribute_animationDuration(ptr: KPointer, value: KInt): void +static native _TabsAttribute_animationMode(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_edgeEffect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_onTabBarClick(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_onAnimationStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_onAnimationEnd(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_onGestureSwipe(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_fadingEdge(ptr: KPointer, value: KInt): void +static native _TabsAttribute_divider(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_barOverlap(ptr: KPointer, value: KInt): void +static native _TabsAttribute_barBackgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_barGridAlign(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_customContentTransition(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabsAttribute_barBackgroundBlurStyle(ptr: KPointer, value: KInt): void +static native _TabsAttribute_onContentWillChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabContentInterface_setTabContentOptions(ptr: KPointer): void +static native _TabContentAttribute_tabBar0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabContentAttribute_tabBar1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabContentAttribute_onWillShow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TabContentAttribute_onWillHide(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInterface_setTextOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_font0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_font1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_fontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_minFontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_maxFontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_minFontScale(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_maxFontScale(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_fontStyle(ptr: KPointer, value: KInt): void +static native _TextAttribute_fontWeight0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_fontWeight1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_lineSpacing(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_textAlign(ptr: KPointer, value: KInt): void +static native _TextAttribute_lineHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_textOverflow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_fontFamily(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_maxLines(ptr: KPointer, value: KInt): void +static native _TextAttribute_decoration(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_letterSpacing(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_textCase(ptr: KPointer, value: KInt): void +static native _TextAttribute_baselineOffset(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_copyOption(ptr: KPointer, value: KInt): void +static native _TextAttribute_draggable(ptr: KPointer, value: KInt): void +static native _TextAttribute_textShadow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_heightAdaptivePolicy(ptr: KPointer, value: KInt): void +static native _TextAttribute_textIndent(ptr: KPointer, value: string|number|object): void +static native _TextAttribute_wordBreak(ptr: KPointer, value: KInt): void +static native _TextAttribute_lineBreakStrategy(ptr: KPointer, strategy: KInt): void +static native _TextAttribute_onCopy(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_selection(ptr: KPointer, selectionStart: KInt, selectionEnd: KInt): void +static native _TextAttribute_ellipsisMode(ptr: KPointer, value: KInt): void +static native _TextAttribute_enableDataDetector(ptr: KPointer, enable: KInt): void +static native _TextAttribute_dataDetectorConfig(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_bindSelectionMenu(ptr: KPointer, spanType: KInt, thisArray: KUint8ArrayPtr, thisLength: int32, responseType: KInt): void +static native _TextAttribute_onTextSelectionChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_fontFeature(ptr: KPointer, value: KStringPtr): void +static native _TextAttribute_privacySensitive(ptr: KPointer, supported: KInt): void +static native _TextAttribute_textSelectable(ptr: KPointer, mode: KInt): void +static native _TextAttribute_editMenuOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAttribute_halfLeading(ptr: KPointer, halfLeading: KInt): void +static native _TextAttribute_enableHapticFeedback(ptr: KPointer, isEnabled: KInt): void +static native _TextAreaInterface_setTextAreaOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_placeholderColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_placeholderFont(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_enterKeyType(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_textAlign(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_caretColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_fontSize(ptr: KPointer, value: string|number|object): void +static native _TextAreaAttribute_fontStyle(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_fontWeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_fontFamily(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_textOverflow(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_textIndent(ptr: KPointer, value: string|number|object): void +static native _TextAreaAttribute_inputFilter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_caretStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_selectedBackgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_onSubmit(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_onTextSelectionChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_onContentScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_onEditChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_onCopy(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_onCut(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_onPaste(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_copyOption(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_enableKeyboardOnFocus(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_maxLength(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_showCounter(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_style(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_barState(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_selectionMenuHidden(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_minFontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_maxFontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_heightAdaptivePolicy(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_maxLines(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_wordBreak(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_lineBreakStrategy(ptr: KPointer, strategy: KInt): void +static native _TextAreaAttribute_customKeyboard(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_decoration(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_letterSpacing(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_lineSpacing(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_lineHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_type(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_enableAutoFill(ptr: KPointer, value: KInt): void +static native _TextAreaAttribute_contentType(ptr: KPointer, contentType: KInt): void +static native _TextAreaAttribute_fontFeature(ptr: KPointer, value: KStringPtr): void +static native _TextAreaAttribute_onWillInsert(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_onDidInsert(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_onWillDelete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_onDidDelete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_editMenuOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaAttribute_enablePreviewText(ptr: KPointer, enable: KInt): void +static native _TextAreaAttribute_enableHapticFeedback(ptr: KPointer, isEnabled: KInt): void +static native _TextClockInterface_setTextClockOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextClockAttribute_format(ptr: KPointer, value: KStringPtr): void +static native _TextClockAttribute_onDateChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextClockAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextClockAttribute_fontSize(ptr: KPointer, value: string|number|object): void +static native _TextClockAttribute_fontStyle(ptr: KPointer, value: KInt): void +static native _TextClockAttribute_fontWeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextClockAttribute_fontFamily(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextClockAttribute_textShadow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextClockAttribute_fontFeature(ptr: KPointer, value: KStringPtr): void +static native _TextClockAttribute_contentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextClockAttribute_dateTimeOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputInterface_setTextInputOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_type(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_contentType(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_placeholderColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_textOverflow(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_textIndent(ptr: KPointer, value: string|number|object): void +static native _TextInputAttribute_placeholderFont(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_enterKeyType(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_caretColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onEditChanged(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onEditChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onSubmit(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onTextSelectionChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onContentScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_maxLength(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_fontSize(ptr: KPointer, value: string|number|object): void +static native _TextInputAttribute_fontStyle(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_fontWeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_fontFamily(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_inputFilter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onCopy(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onCut(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onPaste(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_copyOption(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_showPasswordIcon(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_textAlign(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_style(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_caretStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_selectedBackgroundColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_caretPosition(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_enableKeyboardOnFocus(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_passwordIcon(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_showError(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_showUnit(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_showUnderline(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_underlineColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_selectionMenuHidden(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_barState(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_maxLines(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_wordBreak(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_lineBreakStrategy(ptr: KPointer, strategy: KInt): void +static native _TextInputAttribute_customKeyboard(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_showCounter(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_cancelButton(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_selectAll(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_minFontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_maxFontSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_heightAdaptivePolicy(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_enableAutoFill(ptr: KPointer, value: KInt): void +static native _TextInputAttribute_decoration(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_letterSpacing(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_lineHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_passwordRules(ptr: KPointer, value: KStringPtr): void +static native _TextInputAttribute_fontFeature(ptr: KPointer, value: KStringPtr): void +static native _TextInputAttribute_showPassword(ptr: KPointer, visible: KInt): void +static native _TextInputAttribute_onSecurityStateChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onWillInsert(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onDidInsert(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onWillDelete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_onDidDelete(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_editMenuOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputAttribute_enablePreviewText(ptr: KPointer, enable: KInt): void +static native _TextInputAttribute_enableHapticFeedback(ptr: KPointer, isEnabled: KInt): void +static native _TextPickerInterface_setTextPickerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextPickerAttribute_defaultPickerItemHeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextPickerAttribute_canLoop(ptr: KPointer, value: KInt): void +static native _TextPickerAttribute_disappearTextStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextPickerAttribute_textStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextPickerAttribute_selectedTextStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextPickerAttribute_onAccept(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextPickerAttribute_onCancel(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextPickerAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextPickerAttribute_selectedIndex(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextPickerAttribute_divider(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextPickerAttribute_gradientHeight(ptr: KPointer, value: string|number|object): void +static native _TextTimerInterface_setTextTimerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextTimerAttribute_format(ptr: KPointer, value: KStringPtr): void +static native _TextTimerAttribute_fontColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextTimerAttribute_fontSize(ptr: KPointer, value: string|number|object): void +static native _TextTimerAttribute_fontStyle(ptr: KPointer, value: KInt): void +static native _TextTimerAttribute_fontWeight(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextTimerAttribute_fontFamily(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextTimerAttribute_onTimer(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextTimerAttribute_textShadow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextTimerAttribute_contentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TimePickerInterface_setTimePickerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TimePickerAttribute_useMilitaryTime(ptr: KPointer, value: KInt): void +static native _TimePickerAttribute_loop(ptr: KPointer, value: KInt): void +static native _TimePickerAttribute_disappearTextStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TimePickerAttribute_textStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TimePickerAttribute_selectedTextStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TimePickerAttribute_dateTimeOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TimePickerAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TimePickerAttribute_enableHapticFeedback(ptr: KPointer, enable: KInt): void +static native _ToggleInterface_setToggleOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ToggleAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ToggleAttribute_contentModifier(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ToggleAttribute_selectedColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ToggleAttribute_switchPointColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ToggleAttribute_switchStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _VideoInterface_setVideoOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _VideoAttribute_muted(ptr: KPointer, value: KInt): void +static native _VideoAttribute_autoPlay(ptr: KPointer, value: KInt): void +static native _VideoAttribute_controls(ptr: KPointer, value: KInt): void +static native _VideoAttribute_loop(ptr: KPointer, value: KInt): void +static native _VideoAttribute_objectFit(ptr: KPointer, value: KInt): void +static native _VideoAttribute_onStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _VideoAttribute_onPause(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _VideoAttribute_onFinish(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _VideoAttribute_onFullscreenChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _VideoAttribute_onPrepared(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _VideoAttribute_onSeeking(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _VideoAttribute_onSeeked(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _VideoAttribute_onUpdate(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _VideoAttribute_onError(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _VideoAttribute_onStop(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _VideoAttribute_enableAnalyzer(ptr: KPointer, enable: KInt): void +static native _VideoAttribute_analyzerConfig(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebInterface_setWebOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_javaScriptAccess(ptr: KPointer, javaScriptAccess: KInt): void +static native _WebAttribute_fileAccess(ptr: KPointer, fileAccess: KInt): void +static native _WebAttribute_onlineImageAccess(ptr: KPointer, onlineImageAccess: KInt): void +static native _WebAttribute_domStorageAccess(ptr: KPointer, domStorageAccess: KInt): void +static native _WebAttribute_imageAccess(ptr: KPointer, imageAccess: KInt): void +static native _WebAttribute_mixedMode(ptr: KPointer, mixedMode: KInt): void +static native _WebAttribute_zoomAccess(ptr: KPointer, zoomAccess: KInt): void +static native _WebAttribute_geolocationAccess(ptr: KPointer, geolocationAccess: KInt): void +static native _WebAttribute_javaScriptProxy(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_password(ptr: KPointer, password: KInt): void +static native _WebAttribute_cacheMode(ptr: KPointer, cacheMode: KInt): void +static native _WebAttribute_darkMode(ptr: KPointer, mode: KInt): void +static native _WebAttribute_forceDarkAccess(ptr: KPointer, access: KInt): void +static native _WebAttribute_mediaOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_tableData(ptr: KPointer, tableData: KInt): void +static native _WebAttribute_wideViewModeAccess(ptr: KPointer, wideViewModeAccess: KInt): void +static native _WebAttribute_overviewModeAccess(ptr: KPointer, overviewModeAccess: KInt): void +static native _WebAttribute_overScrollMode(ptr: KPointer, mode: KInt): void +static native _WebAttribute_textZoomAtio(ptr: KPointer, textZoomAtio: KInt): void +static native _WebAttribute_textZoomRatio(ptr: KPointer, textZoomRatio: KInt): void +static native _WebAttribute_databaseAccess(ptr: KPointer, databaseAccess: KInt): void +static native _WebAttribute_initialScale(ptr: KPointer, percent: KInt): void +static native _WebAttribute_userAgent(ptr: KPointer, userAgent: KStringPtr): void +static native _WebAttribute_metaViewport(ptr: KPointer, enabled: KInt): void +static native _WebAttribute_onPageEnd(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onPageBegin(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onProgressChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onTitleReceive(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onGeolocationHide(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onGeolocationShow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onRequestSelected(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onAlert(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onBeforeUnload(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onConfirm(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onPrompt(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onConsole(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onErrorReceive(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onHttpErrorReceive(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onDownloadStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onRefreshAccessedHistory(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onUrlLoadIntercept(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onSslErrorReceive(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onRenderExited0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onShowFileSelector(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onRenderExited1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onFileSelectorShow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onResourceLoad(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onFullScreenExit(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onFullScreenEnter(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onScaleChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onHttpAuthRequest(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onInterceptRequest(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onPermissionRequest(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onScreenCaptureRequest(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onContextMenuShow(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onContextMenuHide(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_mediaPlayGestureAccess(ptr: KPointer, access: KInt): void +static native _WebAttribute_onSearchResultReceive(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onSslErrorEventReceive(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onSslErrorEvent(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onClientAuthenticationRequest(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onWindowNew(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onWindowExit(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_multiWindowAccess(ptr: KPointer, multiWindow: KInt): void +static native _WebAttribute_onInterceptKeyEvent(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_webStandardFont(ptr: KPointer, family: KStringPtr): void +static native _WebAttribute_webSerifFont(ptr: KPointer, family: KStringPtr): void +static native _WebAttribute_webSansSerifFont(ptr: KPointer, family: KStringPtr): void +static native _WebAttribute_webFixedFont(ptr: KPointer, family: KStringPtr): void +static native _WebAttribute_webFantasyFont(ptr: KPointer, family: KStringPtr): void +static native _WebAttribute_webCursiveFont(ptr: KPointer, family: KStringPtr): void +static native _WebAttribute_defaultFixedFontSize(ptr: KPointer, size: KInt): void +static native _WebAttribute_defaultFontSize(ptr: KPointer, size: KInt): void +static native _WebAttribute_minFontSize(ptr: KPointer, size: KInt): void +static native _WebAttribute_minLogicalFontSize(ptr: KPointer, size: KInt): void +static native _WebAttribute_defaultTextEncodingFormat(ptr: KPointer, textEncodingFormat: KStringPtr): void +static native _WebAttribute_forceDisplayScrollBar(ptr: KPointer, enabled: KInt): void +static native _WebAttribute_blockNetwork(ptr: KPointer, block: KInt): void +static native _WebAttribute_horizontalScrollBarAccess(ptr: KPointer, horizontalScrollBar: KInt): void +static native _WebAttribute_verticalScrollBarAccess(ptr: KPointer, verticalScrollBar: KInt): void +static native _WebAttribute_onTouchIconUrlReceived(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onFaviconReceived(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onPageVisible(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onDataResubmitted(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_pinchSmooth(ptr: KPointer, isEnabled: KInt): void +static native _WebAttribute_allowWindowOpenMethod(ptr: KPointer, flag: KInt): void +static native _WebAttribute_onAudioStateChanged(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onFirstContentfulPaint(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onFirstMeaningfulPaint(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onLargestContentfulPaint(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onLoadIntercept(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onControllerAttached(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onOverScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onSafeBrowsingCheckResult(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onNavigationEntryCommitted(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onIntelligentTrackingPreventionResult(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_javaScriptOnDocumentStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_javaScriptOnDocumentEnd(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_layoutMode(ptr: KPointer, mode: KInt): void +static native _WebAttribute_nestedScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_enableNativeEmbedMode(ptr: KPointer, mode: KInt): void +static native _WebAttribute_registerNativeEmbedRule(ptr: KPointer, tag: KStringPtr, type: KStringPtr): void +static native _WebAttribute_onNativeEmbedLifecycleChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onNativeEmbedVisibilityChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onNativeEmbedGestureEvent(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_copyOptions(ptr: KPointer, value: KInt): void +static native _WebAttribute_onOverrideUrlLoading(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_textAutosizing(ptr: KPointer, textAutosizing: KInt): void +static native _WebAttribute_enableNativeMediaPlayer(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_enableSmoothDragResize(ptr: KPointer, mode: KInt): void +static native _WebAttribute_onRenderProcessNotResponding(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onRenderProcessResponding(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_selectionMenuOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onViewportFitChanged(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onInterceptKeyboardAttach(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_onAdsBlocked(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_keyboardAvoidMode(ptr: KPointer, mode: KInt): void +static native _WebAttribute_editMenuOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebAttribute_enableHapticFeedback(ptr: KPointer, enabled: KInt): void +static native _WindowSceneInterface_setWindowSceneOptions(ptr: KPointer, persistentId: KInt): void +static native _WindowSceneAttribute_attractionEffect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32, fraction: KInt): void +static native _XComponentInterface_setXComponentOptions0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _XComponentInterface_setXComponentOptions1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _XComponentInterface_setXComponentOptions2(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _XComponentAttribute_onLoad(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _XComponentAttribute_onDestroy(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _XComponentAttribute_enableAnalyzer(ptr: KPointer, enable: KInt): void +static native _XComponentAttribute_enableSecure(ptr: KPointer, isSecure: KInt): void +static native _SideBarContainerInterface_setSideBarContainerOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SideBarContainerAttribute_showSideBar(ptr: KPointer, value: KInt): void +static native _SideBarContainerAttribute_controlButton(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SideBarContainerAttribute_showControlButton(ptr: KPointer, value: KInt): void +static native _SideBarContainerAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SideBarContainerAttribute_sideBarWidth0(ptr: KPointer, value: KInt): void +static native _SideBarContainerAttribute_minSideBarWidth0(ptr: KPointer, value: KInt): void +static native _SideBarContainerAttribute_maxSideBarWidth0(ptr: KPointer, value: KInt): void +static native _SideBarContainerAttribute_sideBarWidth1(ptr: KPointer, value: string|number|object): void +static native _SideBarContainerAttribute_minSideBarWidth1(ptr: KPointer, value: string|number|object): void +static native _SideBarContainerAttribute_maxSideBarWidth1(ptr: KPointer, value: string|number|object): void +static native _SideBarContainerAttribute_autoHide(ptr: KPointer, value: KInt): void +static native _SideBarContainerAttribute_sideBarPosition(ptr: KPointer, value: KInt): void +static native _SideBarContainerAttribute_divider(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SideBarContainerAttribute_minContentWidth(ptr: KPointer, value: string|number|object): void +static native _RemoteWindowInterface_setRemoteWindowOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WaterFlowInterface_setWaterFlowOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WaterFlowAttribute_columnsTemplate(ptr: KPointer, value: KStringPtr): void +static native _WaterFlowAttribute_itemConstraintSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WaterFlowAttribute_rowsTemplate(ptr: KPointer, value: KStringPtr): void +static native _WaterFlowAttribute_columnsGap(ptr: KPointer, value: string|number|object): void +static native _WaterFlowAttribute_rowsGap(ptr: KPointer, value: string|number|object): void +static native _WaterFlowAttribute_layoutDirection(ptr: KPointer, value: KInt): void +static native _WaterFlowAttribute_nestedScroll(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WaterFlowAttribute_enableScrollInteraction(ptr: KPointer, value: KInt): void +static native _WaterFlowAttribute_friction(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WaterFlowAttribute_cachedCount(ptr: KPointer, value: KInt): void +static native _WaterFlowAttribute_onReachStart(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WaterFlowAttribute_onReachEnd(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WaterFlowAttribute_onScrollFrameBegin(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WaterFlowAttribute_onScrollIndex(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _UIExtensionComponentInterface_setUIExtensionComponentOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _UIExtensionComponentAttribute_onRemoteReady(ptr: KPointer, callback: KInt): void +static native _UIExtensionComponentAttribute_onReceive(ptr: KPointer, callback: KInt): void +static native _UIExtensionComponentAttribute_onResult(ptr: KPointer, callback: KInt): void +static native _UIExtensionComponentAttribute_onRelease(ptr: KPointer, callback: KInt): void +static native _UIExtensionComponentAttribute_onError(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _UIExtensionComponentAttribute_onTerminated(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _LinearIndicatorInterface_setLinearIndicatorOptions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _LinearIndicatorAttribute_indicatorStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _LinearIndicatorAttribute_indicatorLoop(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _LinearIndicatorAttribute_onChange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ActionSheet_ctor(): KPointer +static native _ActionSheet_getFinalizer(): KPointer +static native _ActionSheet_show(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _AlertDialog_ctor(): KPointer +static native _AlertDialog_getFinalizer(): KPointer +static native _AlertDialog_show(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _CalendarController_ctor(): KPointer +static native _CalendarController_getFinalizer(): KPointer +static native _CalendarController_backToToday(ptr: KPointer): KPointer +static native _CalendarController_goTo(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _CalendarPickerDialog_ctor(): KPointer +static native _CalendarPickerDialog_getFinalizer(): KPointer +static native _CalendarPickerDialog_show(thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasGradient_ctor(): KPointer +static native _CanvasGradient_getFinalizer(): KPointer +static native _CanvasGradient_addColorStop(ptr: KPointer, offset: KInt, color: KStringPtr): void +static native _CanvasPath_ctor(): KPointer +static native _CanvasPath_getFinalizer(): KPointer +static native _CanvasPath_arc(ptr: KPointer, x: KInt, y: KInt, radius: KInt, startAngle: KInt, endAngle: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasPath_arcTo(ptr: KPointer, x1: KInt, y1: KInt, x2: KInt, y2: KInt, radius: KInt): void +static native _CanvasPath_bezierCurveTo(ptr: KPointer, cp1x: KInt, cp1y: KInt, cp2x: KInt, cp2y: KInt, x: KInt, y: KInt): void +static native _CanvasPath_closePath(ptr: KPointer): void +static native _CanvasPath_ellipse(ptr: KPointer, x: KInt, y: KInt, radiusX: KInt, radiusY: KInt, rotation: KInt, startAngle: KInt, endAngle: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasPath_lineTo(ptr: KPointer, x: KInt, y: KInt): void +static native _CanvasPath_moveTo(ptr: KPointer, x: KInt, y: KInt): void +static native _CanvasPath_quadraticCurveTo(ptr: KPointer, cpx: KInt, cpy: KInt, x: KInt, y: KInt): void +static native _CanvasPath_rect(ptr: KPointer, x: KInt, y: KInt, w: KInt, h: KInt): void +static native _Path2D_ctor(): KPointer +static native _Path2D_getFinalizer(): KPointer +static native _Path2D_addPath(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasPattern_ctor(): KPointer +static native _CanvasPattern_getFinalizer(): KPointer +static native _CanvasPattern_setTransform(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ImageBitmap_ctor(src: KStringPtr): KPointer +static native _ImageBitmap_getFinalizer(): KPointer +static native _ImageBitmap_close(ptr: KPointer): void +static native _ImageBitmap_getHeight(ptr: KPointer): KInt +static native _ImageBitmap_getWidth(ptr: KPointer): KInt +static native _CanvasRenderer_ctor(): KPointer +static native _CanvasRenderer_getFinalizer(): KPointer +static native _CanvasRenderer_drawImage0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32, dx: KInt, dy: KInt): void +static native _CanvasRenderer_drawImage1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32, dx: KInt, dy: KInt, dw: KInt, dh: KInt): void +static native _CanvasRenderer_drawImage2(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32, sx: KInt, sy: KInt, sw: KInt, sh: KInt, dx: KInt, dy: KInt, dw: KInt, dh: KInt): void +static native _CanvasRenderer_beginPath(ptr: KPointer): void +static native _CanvasRenderer_clip0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_clip1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_fill0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_fill1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_stroke0(ptr: KPointer): void +static native _CanvasRenderer_stroke1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_createLinearGradient(ptr: KPointer, x0: KInt, y0: KInt, x1: KInt, y1: KInt): KPointer +static native _CanvasRenderer_createPattern(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _CanvasRenderer_createRadialGradient(ptr: KPointer, x0: KInt, y0: KInt, r0: KInt, x1: KInt, y1: KInt, r1: KInt): KPointer +static native _CanvasRenderer_createConicGradient(ptr: KPointer, startAngle: KInt, x: KInt, y: KInt): KPointer +static native _CanvasRenderer_createImageData0(ptr: KPointer, sw: KInt, sh: KInt): KPointer +static native _CanvasRenderer_createImageData1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _CanvasRenderer_getImageData(ptr: KPointer, sx: KInt, sy: KInt, sw: KInt, sh: KInt): KPointer +static native _CanvasRenderer_getPixelMap(ptr: KPointer, sx: KInt, sy: KInt, sw: KInt, sh: KInt): KPointer +static native _CanvasRenderer_putImageData0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_putImageData1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_getLineDash(ptr: KPointer): KPointer +static native _CanvasRenderer_setLineDash(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_clearRect(ptr: KPointer, x: KInt, y: KInt, w: KInt, h: KInt): void +static native _CanvasRenderer_fillRect(ptr: KPointer, x: KInt, y: KInt, w: KInt, h: KInt): void +static native _CanvasRenderer_strokeRect(ptr: KPointer, x: KInt, y: KInt, w: KInt, h: KInt): void +static native _CanvasRenderer_restore(ptr: KPointer): void +static native _CanvasRenderer_save(ptr: KPointer): void +static native _CanvasRenderer_fillText(ptr: KPointer, text: KStringPtr, x: KInt, y: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_measureText(ptr: KPointer, text: KStringPtr): KPointer +static native _CanvasRenderer_strokeText(ptr: KPointer, text: KStringPtr, x: KInt, y: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_getTransform(ptr: KPointer): KPointer +static native _CanvasRenderer_resetTransform(ptr: KPointer): void +static native _CanvasRenderer_rotate(ptr: KPointer, angle: KInt): void +static native _CanvasRenderer_scale(ptr: KPointer, x: KInt, y: KInt): void +static native _CanvasRenderer_setTransform0(ptr: KPointer, a: KInt, b: KInt, c: KInt, d: KInt, e: KInt, f: KInt): void +static native _CanvasRenderer_setTransform1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_transform(ptr: KPointer, a: KInt, b: KInt, c: KInt, d: KInt, e: KInt, f: KInt): void +static native _CanvasRenderer_translate(ptr: KPointer, x: KInt, y: KInt): void +static native _CanvasRenderer_setPixelMap(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_transferFromImageBitmap(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_saveLayer(ptr: KPointer): void +static native _CanvasRenderer_restoreLayer(ptr: KPointer): void +static native _CanvasRenderer_reset(ptr: KPointer): void +static native _CanvasRenderer_getGlobalAlpha(ptr: KPointer): KInt +static native _CanvasRenderer_setGlobalAlpha(ptr: KPointer, globalAlpha: KInt): void +static native _CanvasRenderer_getGlobalCompositeOperation(ptr: KPointer): string +static native _CanvasRenderer_setGlobalCompositeOperation(ptr: KPointer, globalCompositeOperation: KStringPtr): void +static native _CanvasRenderer_setFillStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_setStrokeStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CanvasRenderer_getFilter(ptr: KPointer): string +static native _CanvasRenderer_setFilter(ptr: KPointer, filter: KStringPtr): void +static native _CanvasRenderer_getImageSmoothingEnabled(ptr: KPointer): boolean +static native _CanvasRenderer_setImageSmoothingEnabled(ptr: KPointer, imageSmoothingEnabled: KInt): void +static native _CanvasRenderer_getImageSmoothingQuality(ptr: KPointer): KPointer +static native _CanvasRenderer_setImageSmoothingQuality(ptr: KPointer, imageSmoothingQuality: KStringPtr): void +static native _CanvasRenderer_getLineCap(ptr: KPointer): KPointer +static native _CanvasRenderer_setLineCap(ptr: KPointer, lineCap: KStringPtr): void +static native _CanvasRenderer_getLineDashOffset(ptr: KPointer): KInt +static native _CanvasRenderer_setLineDashOffset(ptr: KPointer, lineDashOffset: KInt): void +static native _CanvasRenderer_getLineJoin(ptr: KPointer): KPointer +static native _CanvasRenderer_setLineJoin(ptr: KPointer, lineJoin: KStringPtr): void +static native _CanvasRenderer_getLineWidth(ptr: KPointer): KInt +static native _CanvasRenderer_setLineWidth(ptr: KPointer, lineWidth: KInt): void +static native _CanvasRenderer_getMiterLimit(ptr: KPointer): KInt +static native _CanvasRenderer_setMiterLimit(ptr: KPointer, miterLimit: KInt): void +static native _CanvasRenderer_getShadowBlur(ptr: KPointer): KInt +static native _CanvasRenderer_setShadowBlur(ptr: KPointer, shadowBlur: KInt): void +static native _CanvasRenderer_getShadowColor(ptr: KPointer): string +static native _CanvasRenderer_setShadowColor(ptr: KPointer, shadowColor: KStringPtr): void +static native _CanvasRenderer_getShadowOffsetX(ptr: KPointer): KInt +static native _CanvasRenderer_setShadowOffsetX(ptr: KPointer, shadowOffsetX: KInt): void +static native _CanvasRenderer_getShadowOffsetY(ptr: KPointer): KInt +static native _CanvasRenderer_setShadowOffsetY(ptr: KPointer, shadowOffsetY: KInt): void +static native _CanvasRenderer_getDirection(ptr: KPointer): KPointer +static native _CanvasRenderer_setDirection(ptr: KPointer, direction: KStringPtr): void +static native _CanvasRenderer_getFont(ptr: KPointer): string +static native _CanvasRenderer_setFont(ptr: KPointer, font: KStringPtr): void +static native _CanvasRenderer_getTextAlign(ptr: KPointer): KPointer +static native _CanvasRenderer_setTextAlign(ptr: KPointer, textAlign: KStringPtr): void +static native _CanvasRenderer_getTextBaseline(ptr: KPointer): KPointer +static native _CanvasRenderer_setTextBaseline(ptr: KPointer, textBaseline: KStringPtr): void +static native _CanvasRenderingContext2D_ctor(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _CanvasRenderingContext2D_getFinalizer(): KPointer +static native _CanvasRenderingContext2D_toDataURL(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _CanvasRenderingContext2D_startImageAnalyzer(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _CanvasRenderingContext2D_stopImageAnalyzer(ptr: KPointer): void +static native _CanvasRenderingContext2D_getHeight(ptr: KPointer): KInt +static native _CanvasRenderingContext2D_getWidth(ptr: KPointer): KInt +static native _DrawingRenderingContext_ctor(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _DrawingRenderingContext_getFinalizer(): KPointer +static native _DrawingRenderingContext_invalidate(ptr: KPointer): void +static native _IMonitor_ctor(): KPointer +static native _IMonitor_getFinalizer(): KPointer +static native _IMonitor_value(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _IMonitor_setDirty(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AnimatableArithmetic_ctor(): KPointer +static native _AnimatableArithmetic_getFinalizer(): KPointer +static native _AnimatableArithmetic_plus(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _AnimatableArithmetic_subtract(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _AnimatableArithmetic_multiply(ptr: KPointer, scale: KInt): KPointer +static native _AnimatableArithmetic_equals(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _ICurve_ctor(): KPointer +static native _ICurve_getFinalizer(): KPointer +static native _ICurve_interpolate(ptr: KPointer, fraction: KInt): KPointer +static native _DrawModifier_ctor(): KPointer +static native _DrawModifier_getFinalizer(): KPointer +static native _DrawModifier_drawBehind(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DrawModifier_drawContent(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DrawModifier_drawFront(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _DrawModifier_invalidate(ptr: KPointer): void +static native _TransitionEffect_ctor(type: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _TransitionEffect_getFinalizer(): KPointer +static native _TransitionEffect_translate(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _TransitionEffect_rotate(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _TransitionEffect_scale(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _TransitionEffect_opacity(alpha: KInt): KPointer +static native _TransitionEffect_move(edge: KInt): KPointer +static native _TransitionEffect_asymmetric(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _TransitionEffect_animation(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _TransitionEffect_combine(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _PixelMapMock_ctor(): KPointer +static native _PixelMapMock_getFinalizer(): KPointer +static native _PixelMapMock_release(ptr: KPointer): void +static native _ProgressMask_ctor(value: KInt, total: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _ProgressMask_getFinalizer(): KPointer +static native _ProgressMask_updateProgress(ptr: KPointer, value: KInt): void +static native _ProgressMask_updateColor(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ProgressMask_enableBreathingAnimation(ptr: KPointer, value: KInt): void +static native _AttributeModifier_ctor(): KPointer +static native _AttributeModifier_getFinalizer(): KPointer +static native _AttributeModifier_applyNormalAttribute(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AttributeModifier_applyPressedAttribute(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AttributeModifier_applyFocusedAttribute(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AttributeModifier_applyDisabledAttribute(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AttributeModifier_applySelectedAttribute(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ContentModifier_ctor(): KPointer +static native _ContentModifier_getFinalizer(): KPointer +static native _ContentModifier_applyContent(ptr: KPointer): KPointer +static native _Measurable_ctor(): KPointer +static native _Measurable_getFinalizer(): KPointer +static native _Measurable_measure(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _Measurable_getMargin(ptr: KPointer): KPointer +static native _Measurable_getPadding(ptr: KPointer): KPointer +static native _Measurable_getBorderWidth(ptr: KPointer): KPointer +static native _View_ctor(): KPointer +static native _View_getFinalizer(): KPointer +static native _View_create(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _TextContentControllerBase_ctor(): KPointer +static native _TextContentControllerBase_getFinalizer(): KPointer +static native _TextContentControllerBase_getCaretOffset(ptr: KPointer): KPointer +static native _TextContentControllerBase_getTextContentRect(ptr: KPointer): KPointer +static native _TextContentControllerBase_getTextContentLineCount(ptr: KPointer): KPointer +static native _DynamicNode_ctor(): KPointer +static native _DynamicNode_getFinalizer(): KPointer +static native _DynamicNode_onMove(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _ChildrenMainSize_ctor(childDefaultSize: KInt): KPointer +static native _ChildrenMainSize_getFinalizer(): KPointer +static native _ChildrenMainSize_splice(ptr: KPointer, start: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ChildrenMainSize_update(ptr: KPointer, index: KInt, childSize: KInt): void +static native _ChildrenMainSize_getChildDefaultSize(ptr: KPointer): KInt +static native _GestureModifier_ctor(): KPointer +static native _GestureModifier_getFinalizer(): KPointer +static native _GestureModifier_applyGesture(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AbstractProperty_ctor(): KPointer +static native _AbstractProperty_getFinalizer(): KPointer +static native _AbstractProperty_get(ptr: KPointer): KPointer +static native _AbstractProperty_set(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _AbstractProperty_info(ptr: KPointer): KPointer +static native _IPropertySubscriber_ctor(): KPointer +static native _IPropertySubscriber_getFinalizer(): KPointer +static native _IPropertySubscriber_id(ptr: KPointer): KPointer +static native _IPropertySubscriber_aboutToBeDeleted(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ISinglePropertyChangeSubscriber_ctor(): KPointer +static native _ISinglePropertyChangeSubscriber_getFinalizer(): KPointer +static native _ISinglePropertyChangeSubscriber_hasChanged(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SubscribaleAbstract_ctor(): KPointer +static native _SubscribaleAbstract_getFinalizer(): KPointer +static native _SubscribaleAbstract_notifyPropertyHasChanged(ptr: KPointer, propName: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SubscribaleAbstract_addOwningProperty(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SubscribaleAbstract_removeOwningProperty(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SubscribaleAbstract_removeOwningPropertyById(ptr: KPointer, subscriberId: KInt): void +static native _ContextMenu_ctor(): KPointer +static native _ContextMenu_getFinalizer(): KPointer +static native _ContextMenu_close(): KPointer +static native _CustomDialogController_ctor(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _CustomDialogController_getFinalizer(): KPointer +static native _CustomDialogController_open(ptr: KPointer): KPointer +static native _CustomDialogController_close(ptr: KPointer): KPointer +static native _DatePickerDialog_ctor(): KPointer +static native _DatePickerDialog_getFinalizer(): KPointer +static native _DatePickerDialog_show(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _PanGestureOptions_ctor(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _PanGestureOptions_getFinalizer(): KPointer +static native _PanGestureOptions_setDirection(ptr: KPointer, value: KInt): KPointer +static native _PanGestureOptions_setDistance(ptr: KPointer, value: KInt): KPointer +static native _PanGestureOptions_setFingers(ptr: KPointer, value: KInt): KPointer +static native _PanGestureOptions_getDirection(ptr: KPointer): KPointer +static native _ScrollableTargetInfo_ctor(): KPointer +static native _ScrollableTargetInfo_getFinalizer(): KPointer +static native _ScrollableTargetInfo_isBegin(ptr: KPointer): KPointer +static native _ScrollableTargetInfo_isEnd(ptr: KPointer): KPointer +static native _EventTargetInfo_ctor(): KPointer +static native _EventTargetInfo_getFinalizer(): KPointer +static native _EventTargetInfo_getId(ptr: KPointer): KPointer +static native _GestureRecognizer_ctor(): KPointer +static native _GestureRecognizer_getFinalizer(): KPointer +static native _GestureRecognizer_getTag(ptr: KPointer): KPointer +static native _GestureRecognizer_getType(ptr: KPointer): KPointer +static native _GestureRecognizer_isBuiltIn(ptr: KPointer): KPointer +static native _GestureRecognizer_setEnabled(ptr: KPointer, isEnabled: KInt): void +static native _GestureRecognizer_isEnabled(ptr: KPointer): KPointer +static native _GestureRecognizer_getState(ptr: KPointer): KPointer +static native _GestureRecognizer_getEventTargetInfo(ptr: KPointer): KPointer +static native _GestureRecognizer_isValid(ptr: KPointer): KPointer +static native _PanRecognizer_ctor(): KPointer +static native _PanRecognizer_getFinalizer(): KPointer +static native _PanRecognizer_getPanGestureOptions(ptr: KPointer): KPointer +static native _ImageAnalyzerController_ctor(): KPointer +static native _ImageAnalyzerController_getFinalizer(): KPointer +static native _ImageAnalyzerController_getImageAnalyzerSupportTypes(ptr: KPointer): KPointer +static native _ListScroller_ctor(): KPointer +static native _ListScroller_getFinalizer(): KPointer +static native _ListScroller_getItemRectInGroup(ptr: KPointer, index: KInt, indexInGroup: KInt): KPointer +static native _ListScroller_scrollToItemInGroup(ptr: KPointer, index: KInt, indexInGroup: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListScroller_closeAllSwipeActions(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ListScroller_getVisibleListContentInfo(ptr: KPointer, x: KInt, y: KInt): KPointer +static native _Matrix2D_ctor(): KPointer +static native _Matrix2D_getFinalizer(): KPointer +static native _Matrix2D_identity(ptr: KPointer): KPointer +static native _Matrix2D_invert(ptr: KPointer): KPointer +static native _Matrix2D_multiply(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _Matrix2D_rotate0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _Matrix2D_rotate1(ptr: KPointer, degree: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _Matrix2D_translate(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _Matrix2D_scale(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _Matrix2D_getScaleX(ptr: KPointer): KInt +static native _Matrix2D_setScaleX(ptr: KPointer, scaleX: KInt): void +static native _Matrix2D_getRotateY(ptr: KPointer): KInt +static native _Matrix2D_setRotateY(ptr: KPointer, rotateY: KInt): void +static native _Matrix2D_getRotateX(ptr: KPointer): KInt +static native _Matrix2D_setRotateX(ptr: KPointer, rotateX: KInt): void +static native _Matrix2D_getScaleY(ptr: KPointer): KInt +static native _Matrix2D_setScaleY(ptr: KPointer, scaleY: KInt): void +static native _Matrix2D_getTranslateX(ptr: KPointer): KInt +static native _Matrix2D_setTranslateX(ptr: KPointer, translateX: KInt): void +static native _Matrix2D_getTranslateY(ptr: KPointer): KInt +static native _Matrix2D_setTranslateY(ptr: KPointer, translateY: KInt): void +static native _NavDestinationContext_ctor(): KPointer +static native _NavDestinationContext_getFinalizer(): KPointer +static native _NavDestinationContext_getConfigInRouteMap(ptr: KPointer): KPointer +static native _NavDestinationContext_setPathInfo(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationContext_setPathStack(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavDestinationContext_getNavDestinationId(ptr: KPointer): string +static native _NavDestinationContext_setNavDestinationId(ptr: KPointer, navDestinationId: KStringPtr): void +static native _NavPathStack_ctor(): KPointer +static native _NavPathStack_getFinalizer(): KPointer +static native _NavPathStack_pushPath0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavPathStack_pushPath1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavPathStack_pushDestination0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _NavPathStack_pushDestination1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _NavPathStack_pushPathByName0(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavPathStack_pushPathByName1(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32, onPop: KInt): void +static native _NavPathStack_pushDestinationByName0(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _NavPathStack_pushDestinationByName1(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32, onPop: KInt): KPointer +static native _NavPathStack_replacePath0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavPathStack_replacePath1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavPathStack_replacePathByName(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavPathStack_removeByIndexes(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _NavPathStack_removeByName(ptr: KPointer, name: KStringPtr): KPointer +static native _NavPathStack_removeByNavDestinationId(ptr: KPointer, navDestinationId: KStringPtr): KPointer +static native _NavPathStack_pop0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _NavPathStack_pop1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _NavPathStack_popToName0(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _NavPathStack_popToName1(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _NavPathStack_popToIndex0(ptr: KPointer, index: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavPathStack_popToIndex1(ptr: KPointer, index: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavPathStack_moveToTop(ptr: KPointer, name: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _NavPathStack_moveIndexToTop(ptr: KPointer, index: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavPathStack_clear(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavPathStack_getAllPathName(ptr: KPointer): KPointer +static native _NavPathStack_getParamByIndex(ptr: KPointer, index: KInt): KPointer +static native _NavPathStack_getParamByName(ptr: KPointer, name: KStringPtr): KPointer +static native _NavPathStack_getIndexByName(ptr: KPointer, name: KStringPtr): KPointer +static native _NavPathStack_getParent(ptr: KPointer): KPointer +static native _NavPathStack_size(ptr: KPointer): KPointer +static native _NavPathStack_disableAnimation(ptr: KPointer, value: KInt): void +static native _NavPathStack_setInterception(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationTransitionProxy_ctor(): KPointer +static native _NavigationTransitionProxy_getFinalizer(): KPointer +static native _NavigationTransitionProxy_finishTransition(ptr: KPointer): void +static native _NavigationTransitionProxy_cancelTransition(ptr: KPointer): void +static native _NavigationTransitionProxy_updateTransition(ptr: KPointer, progress: KInt): void +static native _NavigationTransitionProxy_setFrom(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationTransitionProxy_setTo(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _NavigationTransitionProxy_getIsInteractive(ptr: KPointer): boolean +static native _NavigationTransitionProxy_setIsInteractive(ptr: KPointer, isInteractive: KInt): void +static native _PatternLockController_ctor(): KPointer +static native _PatternLockController_getFinalizer(): KPointer +static native _PatternLockController_reset(ptr: KPointer): KPointer +static native _PatternLockController_setChallengeResult(ptr: KPointer, result: KInt): void +static native _RichEditorBaseController_ctor(): KPointer +static native _RichEditorBaseController_getFinalizer(): KPointer +static native _RichEditorBaseController_getCaretOffset(ptr: KPointer): KPointer +static native _RichEditorBaseController_setCaretOffset(ptr: KPointer, offset: KInt): KPointer +static native _RichEditorBaseController_closeSelectionMenu(ptr: KPointer): void +static native _RichEditorBaseController_getTypingStyle(ptr: KPointer): KPointer +static native _RichEditorBaseController_setTypingStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorBaseController_setSelection(ptr: KPointer, selectionStart: KInt, selectionEnd: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorBaseController_isEditing(ptr: KPointer): KPointer +static native _RichEditorBaseController_stopEditing(ptr: KPointer): void +static native _RichEditorBaseController_getLayoutManager(ptr: KPointer): KPointer +static native _RichEditorBaseController_getPreviewText(ptr: KPointer): KPointer +static native _RichEditorController_ctor(): KPointer +static native _RichEditorController_getFinalizer(): KPointer +static native _RichEditorController_addTextSpan(ptr: KPointer, value: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _RichEditorController_addImageSpan(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _RichEditorController_addBuilderSpan(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _RichEditorController_addSymbolSpan(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _RichEditorController_updateSpanStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorController_updateParagraphStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorController_deleteSpans(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorController_getSpans(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _RichEditorController_getParagraphs(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _RichEditorController_getSelection(ptr: KPointer): KPointer +static native _RichEditorController_fromStyledString(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _RichEditorController_toStyledString(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _RichEditorStyledStringController_ctor(): KPointer +static native _RichEditorStyledStringController_getFinalizer(): KPointer +static native _RichEditorStyledStringController_setStyledString(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _RichEditorStyledStringController_getStyledString(ptr: KPointer): KPointer +static native _RichEditorStyledStringController_getSelection(ptr: KPointer): KPointer +static native _RichEditorStyledStringController_onContentChanged(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _Scroller_ctor(): KPointer +static native _Scroller_getFinalizer(): KPointer +static native _Scroller_scrollTo(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _Scroller_scrollEdge(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _Scroller_fling(ptr: KPointer, velocity: KInt): void +static native _Scroller_scrollPage0(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _Scroller_scrollPage1(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _Scroller_currentOffset(ptr: KPointer): KPointer +static native _Scroller_scrollToIndex(ptr: KPointer, value: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _Scroller_scrollBy(ptr: KPointer, dx: string|number|object, dy: string|number|object): KPointer +static native _Scroller_isAtEnd(ptr: KPointer): KPointer +static native _Scroller_getItemRect(ptr: KPointer, index: KInt): KPointer +static native _Scroller_getItemIndex(ptr: KPointer, x: KInt, y: KInt): KPointer +static native _SearchController_ctor(): KPointer +static native _SearchController_getFinalizer(): KPointer +static native _SearchController_caretPosition(ptr: KPointer, value: KInt): void +static native _SearchController_stopEditing(ptr: KPointer): void +static native _SearchController_setTextSelection(ptr: KPointer, selectionStart: KInt, selectionEnd: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _SwiperController_ctor(): KPointer +static native _SwiperController_getFinalizer(): KPointer +static native _SwiperController_showNext(ptr: KPointer): KPointer +static native _SwiperController_showPrevious(ptr: KPointer): KPointer +static native _SwiperController_changeIndex(ptr: KPointer, index: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _SwiperController_finishAnimation(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _SwiperContentTransitionProxy_ctor(): KPointer +static native _SwiperContentTransitionProxy_getFinalizer(): KPointer +static native _SwiperContentTransitionProxy_finishTransition(ptr: KPointer): void +static native _SwiperContentTransitionProxy_getSelectedIndex(ptr: KPointer): KInt +static native _SwiperContentTransitionProxy_setSelectedIndex(ptr: KPointer, selectedIndex: KInt): void +static native _SwiperContentTransitionProxy_getIndex(ptr: KPointer): KInt +static native _SwiperContentTransitionProxy_setIndex(ptr: KPointer, index: KInt): void +static native _SwiperContentTransitionProxy_getPosition(ptr: KPointer): KInt +static native _SwiperContentTransitionProxy_setPosition(ptr: KPointer, position: KInt): void +static native _SwiperContentTransitionProxy_getMainAxisLength(ptr: KPointer): KInt +static native _SwiperContentTransitionProxy_setMainAxisLength(ptr: KPointer, mainAxisLength: KInt): void +static native _TabsController_ctor(): KPointer +static native _TabsController_getFinalizer(): KPointer +static native _TabsController_changeIndex(ptr: KPointer, value: KInt): void +static native _TabsController_preloadItems(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _TabContentTransitionProxy_ctor(): KPointer +static native _TabContentTransitionProxy_getFinalizer(): KPointer +static native _TabContentTransitionProxy_finishTransition(ptr: KPointer): void +static native _TabContentTransitionProxy_getFrom(ptr: KPointer): KInt +static native _TabContentTransitionProxy_setFrom(ptr: KPointer, from: KInt): void +static native _TabContentTransitionProxy_getTo(ptr: KPointer): KInt +static native _TabContentTransitionProxy_setTo(ptr: KPointer, to: KInt): void +static native _TextController_ctor(): KPointer +static native _TextController_getFinalizer(): KPointer +static native _TextController_closeSelectionMenu(ptr: KPointer): void +static native _TextController_setStyledString(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextController_getLayoutManager(ptr: KPointer): KPointer +static native _TextAreaController_ctor(): KPointer +static native _TextAreaController_getFinalizer(): KPointer +static native _TextAreaController_caretPosition(ptr: KPointer, value: KInt): void +static native _TextAreaController_setTextSelection(ptr: KPointer, selectionStart: KInt, selectionEnd: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextAreaController_stopEditing(ptr: KPointer): void +static native _TextClockController_ctor(): KPointer +static native _TextClockController_getFinalizer(): KPointer +static native _TextClockController_start(ptr: KPointer): KPointer +static native _TextClockController_stop(ptr: KPointer): KPointer +static native _TextBaseController_ctor(): KPointer +static native _TextBaseController_getFinalizer(): KPointer +static native _TextBaseController_setSelection(ptr: KPointer, selectionStart: KInt, selectionEnd: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextBaseController_closeSelectionMenu(ptr: KPointer): void +static native _TextBaseController_getLayoutManager(ptr: KPointer): KPointer +static native _TextEditControllerEx_ctor(): KPointer +static native _TextEditControllerEx_getFinalizer(): KPointer +static native _TextEditControllerEx_isEditing(ptr: KPointer): KPointer +static native _TextEditControllerEx_stopEditing(ptr: KPointer): void +static native _TextEditControllerEx_setCaretOffset(ptr: KPointer, offset: KInt): KPointer +static native _TextEditControllerEx_getCaretOffset(ptr: KPointer): KPointer +static native _TextEditControllerEx_getPreviewText(ptr: KPointer): KPointer +static native _StyledStringController_ctor(): KPointer +static native _StyledStringController_getFinalizer(): KPointer +static native _StyledStringController_setStyledString(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _StyledStringController_getStyledString(ptr: KPointer): KPointer +static native _LayoutManager_ctor(): KPointer +static native _LayoutManager_getFinalizer(): KPointer +static native _LayoutManager_getLineCount(ptr: KPointer): KPointer +static native _LayoutManager_getGlyphPositionAtCoordinate(ptr: KPointer, x: KInt, y: KInt): KPointer +static native _LayoutManager_getLineMetrics(ptr: KPointer, lineNumber: KInt): KPointer +static native _LayoutManager_getRectsForRange(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _EditMenuOptions_ctor(): KPointer +static native _EditMenuOptions_getFinalizer(): KPointer +static native _EditMenuOptions_onCreateMenu(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _EditMenuOptions_onMenuItemClick(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _TextInputController_ctor(): KPointer +static native _TextInputController_getFinalizer(): KPointer +static native _TextInputController_caretPosition(ptr: KPointer, value: KInt): void +static native _TextInputController_setTextSelection(ptr: KPointer, selectionStart: KInt, selectionEnd: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _TextInputController_stopEditing(ptr: KPointer): void +static native _TextPickerDialog_ctor(): KPointer +static native _TextPickerDialog_getFinalizer(): KPointer +static native _TextPickerDialog_show(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _TextTimerController_ctor(): KPointer +static native _TextTimerController_getFinalizer(): KPointer +static native _TextTimerController_start(ptr: KPointer): KPointer +static native _TextTimerController_pause(ptr: KPointer): KPointer +static native _TextTimerController_reset(ptr: KPointer): KPointer +static native _TimePickerDialog_ctor(): KPointer +static native _TimePickerDialog_getFinalizer(): KPointer +static native _TimePickerDialog_show(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _VideoController_ctor(): KPointer +static native _VideoController_getFinalizer(): KPointer +static native _VideoController_start(ptr: KPointer): KPointer +static native _VideoController_pause(ptr: KPointer): KPointer +static native _VideoController_stop(ptr: KPointer): KPointer +static native _VideoController_setCurrentTime0(ptr: KPointer, value: KInt): KPointer +static native _VideoController_requestFullscreen(ptr: KPointer, value: KInt): KPointer +static native _VideoController_exitFullscreen(ptr: KPointer): KPointer +static native _VideoController_setCurrentTime1(ptr: KPointer, value: KInt, seekMode: KInt): KPointer +static native _VideoController_reset(ptr: KPointer): void +static native _WebKeyboardController_ctor(): KPointer +static native _WebKeyboardController_getFinalizer(): KPointer +static native _WebKeyboardController_insertText(ptr: KPointer, text: KStringPtr): void +static native _WebKeyboardController_deleteForward(ptr: KPointer, length: KInt): void +static native _WebKeyboardController_deleteBackward(ptr: KPointer, length: KInt): void +static native _WebKeyboardController_sendFunctionKey(ptr: KPointer, key: KInt): void +static native _WebKeyboardController_close(ptr: KPointer): void +static native _FullScreenExitHandler_ctor(): KPointer +static native _FullScreenExitHandler_getFinalizer(): KPointer +static native _FullScreenExitHandler_exitFullScreen(ptr: KPointer): void +static native _FileSelectorParam_ctor(): KPointer +static native _FileSelectorParam_getFinalizer(): KPointer +static native _FileSelectorParam_getTitle(ptr: KPointer): KPointer +static native _FileSelectorParam_getMode(ptr: KPointer): KPointer +static native _FileSelectorParam_getAcceptType(ptr: KPointer): KPointer +static native _FileSelectorParam_isCapture(ptr: KPointer): KPointer +static native _JsResult_ctor(): KPointer +static native _JsResult_getFinalizer(): KPointer +static native _JsResult_handleCancel(ptr: KPointer): void +static native _JsResult_handleConfirm(ptr: KPointer): void +static native _JsResult_handlePromptConfirm(ptr: KPointer, result: KStringPtr): void +static native _FileSelectorResult_ctor(): KPointer +static native _FileSelectorResult_getFinalizer(): KPointer +static native _FileSelectorResult_handleFileList(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _HttpAuthHandler_ctor(): KPointer +static native _HttpAuthHandler_getFinalizer(): KPointer +static native _HttpAuthHandler_confirm(ptr: KPointer, userName: KStringPtr, password: KStringPtr): KPointer +static native _HttpAuthHandler_cancel(ptr: KPointer): void +static native _HttpAuthHandler_isHttpAuthInfoSaved(ptr: KPointer): KPointer +static native _SslErrorHandler_ctor(): KPointer +static native _SslErrorHandler_getFinalizer(): KPointer +static native _SslErrorHandler_handleConfirm(ptr: KPointer): void +static native _SslErrorHandler_handleCancel(ptr: KPointer): void +static native _ClientAuthenticationHandler_ctor(): KPointer +static native _ClientAuthenticationHandler_getFinalizer(): KPointer +static native _ClientAuthenticationHandler_confirm0(ptr: KPointer, priKeyFile: KStringPtr, certChainFile: KStringPtr): void +static native _ClientAuthenticationHandler_confirm1(ptr: KPointer, authUri: KStringPtr): void +static native _ClientAuthenticationHandler_cancel(ptr: KPointer): void +static native _ClientAuthenticationHandler_ignore(ptr: KPointer): void +static native _PermissionRequest_ctor(): KPointer +static native _PermissionRequest_getFinalizer(): KPointer +static native _PermissionRequest_deny(ptr: KPointer): void +static native _PermissionRequest_getOrigin(ptr: KPointer): KPointer +static native _PermissionRequest_getAccessibleResource(ptr: KPointer): KPointer +static native _PermissionRequest_grant(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScreenCaptureHandler_ctor(): KPointer +static native _ScreenCaptureHandler_getFinalizer(): KPointer +static native _ScreenCaptureHandler_getOrigin(ptr: KPointer): KPointer +static native _ScreenCaptureHandler_grant(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _ScreenCaptureHandler_deny(ptr: KPointer): void +static native _DataResubmissionHandler_ctor(): KPointer +static native _DataResubmissionHandler_getFinalizer(): KPointer +static native _DataResubmissionHandler_resend(ptr: KPointer): void +static native _DataResubmissionHandler_cancel(ptr: KPointer): void +static native _ControllerHandler_ctor(): KPointer +static native _ControllerHandler_getFinalizer(): KPointer +static native _ControllerHandler_setWebController(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebContextMenuParam_ctor(): KPointer +static native _WebContextMenuParam_getFinalizer(): KPointer +static native _WebContextMenuParam_x(ptr: KPointer): KPointer +static native _WebContextMenuParam_y(ptr: KPointer): KPointer +static native _WebContextMenuParam_getLinkUrl(ptr: KPointer): KPointer +static native _WebContextMenuParam_getUnfilteredLinkUrl(ptr: KPointer): KPointer +static native _WebContextMenuParam_getSourceUrl(ptr: KPointer): KPointer +static native _WebContextMenuParam_existsImageContents(ptr: KPointer): KPointer +static native _WebContextMenuParam_getMediaType(ptr: KPointer): KPointer +static native _WebContextMenuParam_getSelectionText(ptr: KPointer): KPointer +static native _WebContextMenuParam_getSourceType(ptr: KPointer): KPointer +static native _WebContextMenuParam_getInputFieldType(ptr: KPointer): KPointer +static native _WebContextMenuParam_isEditable(ptr: KPointer): KPointer +static native _WebContextMenuParam_getEditStateFlags(ptr: KPointer): KPointer +static native _WebContextMenuResult_ctor(): KPointer +static native _WebContextMenuResult_getFinalizer(): KPointer +static native _WebContextMenuResult_closeContextMenu(ptr: KPointer): void +static native _WebContextMenuResult_copyImage(ptr: KPointer): void +static native _WebContextMenuResult_copy(ptr: KPointer): void +static native _WebContextMenuResult_paste(ptr: KPointer): void +static native _WebContextMenuResult_cut(ptr: KPointer): void +static native _WebContextMenuResult_selectAll(ptr: KPointer): void +static native _ConsoleMessage_ctor(message: KStringPtr, sourceId: KStringPtr, lineNumber: KInt, messageLevel: KInt): KPointer +static native _ConsoleMessage_getFinalizer(): KPointer +static native _ConsoleMessage_getMessage(ptr: KPointer): KPointer +static native _ConsoleMessage_getSourceId(ptr: KPointer): KPointer +static native _ConsoleMessage_getLineNumber(ptr: KPointer): KPointer +static native _ConsoleMessage_getMessageLevel(ptr: KPointer): KPointer +static native _WebResourceRequest_ctor(): KPointer +static native _WebResourceRequest_getFinalizer(): KPointer +static native _WebResourceRequest_getRequestHeader(ptr: KPointer): KPointer +static native _WebResourceRequest_getRequestUrl(ptr: KPointer): KPointer +static native _WebResourceRequest_isRequestGesture(ptr: KPointer): KPointer +static native _WebResourceRequest_isMainFrame(ptr: KPointer): KPointer +static native _WebResourceRequest_isRedirect(ptr: KPointer): KPointer +static native _WebResourceRequest_getRequestMethod(ptr: KPointer): KPointer +static native _WebResourceResponse_ctor(): KPointer +static native _WebResourceResponse_getFinalizer(): KPointer +static native _WebResourceResponse_getResponseData(ptr: KPointer): KPointer +static native _WebResourceResponse_getResponseDataEx(ptr: KPointer): KPointer +static native _WebResourceResponse_getResponseEncoding(ptr: KPointer): KPointer +static native _WebResourceResponse_getResponseMimeType(ptr: KPointer): KPointer +static native _WebResourceResponse_getReasonMessage(ptr: KPointer): KPointer +static native _WebResourceResponse_getResponseHeader(ptr: KPointer): KPointer +static native _WebResourceResponse_getResponseCode(ptr: KPointer): KPointer +static native _WebResourceResponse_setResponseData(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebResourceResponse_setResponseEncoding(ptr: KPointer, encoding: KStringPtr): void +static native _WebResourceResponse_setResponseMimeType(ptr: KPointer, mimeType: KStringPtr): void +static native _WebResourceResponse_setReasonMessage(ptr: KPointer, reason: KStringPtr): void +static native _WebResourceResponse_setResponseHeader(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _WebResourceResponse_setResponseCode(ptr: KPointer, code: KInt): void +static native _WebResourceResponse_setResponseIsReady(ptr: KPointer, IsReady: KInt): void +static native _WebResourceResponse_getResponseIsReady(ptr: KPointer): KPointer +static native _WebResourceError_ctor(): KPointer +static native _WebResourceError_getFinalizer(): KPointer +static native _WebResourceError_getErrorInfo(ptr: KPointer): KPointer +static native _WebResourceError_getErrorCode(ptr: KPointer): KPointer +static native _JsGeolocation_ctor(): KPointer +static native _JsGeolocation_getFinalizer(): KPointer +static native _JsGeolocation_invoke(ptr: KPointer, origin: KStringPtr, allow: KInt, retain: KInt): void +static native _WebCookie_ctor(): KPointer +static native _WebCookie_getFinalizer(): KPointer +static native _WebCookie_setCookie(ptr: KPointer): KPointer +static native _WebCookie_saveCookie(ptr: KPointer): KPointer +static native _EventResult_ctor(): KPointer +static native _EventResult_getFinalizer(): KPointer +static native _EventResult_setGestureEventResult(ptr: KPointer, result: KInt): void +static native _WebController_ctor(): KPointer +static native _WebController_getFinalizer(): KPointer +static native _WebController_onInactive(ptr: KPointer): void +static native _WebController_onActive(ptr: KPointer): void +static native _WebController_zoom(ptr: KPointer, factor: KInt): void +static native _WebController_clearHistory(ptr: KPointer): void +static native _WebController_runJavaScript(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _WebController_loadData(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _WebController_loadUrl(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _WebController_refresh(ptr: KPointer): KPointer +static native _WebController_stop(ptr: KPointer): KPointer +static native _WebController_registerJavaScriptProxy(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _WebController_deleteJavaScriptRegister(ptr: KPointer, name: KStringPtr): KPointer +static native _WebController_getHitTest(ptr: KPointer): KPointer +static native _WebController_requestFocus(ptr: KPointer): KPointer +static native _WebController_accessBackward(ptr: KPointer): KPointer +static native _WebController_accessForward(ptr: KPointer): KPointer +static native _WebController_accessStep(ptr: KPointer, step: KInt): KPointer +static native _WebController_backward(ptr: KPointer): KPointer +static native _WebController_forward(ptr: KPointer): KPointer +static native _WebController_getCookieManager(ptr: KPointer): KPointer +static native _XComponentController_ctor(): KPointer +static native _XComponentController_getFinalizer(): KPointer +static native _XComponentController_getXComponentSurfaceId(ptr: KPointer): KPointer +static native _XComponentController_getXComponentContext(ptr: KPointer): KPointer +static native _XComponentController_setXComponentSurfaceSize(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _XComponentController_setXComponentSurfaceRect(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _XComponentController_getXComponentSurfaceRect(ptr: KPointer): KPointer +static native _XComponentController_setXComponentSurfaceRotation(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _XComponentController_getXComponentSurfaceRotation(ptr: KPointer): KPointer +static native _XComponentController_onSurfaceCreated(ptr: KPointer, surfaceId: KStringPtr): void +static native _XComponentController_onSurfaceChanged(ptr: KPointer, surfaceId: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _XComponentController_onSurfaceDestroyed(ptr: KPointer, surfaceId: KStringPtr): void +static native _XComponentController_startImageAnalyzer(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _XComponentController_stopImageAnalyzer(ptr: KPointer): void +static native _WaterFlowSections_ctor(): KPointer +static native _WaterFlowSections_getFinalizer(): KPointer +static native _WaterFlowSections_splice(ptr: KPointer, start: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _WaterFlowSections_push(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _WaterFlowSections_update(ptr: KPointer, sectionIndex: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _WaterFlowSections_values(ptr: KPointer): KPointer +static native _WaterFlowSections_length(ptr: KPointer): KPointer +static native _StyledString_ctor(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _StyledString_getFinalizer(): KPointer +static native _StyledString_getString(ptr: KPointer): KPointer +static native _StyledString_getStyles(ptr: KPointer, start: KInt, length: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _StyledString_equals(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _StyledString_subStyledString(ptr: KPointer, start: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _StyledString_marshalling(thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _StyledString_getLength(ptr: KPointer): KInt +static native _MutableStyledString_ctor(): KPointer +static native _MutableStyledString_getFinalizer(): KPointer +static native _MutableStyledString_replaceString(ptr: KPointer, start: KInt, length: KInt, other: KStringPtr): void +static native _MutableStyledString_insertString(ptr: KPointer, start: KInt, other: KStringPtr): void +static native _MutableStyledString_removeString(ptr: KPointer, start: KInt, length: KInt): void +static native _MutableStyledString_replaceStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MutableStyledString_setStyle(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MutableStyledString_removeStyle(ptr: KPointer, start: KInt, length: KInt, styledKey: KInt): void +static native _MutableStyledString_removeStyles(ptr: KPointer, start: KInt, length: KInt): void +static native _MutableStyledString_clearStyles(ptr: KPointer): void +static native _MutableStyledString_replaceStyledString(ptr: KPointer, start: KInt, length: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MutableStyledString_insertStyledString(ptr: KPointer, start: KInt, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _MutableStyledString_appendStyledString(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CustomSpan_ctor(): KPointer +static native _CustomSpan_getFinalizer(): KPointer +static native _CustomSpan_onMeasure(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _CustomSpan_onDraw(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CustomSpan_invalidate(ptr: KPointer): void +static native _LinearIndicatorController_ctor(): KPointer +static native _LinearIndicatorController_getFinalizer(): KPointer +static native _LinearIndicatorController_setProgress(ptr: KPointer, index: KInt, progress: KInt): void +static native _LinearIndicatorController_start(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _LinearIndicatorController_pause(ptr: KPointer): void +static native _LinearIndicatorController_stop(ptr: KPointer): void +static native _UIExtensionProxy_ctor(): KPointer +static native _UIExtensionProxy_getFinalizer(): KPointer +static native _UIExtensionProxy_send(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _UIExtensionProxy_sendSync(ptr: KPointer, thisArray: KUint8ArrayPtr, thisLength: int32): KPointer +static native _UIExtensionProxy_on0(ptr: KPointer, type: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _UIExtensionProxy_on1(ptr: KPointer, type: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _UIExtensionProxy_off0(ptr: KPointer, type: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _UIExtensionProxy_off1(ptr: KPointer, type: KStringPtr, thisArray: KUint8ArrayPtr, thisLength: int32): void +static native _CheckArkoalaGeneratedEvents(result: KUint8ArrayPtr, size: KInt): KInt +static native _TestCallIntNoArgs(arg0: KInt): KInt +static native _TestCallIntIntArraySum(arg0: KInt, arg1: Int32Array, arg2: KInt): KInt +static native _TestCallVoidIntArrayPrefixSum(arg0: KInt, arr: Int32Array, arg2: KInt): void +static native _TestCallIntRecursiveCallback(arg0: KInt, arr: KUint8ArrayPtr, arg2: KInt): KInt +static native _TestCallIntMemory(arg0: KInt, arg1: KInt): KInt +} \ No newline at end of file -- Gitee From 09875ad2fe46d2ef88ff9d670e0e60b8dfac5cf8 Mon Sep 17 00:00:00 2001 From: naumovdmitrii Date: Fri, 25 Oct 2024 17:12:04 +0300 Subject: [PATCH 4/4] SUCCESS RUN Signed-off-by: naumovdmitrii --- arkoala-arkts/framework/Application.sts | 2 +- .../loader/arktsconfig-trivial-main.json | 2 +- arkoala-arkts/loader/src/runner.ts | 45 ------------------- .../loader/src/trivial/NativeModule.ts | 2 +- .../loader/src/trivial/{main.ts => runner.ts} | 0 5 files changed, 3 insertions(+), 48 deletions(-) delete mode 100644 arkoala-arkts/loader/src/runner.ts rename arkoala-arkts/loader/src/trivial/{main.ts => runner.ts} (100%) diff --git a/arkoala-arkts/framework/Application.sts b/arkoala-arkts/framework/Application.sts index 521af8450..09cb697ea 100644 --- a/arkoala-arkts/framework/Application.sts +++ b/arkoala-arkts/framework/Application.sts @@ -13,7 +13,7 @@ * limitations under the License. */ -import { main } from "../loader/unmemoized/src/runner" +import { main } from "../loader/src/trivial/runner" export class Application { constructor() { diff --git a/arkoala-arkts/loader/arktsconfig-trivial-main.json b/arkoala-arkts/loader/arktsconfig-trivial-main.json index d4850eed2..2b6ce0d88 100644 --- a/arkoala-arkts/loader/arktsconfig-trivial-main.json +++ b/arkoala-arkts/loader/arktsconfig-trivial-main.json @@ -1,6 +1,6 @@ { "include": [ - "./src/trivial/main.ts" + "./src/trivial/runner.ts" ], "compilerOptions": { "outDir": "build/abc", diff --git a/arkoala-arkts/loader/src/runner.ts b/arkoala-arkts/loader/src/runner.ts deleted file mode 100644 index 578395c3e..000000000 --- a/arkoala-arkts/loader/src/runner.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { int32, int8Array } from "@koalaui/common" -import { memoRoot, updateStateManager } from "@koalaui/runtime" -import { PeerNode, ArkUINodeType, nativeModule } from "@koalaui/arkts-arkui" -import { X } from "../generated/hello" - - -export function startNativeLog(group: int32) { - nativeModule()._StartGroupedLog(group) -} - -export function stopNativeLog(group: int32) { - nativeModule()._StopGroupedLog(group) -} - -export function getNativeLog(group: int32): string { - let ptr = nativeModule()._GetGroupedLog(group) - let length = nativeModule()._StringLength(ptr) - let data = int8Array(length) - nativeModule()._StringData(ptr, data, length) - nativeModule()._InvokeFinalizer(ptr, nativeModule()._GetStringFinalizer()) - // TODO: better string decoding. - let result = new StringBuilder() - for (let i = 0; i < length; i++) { - result.append(String.fromCharCode(data[i] as int32)) - } - return result.toString() -} - - -export function main() { - startNativeLog(1) - const root/*: ComputableState */ = - memoRoot( - new PeerNode(ArkUINodeType.Root, 0, "Root"), - (node: PeerNode) => { console.log("memoRoot second arg lambda"); X() } - ) - - console.log(root.value.toHierarchy()) // dump ui subtree - - updateStateManager() // Compute next frame. - console.log(root.value.toHierarchy()) - - stopNativeLog(1) - console.log(getNativeLog(1)) -} diff --git a/arkoala-arkts/loader/src/trivial/NativeModule.ts b/arkoala-arkts/loader/src/trivial/NativeModule.ts index 59cadb653..78931c07a 100644 --- a/arkoala-arkts/loader/src/trivial/NativeModule.ts +++ b/arkoala-arkts/loader/src/trivial/NativeModule.ts @@ -23,7 +23,7 @@ export function nativeModule(): NativeModule { export class NativeModule { static { - loadLibrary("NativeBridgeArk") + loadLibrary("ArkoalaNative_linux_x64_ark") NativeModule.init(); } diff --git a/arkoala-arkts/loader/src/trivial/main.ts b/arkoala-arkts/loader/src/trivial/runner.ts similarity index 100% rename from arkoala-arkts/loader/src/trivial/main.ts rename to arkoala-arkts/loader/src/trivial/runner.ts -- Gitee