Home
last modified time | relevance | path

Searched refs:methodA (Results 1 – 2 of 2) sorted by relevance

/expo/packages/expo-dev-launcher/ios/
H A DEXDevLauncherUtils.swift10 if let methodA = class_getInstanceMethod(forClass, selectorA), in swizzle() variable
12 let impA = method_getImplementation(methodA) in swizzle()
13 let argsTypeA = method_getTypeEncoding(methodA) in swizzle()
21 method_exchangeImplementations(methodA, methodB) in swizzle()
31 if let methodA = class_getClassMethod(forClass, selectorA), in swizzleClassMethod() variable
33 let impA = method_getImplementation(methodA) in swizzleClassMethod()
36 class_addMethod(metaClass, backupSelectorA, impA, method_getTypeEncoding(methodA)) in swizzleClassMethod()
37 method_setImplementation(methodA, method_getImplementation(methodB)) in swizzleClassMethod()
/expo/packages/expo-dev-menu/ios/
H A DDevMenuUtils.swift10 if let methodA = class_getInstanceMethod(forClass, selectorA), in swizzle() variable
12 let impA = method_getImplementation(methodA) in swizzle()
13 let argsTypeA = method_getTypeEncoding(methodA) in swizzle()
21 method_exchangeImplementations(methodA, methodB) in swizzle()