@triniwiz/nativescript-masonkit 1.0.0-alpha.5 → 1.0.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common.d.ts +7 -9
- package/common.js +277 -552
- package/common.js.map +1 -1
- package/helpers.d.ts +32 -10
- package/helpers.js +772 -286
- package/helpers.js.map +1 -1
- package/index.android.d.ts +6 -2
- package/index.android.js +21 -3
- package/index.android.js.map +1 -1
- package/index.d.ts +64 -7
- package/index.ios.d.ts +9 -6
- package/index.ios.js +39 -25
- package/index.ios.js.map +1 -1
- package/package.json +1 -1
- package/platforms/android/include.gradle +18 -1
- package/platforms/android/masonkit-release.aar +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/Mason-Swift.h +108 -64
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/mason_native.h +47 -20
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Info.plist +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Mason +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.abi.json +10744 -1631
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.private.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/Mason-Swift.h +216 -128
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/mason_native.h +47 -20
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Info.plist +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Mason +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.abi.json +10744 -1631
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.abi.json +10744 -1631
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/_CodeSignature/CodeResources +43 -43
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
- package/platforms/ios/build.xcconfig +1 -2
- package/platforms/ios/src/MasonV8Module.h +583 -0
- package/platforms/ios/src/MasonV8Module.mm +1005 -0
- package/platforms/ios/src/{include → cpp/include}/mason_native.h +47 -20
- package/platforms/ios/src/cpp/include/robin_hood.h +2544 -0
- package/platforms/ios/src/module.modulemap +2 -2
- package/platforms/new_native_src/cpp/Caches.cpp +36 -0
- package/platforms/new_native_src/cpp/Caches.h +42 -0
- package/platforms/new_native_src/cpp/Common.h +34 -0
- package/platforms/new_native_src/cpp/ConcurrentMap.h +57 -0
- package/platforms/new_native_src/cpp/Helpers.cpp +101 -0
- package/platforms/new_native_src/cpp/Helpers.h +364 -0
- package/platforms/new_native_src/cpp/MasonImpl.cpp +68 -0
- package/platforms/new_native_src/cpp/MasonImpl.h +40 -0
- package/platforms/new_native_src/cpp/MasonNodeImpl.cpp +89 -0
- package/platforms/new_native_src/cpp/MasonNodeImpl.h +47 -0
- package/platforms/new_native_src/cpp/MasonStyleImpl.cpp +2181 -0
- package/platforms/new_native_src/cpp/MasonStyleImpl.h +420 -0
- package/platforms/{ios/Mason.xcframework/ios-arm64/Mason.framework/PrivateHeaders → new_native_src/cpp/include}/mason_native.h +464 -168
- package/platforms/new_native_src/cpp/include/robin_hood.h +2544 -0
- package/pods/Headers/include/APIDesign.md +72 -0
- package/pods/Headers/include/DEPS +10 -0
- package/pods/Headers/include/DIR_METADATA +11 -0
- package/pods/Headers/include/OWNERS +23 -0
- package/pods/Headers/include/cppgc/DEPS +8 -0
- package/pods/Headers/include/cppgc/OWNERS +2 -0
- package/pods/Headers/include/cppgc/README.md +133 -0
- package/pods/Headers/include/cppgc/allocation.h +310 -0
- package/pods/Headers/include/cppgc/common.h +29 -0
- package/pods/Headers/include/cppgc/cross-thread-persistent.h +465 -0
- package/pods/Headers/include/cppgc/custom-space.h +97 -0
- package/pods/Headers/include/cppgc/default-platform.h +67 -0
- package/pods/Headers/include/cppgc/ephemeron-pair.h +30 -0
- package/pods/Headers/include/cppgc/explicit-management.h +100 -0
- package/pods/Headers/include/cppgc/garbage-collected.h +106 -0
- package/pods/Headers/include/cppgc/heap-consistency.h +266 -0
- package/pods/Headers/include/cppgc/heap-state.h +82 -0
- package/pods/Headers/include/cppgc/heap-statistics.h +120 -0
- package/pods/Headers/include/cppgc/heap.h +206 -0
- package/pods/Headers/include/cppgc/internal/api-constants.h +55 -0
- package/pods/Headers/include/cppgc/internal/atomic-entry-flag.h +48 -0
- package/pods/Headers/include/cppgc/internal/caged-heap-local-data.h +79 -0
- package/pods/Headers/include/cppgc/internal/compiler-specific.h +38 -0
- package/pods/Headers/include/cppgc/internal/finalizer-trait.h +93 -0
- package/pods/Headers/include/cppgc/internal/gc-info.h +156 -0
- package/pods/Headers/include/cppgc/internal/logging.h +50 -0
- package/pods/Headers/include/cppgc/internal/name-trait.h +122 -0
- package/pods/Headers/include/cppgc/internal/persistent-node.h +216 -0
- package/pods/Headers/include/cppgc/internal/pointer-policies.h +186 -0
- package/pods/Headers/include/cppgc/internal/write-barrier.h +435 -0
- package/pods/Headers/include/cppgc/liveness-broker.h +77 -0
- package/pods/Headers/include/cppgc/macros.h +26 -0
- package/pods/Headers/include/cppgc/member.h +291 -0
- package/pods/Headers/include/cppgc/name-provider.h +65 -0
- package/pods/Headers/include/cppgc/object-size-trait.h +58 -0
- package/pods/Headers/include/cppgc/persistent.h +370 -0
- package/pods/Headers/include/cppgc/platform.h +156 -0
- package/pods/Headers/include/cppgc/prefinalizer.h +75 -0
- package/pods/Headers/include/cppgc/process-heap-statistics.h +36 -0
- package/pods/Headers/include/cppgc/sentinel-pointer.h +32 -0
- package/pods/Headers/include/cppgc/source-location.h +92 -0
- package/pods/Headers/include/cppgc/testing.h +106 -0
- package/pods/Headers/include/cppgc/trace-trait.h +116 -0
- package/pods/Headers/include/cppgc/type-traits.h +240 -0
- package/pods/Headers/include/cppgc/visitor.h +379 -0
- package/pods/Headers/include/js_protocol-1.2.json +936 -0
- package/pods/Headers/include/js_protocol-1.3.json +1112 -0
- package/pods/Headers/include/js_protocol.pdl +1709 -0
- package/pods/Headers/include/libffi/arm64/ffi.h +524 -0
- package/pods/Headers/include/libffi/arm64/ffitarget.h +92 -0
- package/pods/Headers/include/libffi/x86_64/ffi.h +524 -0
- package/pods/Headers/include/libffi/x86_64/ffitarget.h +147 -0
- package/pods/Headers/include/libffi.h +12 -0
- package/pods/Headers/include/libplatform/DEPS +9 -0
- package/pods/Headers/include/libplatform/libplatform-export.h +29 -0
- package/pods/Headers/include/libplatform/libplatform.h +106 -0
- package/pods/Headers/include/libplatform/v8-tracing.h +333 -0
- package/pods/Headers/include/v8-array-buffer.h +433 -0
- package/pods/Headers/include/v8-callbacks.h +397 -0
- package/pods/Headers/include/v8-container.h +129 -0
- package/pods/Headers/include/v8-context.h +407 -0
- package/pods/Headers/include/v8-cppgc.h +215 -0
- package/pods/Headers/include/v8-data.h +80 -0
- package/pods/Headers/include/v8-date.h +43 -0
- package/pods/Headers/include/v8-debug.h +168 -0
- package/pods/Headers/include/v8-embedder-heap.h +218 -0
- package/pods/Headers/include/v8-embedder-state-scope.h +51 -0
- package/pods/Headers/include/v8-exception.h +217 -0
- package/pods/Headers/include/v8-extension.h +62 -0
- package/pods/Headers/include/v8-external.h +37 -0
- package/pods/Headers/include/v8-fast-api-calls.h +939 -0
- package/pods/Headers/include/v8-forward.h +81 -0
- package/pods/Headers/include/v8-function-callback.h +475 -0
- package/pods/Headers/include/v8-function.h +125 -0
- package/pods/Headers/include/v8-initialization.h +315 -0
- package/pods/Headers/include/v8-inspector-protocol.h +13 -0
- package/pods/Headers/include/v8-inspector.h +376 -0
- package/pods/Headers/include/v8-internal.h +661 -0
- package/pods/Headers/include/v8-isolate.h +1709 -0
- package/pods/Headers/include/v8-json.h +47 -0
- package/pods/Headers/include/v8-local-handle.h +455 -0
- package/pods/Headers/include/v8-locker.h +149 -0
- package/pods/Headers/include/v8-maybe.h +137 -0
- package/pods/Headers/include/v8-memory-span.h +43 -0
- package/pods/Headers/include/v8-message.h +216 -0
- package/pods/Headers/include/v8-metrics.h +255 -0
- package/pods/Headers/include/v8-microtask-queue.h +152 -0
- package/pods/Headers/include/v8-microtask.h +28 -0
- package/pods/Headers/include/v8-object.h +775 -0
- package/pods/Headers/include/v8-persistent-handle.h +590 -0
- package/pods/Headers/include/v8-platform.h +1092 -0
- package/pods/Headers/include/v8-primitive-object.h +118 -0
- package/pods/Headers/include/v8-primitive.h +866 -0
- package/pods/Headers/include/v8-profiler.h +1198 -0
- package/pods/Headers/include/v8-promise.h +174 -0
- package/pods/Headers/include/v8-proxy.h +50 -0
- package/pods/Headers/include/v8-regexp.h +105 -0
- package/pods/Headers/include/v8-script.h +748 -0
- package/pods/Headers/include/v8-snapshot.h +196 -0
- package/pods/Headers/include/v8-statistics.h +217 -0
- package/pods/Headers/include/v8-template.h +1079 -0
- package/pods/Headers/include/v8-traced-handle.h +420 -0
- package/pods/Headers/include/v8-typed-array.h +282 -0
- package/pods/Headers/include/v8-unwinder-state.h +31 -0
- package/pods/Headers/include/v8-unwinder.h +132 -0
- package/pods/Headers/include/v8-util.h +658 -0
- package/pods/Headers/include/v8-value-serializer-version.h +24 -0
- package/pods/Headers/include/v8-value-serializer.h +279 -0
- package/pods/Headers/include/v8-value.h +526 -0
- package/pods/Headers/include/v8-version-string.h +38 -0
- package/pods/Headers/include/v8-version.h +20 -0
- package/pods/Headers/include/v8-wasm-trap-handler-posix.h +31 -0
- package/pods/Headers/include/v8-wasm-trap-handler-win.h +28 -0
- package/pods/Headers/include/v8-wasm.h +257 -0
- package/pods/Headers/include/v8-weak-callback-info.h +86 -0
- package/pods/Headers/include/v8.h +88 -0
- package/pods/Headers/include/v8config.h +605 -0
- package/pods/Headers/inspector/InspectorServer.h +20 -0
- package/pods/Headers/inspector/JsV8InspectorClient.h +66 -0
- package/pods/Headers/inspector/base/trace_event/common/trace_event_common.h +1123 -0
- package/pods/Headers/inspector/base64.h +9 -0
- package/pods/Headers/inspector/src/base/address-region.h +95 -0
- package/pods/Headers/inspector/src/base/atomic-utils.h +219 -0
- package/pods/Headers/inspector/src/base/atomicops.h +332 -0
- package/pods/Headers/inspector/src/base/atomicops_internals_atomicword_compat.h +89 -0
- package/pods/Headers/inspector/src/base/base-export.h +31 -0
- package/pods/Headers/inspector/src/base/bits.h +343 -0
- package/pods/Headers/inspector/src/base/build_config.h +234 -0
- package/pods/Headers/inspector/src/base/compiler-specific.h +136 -0
- package/pods/Headers/inspector/src/base/export-template.h +163 -0
- package/pods/Headers/inspector/src/base/flags.h +130 -0
- package/pods/Headers/inspector/src/base/immediate-crash.h +162 -0
- package/pods/Headers/inspector/src/base/lazy-instance.h +258 -0
- package/pods/Headers/inspector/src/base/logging.h +417 -0
- package/pods/Headers/inspector/src/base/macros.h +423 -0
- package/pods/Headers/inspector/src/base/memory.h +89 -0
- package/pods/Headers/inspector/src/base/once.h +108 -0
- package/pods/Headers/inspector/src/base/optional.h +882 -0
- package/pods/Headers/inspector/src/base/platform/mutex.h +370 -0
- package/pods/Headers/inspector/src/base/platform/platform.h +476 -0
- package/pods/Headers/inspector/src/base/platform/semaphore.h +108 -0
- package/pods/Headers/inspector/src/base/platform/v8-time.h +513 -0
- package/pods/Headers/inspector/src/base/platform/wrappers.h +73 -0
- package/pods/Headers/inspector/src/base/safe_conversions.h +389 -0
- package/pods/Headers/inspector/src/base/safe_conversions_impl.h +822 -0
- package/pods/Headers/inspector/src/base/template-utils.h +113 -0
- package/pods/Headers/inspector/src/base/v8-fallthrough.h +21 -0
- package/pods/Headers/inspector/src/common/checks.h +38 -0
- package/pods/Headers/inspector/src/common/globals.h +1842 -0
- package/pods/Headers/inspector/src/debug/debug-interface.h +667 -0
- package/pods/Headers/inspector/src/debug/interface-types.h +175 -0
- package/pods/Headers/inspector/src/init/v8.h +52 -0
- package/pods/Headers/inspector/src/inspector/custom-preview.h +24 -0
- package/pods/Headers/inspector/src/inspector/injected-script.h +251 -0
- package/pods/Headers/inspector/src/inspector/inspected-context.h +79 -0
- package/pods/Headers/inspector/src/inspector/protocol/CSS.h +2148 -0
- package/pods/Headers/inspector/src/inspector/protocol/Console.h +211 -0
- package/pods/Headers/inspector/src/inspector/protocol/DOM.h +1008 -0
- package/pods/Headers/inspector/src/inspector/protocol/Debugger.h +892 -0
- package/pods/Headers/inspector/src/inspector/protocol/Forward.h +75 -0
- package/pods/Headers/inspector/src/inspector/protocol/HeapProfiler.h +346 -0
- package/pods/Headers/inspector/src/inspector/protocol/Log.h +342 -0
- package/pods/Headers/inspector/src/inspector/protocol/Network.h +2528 -0
- package/pods/Headers/inspector/src/inspector/protocol/Overlay.h +281 -0
- package/pods/Headers/inspector/src/inspector/protocol/Page.h +1189 -0
- package/pods/Headers/inspector/src/inspector/protocol/Profiler.h +1001 -0
- package/pods/Headers/inspector/src/inspector/protocol/Protocol.h +617 -0
- package/pods/Headers/inspector/src/inspector/protocol/Runtime.h +1696 -0
- package/pods/Headers/inspector/src/inspector/protocol/Schema.h +146 -0
- package/pods/Headers/inspector/src/inspector/protocol/Security.h +793 -0
- package/pods/Headers/inspector/src/inspector/remote-object-id.h +54 -0
- package/pods/Headers/inspector/src/inspector/search-util.h +26 -0
- package/pods/Headers/inspector/src/inspector/string-16.h +180 -0
- package/pods/Headers/inspector/src/inspector/string-util.h +128 -0
- package/pods/Headers/inspector/src/inspector/v8-console-agent-impl.h +48 -0
- package/pods/Headers/inspector/src/inspector/v8-console-message.h +147 -0
- package/pods/Headers/inspector/src/inspector/v8-console.h +173 -0
- package/pods/Headers/inspector/src/inspector/v8-css-agent-impl.h +62 -0
- package/pods/Headers/inspector/src/inspector/v8-debugger-agent-impl.h +248 -0
- package/pods/Headers/inspector/src/inspector/v8-debugger-id.h +44 -0
- package/pods/Headers/inspector/src/inspector/v8-debugger-script.h +123 -0
- package/pods/Headers/inspector/src/inspector/v8-debugger.h +257 -0
- package/pods/Headers/inspector/src/inspector/v8-dom-agent-impl.h +91 -0
- package/pods/Headers/inspector/src/inspector/v8-heap-profiler-agent-impl.h +80 -0
- package/pods/Headers/inspector/src/inspector/v8-inspector-impl.h +191 -0
- package/pods/Headers/inspector/src/inspector/v8-inspector-session-impl.h +156 -0
- package/pods/Headers/inspector/src/inspector/v8-log-agent-impl.h +34 -0
- package/pods/Headers/inspector/src/inspector/v8-network-agent-impl.h +71 -0
- package/pods/Headers/inspector/src/inspector/v8-ns-debugger-agent-impl.h +24 -0
- package/pods/Headers/inspector/src/inspector/v8-overlay-agent-impl.h +70 -0
- package/pods/Headers/inspector/src/inspector/v8-page-agent-impl.h +88 -0
- package/pods/Headers/inspector/src/inspector/v8-profiler-agent-impl.h +104 -0
- package/pods/Headers/inspector/src/inspector/v8-regex.h +38 -0
- package/pods/Headers/inspector/src/inspector/v8-runtime-agent-impl.h +157 -0
- package/pods/Headers/inspector/src/inspector/v8-schema-agent-impl.h +38 -0
- package/pods/Headers/inspector/src/inspector/v8-stack-trace-impl.h +164 -0
- package/pods/Headers/inspector/src/inspector/v8-string-conversions.h +17 -0
- package/pods/Headers/inspector/src/inspector/v8-value-utils.h +23 -0
- package/pods/Headers/inspector/src/inspector/value-mirror.h +87 -0
- package/pods/Headers/inspector/src/libplatform/default-platform.h +92 -0
- package/pods/Headers/inspector/src/logging/tracing-flags.h +50 -0
- package/pods/Headers/inspector/src/numbers/conversions.h +183 -0
- package/pods/Headers/inspector/src/tracing/trace-event.h +664 -0
- package/pods/Headers/inspector/src/utils/allocation.h +367 -0
- package/pods/Headers/inspector/src/utils/vector.h +324 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/cbor.h +305 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/dispatch.h +314 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/error_support.h +62 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/export.h +6 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/find_by_first.h +58 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/frontend_channel.h +47 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/glue.h +80 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/json.h +52 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/json_platform.h +26 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/maybe.h +104 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/parser_handler.h +39 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/protocol_core.h +406 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/serializable.h +32 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/serializer_traits.h +158 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/span.h +99 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/status.h +139 -0
- package/pods/Headers/inspector/utils.h +32 -0
- package/pods/Headers/inspector/v8-inspector-platform.h +44 -0
- package/pods/Headers/jsi/decorator.h +762 -0
- package/pods/Headers/jsi/instrumentation.h +117 -0
- package/pods/Headers/jsi/jsi-inl.h +322 -0
- package/pods/Headers/jsi/jsi.h +1387 -0
- package/pods/Headers/jsi/jsilib.h +59 -0
- package/pods/Headers/jsi/threadsafe.h +79 -0
- package/pods/Headers/runtime/ArgConverter.h +61 -0
- package/pods/Headers/runtime/ArrayAdapter.h +13 -0
- package/pods/Headers/runtime/Caches.h +98 -0
- package/pods/Headers/runtime/ClassBuilder.h +61 -0
- package/pods/Headers/runtime/Common.h +9 -0
- package/pods/Headers/runtime/ConcurrentMap.h +55 -0
- package/pods/Headers/runtime/ConcurrentQueue.h +28 -0
- package/pods/Headers/runtime/Console.h +27 -0
- package/pods/Headers/runtime/Constants.h +15 -0
- package/pods/Headers/runtime/DataWrapper.h +671 -0
- package/pods/Headers/runtime/DictionaryAdapter.h +13 -0
- package/pods/Headers/runtime/ExtVector.h +21 -0
- package/pods/Headers/runtime/FFICall.h +105 -0
- package/pods/Headers/runtime/FastEnumerationAdapter.h +13 -0
- package/pods/Headers/runtime/FunctionReference.h +18 -0
- package/pods/Headers/runtime/Helpers.h +84 -0
- package/pods/Headers/runtime/InlineFunctions.h +16 -0
- package/pods/Headers/runtime/Interop.h +202 -0
- package/pods/Headers/runtime/KnownUnknownClassPair.h +35 -0
- package/pods/Headers/runtime/Metadata.h +981 -0
- package/pods/Headers/runtime/MetadataBuilder.h +72 -0
- package/pods/Headers/runtime/MetadataInlines.h +157 -0
- package/pods/Headers/runtime/ModuleInternal.h +59 -0
- package/pods/Headers/runtime/NSDataAdapter.h +13 -0
- package/pods/Headers/runtime/NativeScriptException.h +27 -0
- package/pods/Headers/runtime/ObjectManager.h +31 -0
- package/pods/Headers/runtime/OneByteStringResource.h +21 -0
- package/pods/Headers/runtime/Pointer.h +26 -0
- package/pods/Headers/runtime/PromiseProxy.h +15 -0
- package/pods/Headers/runtime/Reference.h +38 -0
- package/pods/Headers/runtime/Runtime.h +67 -0
- package/pods/Headers/runtime/RuntimeConfig.h +17 -0
- package/pods/Headers/runtime/SetTimeout.h +34 -0
- package/pods/Headers/runtime/SimpleAllocator.h +23 -0
- package/pods/Headers/runtime/StringHasher.h +315 -0
- package/pods/Headers/runtime/SymbolIterator.h +18 -0
- package/pods/Headers/runtime/SymbolLoader.h +27 -0
- package/pods/Headers/runtime/TNSDerivedClass.h +8 -0
- package/pods/Headers/runtime/TSHelpers.h +15 -0
- package/pods/Headers/runtime/Tasks.h +19 -0
- package/pods/Headers/runtime/UnmanagedType.h +21 -0
- package/pods/Headers/runtime/WeakRef.h +15 -0
- package/pods/Headers/runtime/Worker.h +26 -0
- package/pods/Headers/runtime/robin_hood.h +2184 -0
- package/pods/Headers/v8runtime/HostProxy.h +71 -0
- package/pods/Headers/v8runtime/JSIV8ValueConverter.h +70 -0
- package/pods/Headers/v8runtime/V8PointerValue.h +44 -0
- package/pods/Headers/v8runtime/V8Runtime.h +215 -0
- package/pods/Headers/v8runtime/V8RuntimeConfig.h +26 -0
- package/pods/Headers/v8runtime/V8RuntimeFactory.h +21 -0
- package/pods/NativeScript.podspec +68 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/PrivateHeaders/mason_native.h +0 -676
- package/platforms/ios/src/JSIModule.h +0 -217
- package/platforms/ios/src/JSIModule.mm +0 -2788
|
@@ -1,676 +0,0 @@
|
|
|
1
|
-
#ifndef CBINDGEN_BINDINGS_H
|
|
2
|
-
#define CBINDGEN_BINDINGS_H
|
|
3
|
-
|
|
4
|
-
/* Warning, this file is autogenerated by cbindgen. Don't modify this manually. */
|
|
5
|
-
|
|
6
|
-
#include <stdarg.h>
|
|
7
|
-
#include <stdbool.h>
|
|
8
|
-
#include <stdint.h>
|
|
9
|
-
#include <stdlib.h>
|
|
10
|
-
|
|
11
|
-
typedef enum CMasonDimensionType {
|
|
12
|
-
Points,
|
|
13
|
-
Percent,
|
|
14
|
-
Auto,
|
|
15
|
-
Undefined,
|
|
16
|
-
} CMasonDimensionType;
|
|
17
|
-
|
|
18
|
-
typedef struct NodeArray {
|
|
19
|
-
void **array;
|
|
20
|
-
uintptr_t length;
|
|
21
|
-
} NodeArray;
|
|
22
|
-
|
|
23
|
-
typedef enum AvailableSpace_Tag {
|
|
24
|
-
Definite,
|
|
25
|
-
MinContent,
|
|
26
|
-
MaxContent,
|
|
27
|
-
} AvailableSpace_Tag;
|
|
28
|
-
|
|
29
|
-
typedef struct AvailableSpace {
|
|
30
|
-
AvailableSpace_Tag tag;
|
|
31
|
-
union {
|
|
32
|
-
struct {
|
|
33
|
-
float definite;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
} AvailableSpace;
|
|
37
|
-
|
|
38
|
-
typedef struct CMasonDimension {
|
|
39
|
-
float value;
|
|
40
|
-
enum CMasonDimensionType value_type;
|
|
41
|
-
} CMasonDimension;
|
|
42
|
-
|
|
43
|
-
void *mason_init(void);
|
|
44
|
-
|
|
45
|
-
void *mason_init_with_capacity(uintptr_t capacity);
|
|
46
|
-
|
|
47
|
-
void mason_destroy(void *mason);
|
|
48
|
-
|
|
49
|
-
void mason_clear(void *mason);
|
|
50
|
-
|
|
51
|
-
void mason_node_array_destroy(struct NodeArray array);
|
|
52
|
-
|
|
53
|
-
void mason_node_destroy(void *node);
|
|
54
|
-
|
|
55
|
-
void *mason_node_new_node(void *mason, void *style);
|
|
56
|
-
|
|
57
|
-
void *mason_node_new_node_with_measure_func(void *mason,
|
|
58
|
-
void *style,
|
|
59
|
-
void *measure_data,
|
|
60
|
-
long long (*measure)(const void*, float, float, float, float));
|
|
61
|
-
|
|
62
|
-
void *mason_node_new_node_with_children(void *mason,
|
|
63
|
-
void *style,
|
|
64
|
-
const void *children,
|
|
65
|
-
uintptr_t children_size);
|
|
66
|
-
|
|
67
|
-
uintptr_t mason_node_get_child_count(void *mason, void *node);
|
|
68
|
-
|
|
69
|
-
void *mason_node_layout(void *mason, void *node, void *(*layout)(const float*));
|
|
70
|
-
|
|
71
|
-
void mason_node_compute_wh(void *mason, void *node, float width, float height);
|
|
72
|
-
|
|
73
|
-
void mason_node_compute_size(void *mason,
|
|
74
|
-
void *node,
|
|
75
|
-
struct AvailableSpace width,
|
|
76
|
-
struct AvailableSpace height);
|
|
77
|
-
|
|
78
|
-
void mason_node_compute_max_content(void *mason, void *node);
|
|
79
|
-
|
|
80
|
-
void mason_node_compute_min_content(void *mason, void *node);
|
|
81
|
-
|
|
82
|
-
extern void mason_node_compute(void *mason, void *node);
|
|
83
|
-
|
|
84
|
-
void mason_node_set_style(void *mason, void *node, void *style);
|
|
85
|
-
|
|
86
|
-
void mason_node_update_and_set_style(void *mason, void *node, void *style);
|
|
87
|
-
|
|
88
|
-
void mason_node_update_and_set_style_with_values(void *mason,
|
|
89
|
-
void *node,
|
|
90
|
-
void *style,
|
|
91
|
-
int display,
|
|
92
|
-
int position_type,
|
|
93
|
-
int direction,
|
|
94
|
-
int flex_direction,
|
|
95
|
-
int flex_wrap,
|
|
96
|
-
int overflow,
|
|
97
|
-
int align_items,
|
|
98
|
-
int align_self,
|
|
99
|
-
int align_content,
|
|
100
|
-
int justify_content,
|
|
101
|
-
int position_left_type,
|
|
102
|
-
float position_left_value,
|
|
103
|
-
int position_right_type,
|
|
104
|
-
float position_right_value,
|
|
105
|
-
int position_top_type,
|
|
106
|
-
float position_top_value,
|
|
107
|
-
int position_bottom_type,
|
|
108
|
-
float position_bottom_value,
|
|
109
|
-
int margin_left_type,
|
|
110
|
-
float margin_left_value,
|
|
111
|
-
int margin_right_type,
|
|
112
|
-
float margin_right_value,
|
|
113
|
-
int margin_top_type,
|
|
114
|
-
float margin_top_value,
|
|
115
|
-
int margin_bottom_type,
|
|
116
|
-
float margin_bottom_value,
|
|
117
|
-
int padding_left_type,
|
|
118
|
-
float padding_left_value,
|
|
119
|
-
int padding_right_type,
|
|
120
|
-
float padding_right_value,
|
|
121
|
-
int padding_top_type,
|
|
122
|
-
float padding_top_value,
|
|
123
|
-
int padding_bottom_type,
|
|
124
|
-
float padding_bottom_value,
|
|
125
|
-
int border_left_type,
|
|
126
|
-
float border_left_value,
|
|
127
|
-
int border_right_type,
|
|
128
|
-
float border_right_value,
|
|
129
|
-
int border_top_type,
|
|
130
|
-
float border_top_value,
|
|
131
|
-
int border_bottom_type,
|
|
132
|
-
float border_bottom_value,
|
|
133
|
-
float flex_grow,
|
|
134
|
-
float flex_shrink,
|
|
135
|
-
int flex_basis_type,
|
|
136
|
-
float flex_basis_value,
|
|
137
|
-
int width_type,
|
|
138
|
-
float width_value,
|
|
139
|
-
int height_type,
|
|
140
|
-
float height_value,
|
|
141
|
-
int min_width_type,
|
|
142
|
-
float min_width_value,
|
|
143
|
-
int min_height_type,
|
|
144
|
-
float min_height_value,
|
|
145
|
-
int max_width_type,
|
|
146
|
-
float max_width_value,
|
|
147
|
-
int max_height_type,
|
|
148
|
-
float max_height_value,
|
|
149
|
-
int flex_gap_width_type,
|
|
150
|
-
float flex_gap_width_value,
|
|
151
|
-
int flex_gap_height_type,
|
|
152
|
-
float flex_gap_height_value,
|
|
153
|
-
float aspect_ratio);
|
|
154
|
-
|
|
155
|
-
void *mason_node_update_style_with_values_compute_and_layout(void *mason,
|
|
156
|
-
void *node,
|
|
157
|
-
void *style,
|
|
158
|
-
int display,
|
|
159
|
-
int position_type,
|
|
160
|
-
int direction,
|
|
161
|
-
int flex_direction,
|
|
162
|
-
int flex_wrap,
|
|
163
|
-
int overflow,
|
|
164
|
-
int align_items,
|
|
165
|
-
int align_self,
|
|
166
|
-
int align_content,
|
|
167
|
-
int justify_content,
|
|
168
|
-
int position_left_type,
|
|
169
|
-
float position_left_value,
|
|
170
|
-
int position_right_type,
|
|
171
|
-
float position_right_value,
|
|
172
|
-
int position_top_type,
|
|
173
|
-
float position_top_value,
|
|
174
|
-
int position_bottom_type,
|
|
175
|
-
float position_bottom_value,
|
|
176
|
-
int margin_left_type,
|
|
177
|
-
float margin_left_value,
|
|
178
|
-
int margin_right_type,
|
|
179
|
-
float margin_right_value,
|
|
180
|
-
int margin_top_type,
|
|
181
|
-
float margin_top_value,
|
|
182
|
-
int margin_bottom_type,
|
|
183
|
-
float margin_bottom_value,
|
|
184
|
-
int padding_left_type,
|
|
185
|
-
float padding_left_value,
|
|
186
|
-
int padding_right_type,
|
|
187
|
-
float padding_right_value,
|
|
188
|
-
int padding_top_type,
|
|
189
|
-
float padding_top_value,
|
|
190
|
-
int padding_bottom_type,
|
|
191
|
-
float padding_bottom_value,
|
|
192
|
-
int border_left_type,
|
|
193
|
-
float border_left_value,
|
|
194
|
-
int border_right_type,
|
|
195
|
-
float border_right_value,
|
|
196
|
-
int border_top_type,
|
|
197
|
-
float border_top_value,
|
|
198
|
-
int border_bottom_type,
|
|
199
|
-
float border_bottom_value,
|
|
200
|
-
float flex_grow,
|
|
201
|
-
float flex_shrink,
|
|
202
|
-
int flex_basis_type,
|
|
203
|
-
float flex_basis_value,
|
|
204
|
-
int width_type,
|
|
205
|
-
float width_value,
|
|
206
|
-
int height_type,
|
|
207
|
-
float height_value,
|
|
208
|
-
int min_width_type,
|
|
209
|
-
float min_width_value,
|
|
210
|
-
int min_height_type,
|
|
211
|
-
float min_height_value,
|
|
212
|
-
int max_width_type,
|
|
213
|
-
float max_width_value,
|
|
214
|
-
int max_height_type,
|
|
215
|
-
float max_height_value,
|
|
216
|
-
int flex_gap_width_type,
|
|
217
|
-
float flex_gap_width_value,
|
|
218
|
-
int flex_gap_height_type,
|
|
219
|
-
float flex_gap_height_value,
|
|
220
|
-
float aspect_ratio,
|
|
221
|
-
void *(*layout)(const float*));
|
|
222
|
-
|
|
223
|
-
void *mason_node_update_style_with_values_size_compute_and_layout(void *mason,
|
|
224
|
-
void *node,
|
|
225
|
-
void *style,
|
|
226
|
-
float width,
|
|
227
|
-
float height,
|
|
228
|
-
int display,
|
|
229
|
-
int position_type,
|
|
230
|
-
int direction,
|
|
231
|
-
int flex_direction,
|
|
232
|
-
int flex_wrap,
|
|
233
|
-
int overflow,
|
|
234
|
-
int align_items,
|
|
235
|
-
int align_self,
|
|
236
|
-
int align_content,
|
|
237
|
-
int justify_content,
|
|
238
|
-
int position_left_type,
|
|
239
|
-
float position_left_value,
|
|
240
|
-
int position_right_type,
|
|
241
|
-
float position_right_value,
|
|
242
|
-
int position_top_type,
|
|
243
|
-
float position_top_value,
|
|
244
|
-
int position_bottom_type,
|
|
245
|
-
float position_bottom_value,
|
|
246
|
-
int margin_left_type,
|
|
247
|
-
float margin_left_value,
|
|
248
|
-
int margin_right_type,
|
|
249
|
-
float margin_right_value,
|
|
250
|
-
int margin_top_type,
|
|
251
|
-
float margin_top_value,
|
|
252
|
-
int margin_bottom_type,
|
|
253
|
-
float margin_bottom_value,
|
|
254
|
-
int padding_left_type,
|
|
255
|
-
float padding_left_value,
|
|
256
|
-
int padding_right_type,
|
|
257
|
-
float padding_right_value,
|
|
258
|
-
int padding_top_type,
|
|
259
|
-
float padding_top_value,
|
|
260
|
-
int padding_bottom_type,
|
|
261
|
-
float padding_bottom_value,
|
|
262
|
-
int border_left_type,
|
|
263
|
-
float border_left_value,
|
|
264
|
-
int border_right_type,
|
|
265
|
-
float border_right_value,
|
|
266
|
-
int border_top_type,
|
|
267
|
-
float border_top_value,
|
|
268
|
-
int border_bottom_type,
|
|
269
|
-
float border_bottom_value,
|
|
270
|
-
float flex_grow,
|
|
271
|
-
float flex_shrink,
|
|
272
|
-
int flex_basis_type,
|
|
273
|
-
float flex_basis_value,
|
|
274
|
-
int width_type,
|
|
275
|
-
float width_value,
|
|
276
|
-
int height_type,
|
|
277
|
-
float height_value,
|
|
278
|
-
int min_width_type,
|
|
279
|
-
float min_width_value,
|
|
280
|
-
int min_height_type,
|
|
281
|
-
float min_height_value,
|
|
282
|
-
int max_width_type,
|
|
283
|
-
float max_width_value,
|
|
284
|
-
int max_height_type,
|
|
285
|
-
float max_height_value,
|
|
286
|
-
int flex_gap_width_type,
|
|
287
|
-
float flex_gap_width_value,
|
|
288
|
-
int flex_gap_height_type,
|
|
289
|
-
float flex_gap_height_value,
|
|
290
|
-
float aspect_ratio,
|
|
291
|
-
void *(*layout)(const float*));
|
|
292
|
-
|
|
293
|
-
void *mason_node_update_set_style_compute_and_layout(void *mason,
|
|
294
|
-
void *node,
|
|
295
|
-
void *style,
|
|
296
|
-
void *(*layout)(const float*));
|
|
297
|
-
|
|
298
|
-
void *mason_node_update_set_style_compute_with_size_and_layout(void *mason,
|
|
299
|
-
void *node,
|
|
300
|
-
void *style,
|
|
301
|
-
float width,
|
|
302
|
-
float height,
|
|
303
|
-
void *(*layout)(const float*));
|
|
304
|
-
|
|
305
|
-
void *mason_node_get_child_at(void *mason, void *node, uintptr_t index);
|
|
306
|
-
|
|
307
|
-
void mason_node_set_children(void *mason,
|
|
308
|
-
void *node,
|
|
309
|
-
const void *children,
|
|
310
|
-
uintptr_t children_size);
|
|
311
|
-
|
|
312
|
-
void mason_node_add_children(void *mason,
|
|
313
|
-
void *node,
|
|
314
|
-
const void *children,
|
|
315
|
-
uintptr_t children_size);
|
|
316
|
-
|
|
317
|
-
void mason_node_add_child(void *mason, void *node, void *child);
|
|
318
|
-
|
|
319
|
-
void *mason_node_replace_child_at(void *mason, void *node, void *child, uintptr_t index);
|
|
320
|
-
|
|
321
|
-
void mason_node_add_child_at(void *mason, void *node, void *child, uintptr_t index);
|
|
322
|
-
|
|
323
|
-
void mason_node_insert_child_before(void *mason, void *node, void *child, void *reference);
|
|
324
|
-
|
|
325
|
-
void mason_node_insert_child_after(void *mason, void *node, void *child, void *reference);
|
|
326
|
-
|
|
327
|
-
bool mason_node_dirty(void *mason, void *node);
|
|
328
|
-
|
|
329
|
-
void mason_node_mark_dirty(void *mason, void *node);
|
|
330
|
-
|
|
331
|
-
bool mason_node_is_children_same(void *mason,
|
|
332
|
-
void *node,
|
|
333
|
-
const void *children,
|
|
334
|
-
uintptr_t children_size);
|
|
335
|
-
|
|
336
|
-
void mason_node_remove_children(void *mason, void *node);
|
|
337
|
-
|
|
338
|
-
void *mason_node_remove_child_at(void *mason, void *node, uintptr_t index);
|
|
339
|
-
|
|
340
|
-
void *mason_node_remove_child(void *mason, void *node, void *child);
|
|
341
|
-
|
|
342
|
-
struct NodeArray mason_node_get_children(void *mason, void *node);
|
|
343
|
-
|
|
344
|
-
void mason_node_set_measure_func(void *mason,
|
|
345
|
-
void *node,
|
|
346
|
-
void *measure_data,
|
|
347
|
-
long long (*measure)(const void*, float, float, float, float));
|
|
348
|
-
|
|
349
|
-
void mason_node_remove_measure_func(void *mason, void *node);
|
|
350
|
-
|
|
351
|
-
void *mason_style_init(void);
|
|
352
|
-
|
|
353
|
-
void mason_style_destroy(void *style);
|
|
354
|
-
|
|
355
|
-
int mason_style_get_display(void *style);
|
|
356
|
-
|
|
357
|
-
void mason_style_set_display(int display, void *style);
|
|
358
|
-
|
|
359
|
-
void mason_style_set_position_type(int position_type, void *style);
|
|
360
|
-
|
|
361
|
-
int mason_style_get_position_type(void *style);
|
|
362
|
-
|
|
363
|
-
void mason_style_set_direction(int _direction, void *_style);
|
|
364
|
-
|
|
365
|
-
int mason_style_get_direction(void *_style);
|
|
366
|
-
|
|
367
|
-
void mason_style_set_flex_direction(int direction, void *style);
|
|
368
|
-
|
|
369
|
-
int mason_style_get_flex_direction(void *style);
|
|
370
|
-
|
|
371
|
-
void mason_style_set_flex_wrap(int wrap, void *style);
|
|
372
|
-
|
|
373
|
-
int mason_style_get_flex_wrap(void *style);
|
|
374
|
-
|
|
375
|
-
void mason_style_set_overflow(int _overflow, void *_style);
|
|
376
|
-
|
|
377
|
-
int mason_style_get_overflow(void *_style);
|
|
378
|
-
|
|
379
|
-
void mason_style_set_align_items(int align, void *style);
|
|
380
|
-
|
|
381
|
-
int mason_style_get_align_items(void *style);
|
|
382
|
-
|
|
383
|
-
void mason_style_set_align_self(int align, void *style);
|
|
384
|
-
|
|
385
|
-
int mason_style_get_align_self(void *style);
|
|
386
|
-
|
|
387
|
-
void mason_style_set_align_content(int align, void *style);
|
|
388
|
-
|
|
389
|
-
int mason_style_get_align_content(void *style);
|
|
390
|
-
|
|
391
|
-
void mason_style_set_justify_content(int justify, void *style);
|
|
392
|
-
|
|
393
|
-
int mason_style_get_justify_content(void *style);
|
|
394
|
-
|
|
395
|
-
void mason_style_set_position(float left_value,
|
|
396
|
-
enum CMasonDimensionType left_value_type,
|
|
397
|
-
float right_value,
|
|
398
|
-
enum CMasonDimensionType right_value_type,
|
|
399
|
-
float top_value,
|
|
400
|
-
enum CMasonDimensionType top_value_type,
|
|
401
|
-
float bottom_value,
|
|
402
|
-
enum CMasonDimensionType bottom_value_type,
|
|
403
|
-
void *style);
|
|
404
|
-
|
|
405
|
-
void mason_style_set_position_left(float value, enum CMasonDimensionType value_type, void *style);
|
|
406
|
-
|
|
407
|
-
struct CMasonDimension mason_style_get_position_left(void *style);
|
|
408
|
-
|
|
409
|
-
void mason_style_set_position_right(float value, enum CMasonDimensionType value_type, void *style);
|
|
410
|
-
|
|
411
|
-
struct CMasonDimension mason_style_get_position_right(void *style);
|
|
412
|
-
|
|
413
|
-
void mason_style_set_position_top(float value, enum CMasonDimensionType value_type, void *style);
|
|
414
|
-
|
|
415
|
-
struct CMasonDimension mason_style_get_position_top(void *style);
|
|
416
|
-
|
|
417
|
-
void mason_style_set_position_bottom(float value, enum CMasonDimensionType value_type, void *style);
|
|
418
|
-
|
|
419
|
-
struct CMasonDimension mason_style_get_position_bottom(void *style);
|
|
420
|
-
|
|
421
|
-
void mason_style_set_margin(float left_value,
|
|
422
|
-
enum CMasonDimensionType left_value_type,
|
|
423
|
-
float right_value,
|
|
424
|
-
enum CMasonDimensionType right_value_type,
|
|
425
|
-
float top_value,
|
|
426
|
-
enum CMasonDimensionType top_value_type,
|
|
427
|
-
float bottom_value,
|
|
428
|
-
enum CMasonDimensionType bottom_value_type,
|
|
429
|
-
void *style);
|
|
430
|
-
|
|
431
|
-
void mason_style_set_margin_left(float value, enum CMasonDimensionType value_type, void *style);
|
|
432
|
-
|
|
433
|
-
struct CMasonDimension mason_style_get_margin_left(void *style);
|
|
434
|
-
|
|
435
|
-
void mason_style_set_margin_right(float value, enum CMasonDimensionType value_type, void *style);
|
|
436
|
-
|
|
437
|
-
struct CMasonDimension mason_style_get_margin_right(void *style);
|
|
438
|
-
|
|
439
|
-
void mason_style_set_margin_top(float value, enum CMasonDimensionType value_type, void *style);
|
|
440
|
-
|
|
441
|
-
struct CMasonDimension mason_style_get_margin_top(void *style);
|
|
442
|
-
|
|
443
|
-
void mason_style_set_margin_bottom(float value, enum CMasonDimensionType value_type, void *style);
|
|
444
|
-
|
|
445
|
-
struct CMasonDimension mason_style_get_margin_bottom(void *style);
|
|
446
|
-
|
|
447
|
-
void mason_style_set_padding(float left_value,
|
|
448
|
-
enum CMasonDimensionType left_value_type,
|
|
449
|
-
float right_value,
|
|
450
|
-
enum CMasonDimensionType right_value_type,
|
|
451
|
-
float top_value,
|
|
452
|
-
enum CMasonDimensionType top_value_type,
|
|
453
|
-
float bottom_value,
|
|
454
|
-
enum CMasonDimensionType bottom_value_type,
|
|
455
|
-
void *style);
|
|
456
|
-
|
|
457
|
-
void mason_style_set_padding_left(float value, enum CMasonDimensionType value_type, void *style);
|
|
458
|
-
|
|
459
|
-
struct CMasonDimension mason_style_get_padding_left(void *style);
|
|
460
|
-
|
|
461
|
-
void mason_style_set_padding_right(float value, enum CMasonDimensionType value_type, void *style);
|
|
462
|
-
|
|
463
|
-
struct CMasonDimension mason_style_get_padding_right(void *style);
|
|
464
|
-
|
|
465
|
-
void mason_style_set_padding_top(float value, enum CMasonDimensionType value_type, void *style);
|
|
466
|
-
|
|
467
|
-
struct CMasonDimension mason_style_get_padding_top(void *style);
|
|
468
|
-
|
|
469
|
-
void mason_style_set_padding_bottom(float value, enum CMasonDimensionType value_type, void *style);
|
|
470
|
-
|
|
471
|
-
struct CMasonDimension mason_style_get_padding_bottom(void *style);
|
|
472
|
-
|
|
473
|
-
void mason_style_set_border(float left_value,
|
|
474
|
-
enum CMasonDimensionType left_value_type,
|
|
475
|
-
float right_value,
|
|
476
|
-
enum CMasonDimensionType right_value_type,
|
|
477
|
-
float top_value,
|
|
478
|
-
enum CMasonDimensionType top_value_type,
|
|
479
|
-
float bottom_value,
|
|
480
|
-
enum CMasonDimensionType bottom_value_type,
|
|
481
|
-
void *style);
|
|
482
|
-
|
|
483
|
-
void mason_style_set_border_left(float value, enum CMasonDimensionType value_type, void *style);
|
|
484
|
-
|
|
485
|
-
struct CMasonDimension mason_style_get_border_left(void *style);
|
|
486
|
-
|
|
487
|
-
void mason_style_set_border_right(float value, enum CMasonDimensionType value_type, void *style);
|
|
488
|
-
|
|
489
|
-
struct CMasonDimension mason_style_get_border_right(void *style);
|
|
490
|
-
|
|
491
|
-
void mason_style_set_border_top(float value, enum CMasonDimensionType value_type, void *style);
|
|
492
|
-
|
|
493
|
-
struct CMasonDimension mason_style_get_border_top(void *style);
|
|
494
|
-
|
|
495
|
-
void mason_style_set_border_bottom(float value, enum CMasonDimensionType value_type, void *style);
|
|
496
|
-
|
|
497
|
-
struct CMasonDimension mason_style_get_border_bottom(void *style);
|
|
498
|
-
|
|
499
|
-
void mason_style_set_flex_grow(float grow);
|
|
500
|
-
|
|
501
|
-
float mason_style_get_flex_grow(void *style);
|
|
502
|
-
|
|
503
|
-
void mason_style_set_flex_shrink(float shrink);
|
|
504
|
-
|
|
505
|
-
float mason_style_get_flex_shrink(void *style);
|
|
506
|
-
|
|
507
|
-
void mason_style_set_flex_basis(float value, enum CMasonDimensionType value_type, void *style);
|
|
508
|
-
|
|
509
|
-
struct CMasonDimension mason_style_get_flex_basis(void *style);
|
|
510
|
-
|
|
511
|
-
void mason_style_set_width(float value, enum CMasonDimensionType value_type, void *style);
|
|
512
|
-
|
|
513
|
-
struct CMasonDimension mason_style_get_width(void *style);
|
|
514
|
-
|
|
515
|
-
void mason_style_set_height(float value, enum CMasonDimensionType value_type, void *style);
|
|
516
|
-
|
|
517
|
-
struct CMasonDimension mason_style_get_height(void *style);
|
|
518
|
-
|
|
519
|
-
void mason_style_set_min_width(float value, enum CMasonDimensionType value_type, void *style);
|
|
520
|
-
|
|
521
|
-
struct CMasonDimension mason_style_get_min_width(void *style);
|
|
522
|
-
|
|
523
|
-
void mason_style_set_min_height(float value, enum CMasonDimensionType value_type, void *style);
|
|
524
|
-
|
|
525
|
-
struct CMasonDimension mason_style_get_min_height(void *style);
|
|
526
|
-
|
|
527
|
-
void mason_style_set_max_width(float value, enum CMasonDimensionType value_type, void *style);
|
|
528
|
-
|
|
529
|
-
struct CMasonDimension mason_style_get_max_width(void *style);
|
|
530
|
-
|
|
531
|
-
void mason_style_set_max_height(float value, enum CMasonDimensionType value_type, void *style);
|
|
532
|
-
|
|
533
|
-
struct CMasonDimension mason_style_get_max_height(void *style);
|
|
534
|
-
|
|
535
|
-
void mason_style_set_gap_width(float value, enum CMasonDimensionType value_type, void *style);
|
|
536
|
-
|
|
537
|
-
struct CMasonDimension mason_style_get_gap_width(void *style);
|
|
538
|
-
|
|
539
|
-
void mason_style_set_gap_height(float value, enum CMasonDimensionType value_type, void *style);
|
|
540
|
-
|
|
541
|
-
struct CMasonDimension mason_style_get_gap_height(void *style);
|
|
542
|
-
|
|
543
|
-
void mason_style_set_aspect_ratio(float ratio, void *style);
|
|
544
|
-
|
|
545
|
-
float mason_style_get_aspect_ratio(void *style);
|
|
546
|
-
|
|
547
|
-
void *mason_style_init_with_values(int display,
|
|
548
|
-
int position_type,
|
|
549
|
-
int direction,
|
|
550
|
-
int flex_direction,
|
|
551
|
-
int flex_wrap,
|
|
552
|
-
int overflow,
|
|
553
|
-
int align_items,
|
|
554
|
-
int align_self,
|
|
555
|
-
int align_content,
|
|
556
|
-
int justify_content,
|
|
557
|
-
int position_left_type,
|
|
558
|
-
float position_left_value,
|
|
559
|
-
int position_right_type,
|
|
560
|
-
float position_right_value,
|
|
561
|
-
int position_top_type,
|
|
562
|
-
float position_top_value,
|
|
563
|
-
int position_bottom_type,
|
|
564
|
-
float position_bottom_value,
|
|
565
|
-
int margin_left_type,
|
|
566
|
-
float margin_left_value,
|
|
567
|
-
int margin_right_type,
|
|
568
|
-
float margin_right_value,
|
|
569
|
-
int margin_top_type,
|
|
570
|
-
float margin_top_value,
|
|
571
|
-
int margin_bottom_type,
|
|
572
|
-
float margin_bottom_value,
|
|
573
|
-
int padding_left_type,
|
|
574
|
-
float padding_left_value,
|
|
575
|
-
int padding_right_type,
|
|
576
|
-
float padding_right_value,
|
|
577
|
-
int padding_top_type,
|
|
578
|
-
float padding_top_value,
|
|
579
|
-
int padding_bottom_type,
|
|
580
|
-
float padding_bottom_value,
|
|
581
|
-
int border_left_type,
|
|
582
|
-
float border_left_value,
|
|
583
|
-
int border_right_type,
|
|
584
|
-
float border_right_value,
|
|
585
|
-
int border_top_type,
|
|
586
|
-
float border_top_value,
|
|
587
|
-
int border_bottom_type,
|
|
588
|
-
float border_bottom_value,
|
|
589
|
-
float flex_grow,
|
|
590
|
-
float flex_shrink,
|
|
591
|
-
int flex_basis_type,
|
|
592
|
-
float flex_basis_value,
|
|
593
|
-
int width_type,
|
|
594
|
-
float width_value,
|
|
595
|
-
int height_type,
|
|
596
|
-
float height_value,
|
|
597
|
-
int min_width_type,
|
|
598
|
-
float min_width_value,
|
|
599
|
-
int min_height_type,
|
|
600
|
-
float min_height_value,
|
|
601
|
-
int max_width_type,
|
|
602
|
-
float max_width_value,
|
|
603
|
-
int max_height_type,
|
|
604
|
-
float max_height_value,
|
|
605
|
-
int flex_gap_width_type,
|
|
606
|
-
float flex_gap_width_value,
|
|
607
|
-
int flex_gap_height_type,
|
|
608
|
-
float flex_gap_height_value,
|
|
609
|
-
float aspect_ratio);
|
|
610
|
-
|
|
611
|
-
void mason_style_update_with_values(void *style,
|
|
612
|
-
int display,
|
|
613
|
-
int position_type,
|
|
614
|
-
int direction,
|
|
615
|
-
int flex_direction,
|
|
616
|
-
int flex_wrap,
|
|
617
|
-
int overflow,
|
|
618
|
-
int align_items,
|
|
619
|
-
int align_self,
|
|
620
|
-
int align_content,
|
|
621
|
-
int justify_content,
|
|
622
|
-
int position_left_type,
|
|
623
|
-
float position_left_value,
|
|
624
|
-
int position_right_type,
|
|
625
|
-
float position_right_value,
|
|
626
|
-
int position_top_type,
|
|
627
|
-
float position_top_value,
|
|
628
|
-
int position_bottom_type,
|
|
629
|
-
float position_bottom_value,
|
|
630
|
-
int margin_left_type,
|
|
631
|
-
float margin_left_value,
|
|
632
|
-
int margin_right_type,
|
|
633
|
-
float margin_right_value,
|
|
634
|
-
int margin_top_type,
|
|
635
|
-
float margin_top_value,
|
|
636
|
-
int margin_bottom_type,
|
|
637
|
-
float margin_bottom_value,
|
|
638
|
-
int padding_left_type,
|
|
639
|
-
float padding_left_value,
|
|
640
|
-
int padding_right_type,
|
|
641
|
-
float padding_right_value,
|
|
642
|
-
int padding_top_type,
|
|
643
|
-
float padding_top_value,
|
|
644
|
-
int padding_bottom_type,
|
|
645
|
-
float padding_bottom_value,
|
|
646
|
-
int border_left_type,
|
|
647
|
-
float border_left_value,
|
|
648
|
-
int border_right_type,
|
|
649
|
-
float border_right_value,
|
|
650
|
-
int border_top_type,
|
|
651
|
-
float border_top_value,
|
|
652
|
-
int border_bottom_type,
|
|
653
|
-
float border_bottom_value,
|
|
654
|
-
float flex_grow,
|
|
655
|
-
float flex_shrink,
|
|
656
|
-
int flex_basis_type,
|
|
657
|
-
float flex_basis_value,
|
|
658
|
-
int width_type,
|
|
659
|
-
float width_value,
|
|
660
|
-
int height_type,
|
|
661
|
-
float height_value,
|
|
662
|
-
int min_width_type,
|
|
663
|
-
float min_width_value,
|
|
664
|
-
int min_height_type,
|
|
665
|
-
float min_height_value,
|
|
666
|
-
int max_width_type,
|
|
667
|
-
float max_width_value,
|
|
668
|
-
int max_height_type,
|
|
669
|
-
float max_height_value,
|
|
670
|
-
int flex_gap_width_type,
|
|
671
|
-
float flex_gap_width_value,
|
|
672
|
-
int flex_gap_height_type,
|
|
673
|
-
float flex_gap_height_value,
|
|
674
|
-
float aspect_ratio);
|
|
675
|
-
|
|
676
|
-
#endif /* CBINDGEN_BINDINGS_H */
|