Home
last modified time | relevance | path

Searched refs:mainObject (Results 1 – 8 of 8) sorted by relevance

/expo/ios/versioned/sdk47/ExpoModulesCore/ios/JSI/
H A DABI47_0_0EXJSIInstaller.mm46 ABI47_0_0EXJavaScriptObject *mainObject = [runtime mainObject];
48 if ([mainObject hasProperty:modulesHostObjectPropertyName]) {
56 [mainObject defineProperty:modulesHostObjectPropertyName
H A DABI47_0_0EXJavaScriptRuntime.h73 - (nonnull ABI47_0_0EXJavaScriptObject *)mainObject;
H A DABI47_0_0EXJavaScriptRuntime.mm93 - (nonnull ABI47_0_0EXJavaScriptObject *)mainObject
/expo/ios/versioned/sdk48/ExpoModulesCore/ios/JSI/
H A DABI48_0_0EXJSIInstaller.mm46 ABI48_0_0EXJavaScriptObject *mainObject = [runtime mainObject];
48 if ([mainObject hasProperty:modulesHostObjectPropertyName]) {
56 [mainObject defineProperty:modulesHostObjectPropertyName
H A DABI48_0_0EXJavaScriptRuntime.h73 - (nonnull ABI48_0_0EXJavaScriptObject *)mainObject;
H A DABI48_0_0EXJavaScriptRuntime.mm96 - (nonnull ABI48_0_0EXJavaScriptObject *)mainObject
/expo/packages/expo-modules-core/android/src/main/cpp/
H A DJavaScriptRuntime.cpp195 mainObject = coreModule->cthis()->getJSIObject(*runtime); in installMainObject()
201 descriptor.setProperty(*runtime, "value", jsi::Value(*runtime, *mainObject)); in installMainObject()
212 return mainObject; in getMainObject()
H A DJavaScriptRuntime.h95 std::shared_ptr<jsi::Object> mainObject; variable