Home
last modified time | relevance | path

Searched refs:invocation (Results 1 – 25 of 48) sorted by relevance

12

/expo/ios/versioned/sdk47/ExpoModulesCore/ios/
H A DABI47_0_0EXViewManager.m100 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
101 [invocation setTarget:self];
102 [invocation setSelector:selector];
103 [invocation setArgument:&value atIndex:2];
112 [invocation setArgument:&retainedValue atIndex:2];
117 [invocation setArgument:&retainedValue atIndex:2];
120 [invocation setArgument:(void *)&view atIndex:3];
121 [invocation retainArguments];
122 [invocation invoke];
H A DABI47_0_0EXExportedModule.m141 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
142 [invocation setTarget:self];
143 [invocation setSelector:selector];
146 [invocation setArgument:&obj atIndex:(2 + idx)];
156 [invocation setArgument:&value atIndex:(2 + idx)];
161 [invocation setArgument:&value atIndex:(2 + idx)];
165 [invocation setArgument:&resolve atIndex:(2 + [arguments count])];
166 [invocation setArgument:&reject atIndex:([arguments count] + 2 + 1)];
167 [invocation retainArguments];
168 [invocation invoke];
/expo/ios/versioned/sdk48/ExpoModulesCore/ios/
H A DABI48_0_0EXViewManager.m100 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
101 [invocation setTarget:self];
102 [invocation setSelector:selector];
103 [invocation setArgument:&value atIndex:2];
112 [invocation setArgument:&retainedValue atIndex:2];
117 [invocation setArgument:&retainedValue atIndex:2];
120 [invocation setArgument:(void *)&view atIndex:3];
121 [invocation retainArguments];
122 [invocation invoke];
H A DABI48_0_0EXExportedModule.m141 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
142 [invocation setTarget:self];
143 [invocation setSelector:selector];
146 [invocation setArgument:&obj atIndex:(2 + idx)];
156 [invocation setArgument:&value atIndex:(2 + idx)];
161 [invocation setArgument:&value atIndex:(2 + idx)];
165 [invocation setArgument:&resolve atIndex:(2 + [arguments count])];
166 [invocation setArgument:&reject atIndex:([arguments count] + 2 + 1)];
167 [invocation retainArguments];
168 [invocation invoke];
/expo/apps/bare-expo/e2e/setup/
H A DsetupSockets.js29 onEvent: (invocation, props) => { argument
30 const [module, method] = invocation.split('.');
/expo/ios/versioned/sdk49/ExpoModulesCore/ios/
H A DABI49_0_0EXExportedModule.m141 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
142 [invocation setTarget:self];
143 [invocation setSelector:selector];
146 [invocation setArgument:&obj atIndex:(2 + idx)];
156 [invocation setArgument:&value atIndex:(2 + idx)];
161 [invocation setArgument:&value atIndex:(2 + idx)];
165 [invocation setArgument:&resolve atIndex:(2 + [arguments count])];
166 [invocation setArgument:&reject atIndex:([arguments count] + 2 + 1)];
167 [invocation retainArguments];
168 [invocation invoke];
/expo/packages/expo-modules-core/ios/
H A DEXExportedModule.m141 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
142 [invocation setTarget:self];
143 [invocation setSelector:selector];
146 [invocation setArgument:&obj atIndex:(2 + idx)];
156 [invocation setArgument:&value atIndex:(2 + idx)];
161 [invocation setArgument:&value atIndex:(2 + idx)];
165 [invocation setArgument:&resolve atIndex:(2 + [arguments count])];
166 [invocation setArgument:&reject atIndex:([arguments count] + 2 + 1)];
167 [invocation retainArguments];
168 [invocation invoke];
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Fabric/Utils/
H A DABI49_0_0RCTGenericDelegateSplitter.mm79 - (void)forwardInvocation:(NSInvocation *)invocation
84 if ([delegate respondsToSelector:[invocation selector]]) {
90 [invocation invokeWithTarget:target];
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Fabric/Utils/
H A DABI47_0_0RCTGenericDelegateSplitter.mm79 - (void)forwardInvocation:(NSInvocation *)invocation
84 if ([delegate respondsToSelector:[invocation selector]]) {
90 [invocation invokeWithTarget:target];
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Fabric/Utils/
H A DABI48_0_0RCTGenericDelegateSplitter.mm79 - (void)forwardInvocation:(NSInvocation *)invocation
84 if ([delegate respondsToSelector:[invocation selector]]) {
90 [invocation invokeWithTarget:target];
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Base/
H A DABI49_0_0RCTKeyCommands.m145 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
147 invocation.target = [UIWindow class];
148 invocation.selector = allWindowsSelector;
149 [invocation setArgument:&includeInternalWindows atIndex:2];
150 [invocation setArgument:&onlyVisibleWindows atIndex:3];
151 [invocation invoke];
154 [invocation getReturnValue:&windows];
H A DABI49_0_0RCTRuntimeExecutorFromBridge.mm36 …ge, @"ABI49_0_0RCTRuntimeExecutorFromBridge: Bridge must not be nil at the moment of invocation.");
45 …RCTRuntimeExecutorFromBridge: Bridge must have a valid jsi::Runtime at the moment of invocation.");
H A DABI49_0_0RCTModuleMethod.mm117 // returns YES if execution is safe to proceed (enqueue callback invocation), NO if callback has al…
123 …@"Illegal callback invocation from native module. This callback type only permits a single invocat…
210 // Create method invocation
213 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
214 invocation.selector = _selector;
215 _invocation = invocation;
229 _logic [invocation setArgument:&value atIndex:(index) + 2]; \
242 [invocation setArgument:&value atIndex:(index) + 2]; \
340 [invocation setArgument:returnValue atIndex:index + 2];
384 [invocation setArgument:&pointer atIndex:index + 2];
[all …]
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Base/
H A DABI48_0_0RCTKeyCommands.m145 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
147 invocation.target = [UIWindow class];
148 invocation.selector = allWindowsSelector;
149 [invocation setArgument:&includeInternalWindows atIndex:2];
150 [invocation setArgument:&onlyVisibleWindows atIndex:3];
151 [invocation invoke];
154 [invocation getReturnValue:&windows];
H A DABI48_0_0RCTModuleMethod.mm117 // returns YES if execution is safe to proceed (enqueue callback invocation), NO if callback has al…
123 …@"Illegal callback invocation from native module. This callback type only permits a single invocat…
210 // Create method invocation
213 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
214 invocation.selector = _selector;
215 _invocation = invocation;
229 _logic [invocation setArgument:&value atIndex:(index) + 2]; \
242 [invocation setArgument:&value atIndex:(index) + 2]; \
340 [invocation setArgument:returnValue atIndex:index + 2];
384 [invocation setArgument:&pointer atIndex:index + 2];
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Base/
H A DABI47_0_0RCTKeyCommands.m145 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
147 invocation.target = [UIWindow class];
148 invocation.selector = allWindowsSelector;
149 [invocation setArgument:&includeInternalWindows atIndex:2];
150 [invocation setArgument:&onlyVisibleWindows atIndex:3];
151 [invocation invoke];
154 [invocation getReturnValue:&windows];
H A DABI47_0_0RCTModuleMethod.mm117 // returns YES if execution is safe to proceed (enqueue callback invocation), NO if callback has al…
123 …@"Illegal callback invocation from native module. This callback type only permits a single invocat…
210 // Create method invocation
213 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
214 invocation.selector = _selector;
215 _invocation = invocation;
229 _logic [invocation setArgument:&value atIndex:(index) + 2]; \
242 [invocation setArgument:&value atIndex:(index) + 2]; \
340 [invocation setArgument:returnValue atIndex:index + 2];
384 [invocation setArgument:&pointer atIndex:index + 2];
[all …]
/expo/android/app/src/test/java/host/exp/exponent/utils/
H A DMockExpoDI.kt39 Mockito.doAnswer { invocation -> in <lambda>() method
40 val args = invocation.arguments in <lambda>()
/expo/packages/expo-image-manipulator/build/
H A DImageManipulator.js.map1 …ping (mirroring),\n * resizing and cropping. Each invocation results in a new file. With one invoc…
/expo/packages/expo-modules-core/ios/AppDelegates/
H A DEXLegacyAppDelegateWrapper.m17 - (void)forwardInvocation:(NSInvocation *)invocation {
19 SEL selector = [invocation selector];
27 [super forwardInvocation:invocation];
/expo/ios/versioned/sdk47/ExpoModulesCore/ios/AppDelegates/
H A DABI47_0_0EXLegacyAppDelegateWrapper.m16 - (void)forwardInvocation:(NSInvocation *)invocation {
18 SEL selector = [invocation selector];
26 [super forwardInvocation:invocation];
/expo/ios/versioned/sdk49/ExpoModulesCore/ios/AppDelegates/
H A DABI49_0_0EXLegacyAppDelegateWrapper.m16 - (void)forwardInvocation:(NSInvocation *)invocation {
18 SEL selector = [invocation selector];
26 [super forwardInvocation:invocation];
/expo/ios/versioned/sdk48/ExpoModulesCore/ios/AppDelegates/
H A DABI48_0_0EXLegacyAppDelegateWrapper.m16 - (void)forwardInvocation:(NSInvocation *)invocation {
18 SEL selector = [invocation selector];
26 [super forwardInvocation:invocation];
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Fabric/
H A DABI47_0_0RCTSurfacePresenterBridgeAdapter.mm59 …ge, @"ABI47_0_0RCTRuntimeExecutorFromBridge: Bridge must not be nil at the moment of invocation.");
68 …RCTRuntimeExecutorFromBridge: Bridge must have a valid jsi::Runtime at the moment of invocation.");
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Fabric/
H A DABI48_0_0RCTSurfacePresenterBridgeAdapter.mm60 …ge, @"ABI48_0_0RCTRuntimeExecutorFromBridge: Bridge must not be nil at the moment of invocation.");
69 …RCTRuntimeExecutorFromBridge: Bridge must have a valid jsi::Runtime at the moment of invocation.");

12