| /expo/packages/@expo/metro-runtime/src/async-require/ |
| H A D | buildUrlForBundle.native.ts | 8 export function buildUrlForBundle(bundlePath: string): string { 11 return joinComponents(location.origin, bundlePath); 22 return joinComponents(serverUrl, bundlePath);
|
| H A D | buildUrlForBundle.ts | 14 export function buildUrlForBundle(bundlePath: string): string { 17 return '/' + bundlePath.replace(/^\/+/, '');
|
| H A D | loadBundle.ts | 18 export async function loadBundleAsync(bundlePath: string): Promise<void> { 19 const requestUrl = buildUrlForBundle(bundlePath);
|
| /expo/packages/@expo/metro-runtime/build/async-require/ |
| H A D | buildUrlForBundle.native.js | 10 function buildUrlForBundle(bundlePath) { argument 13 return joinComponents(location.origin, bundlePath); 21 return joinComponents(serverUrl, bundlePath);
|
| H A D | buildUrlForBundle.js | 16 function buildUrlForBundle(bundlePath) { argument 19 return '/' + bundlePath.replace(/^\/+/, '');
|
| H A D | loadBundle.js | 19 async function loadBundleAsync(bundlePath) { argument 20 const requestUrl = (0, buildUrlForBundle_1.buildUrlForBundle)(bundlePath);
|
| H A D | buildUrlForBundle.js.map | 1 …bundlePath like `/foobar`\n * @param params like `{ platform: \"web\" }`\n * @returns a URL like \…
|
| H A D | buildUrlForBundle.d.ts | 13 export declare function buildUrlForBundle(bundlePath: string): string;
|
| H A D | buildUrlForBundle.native.d.ts | 7 export declare function buildUrlForBundle(bundlePath: string): string;
|
| H A D | loadBundle.d.ts | 6 export declare function loadBundleAsync(bundlePath: string): Promise<void>;
|
| H A D | loadBundle.js.map | 1 …bundlePath Given a statement like `import('./Bacon')` `bundlePath` would be `Bacon.bundle?params=f…
|
| H A D | buildUrlForBundle.native.js.map | 1 …bundlePath: string): string {\n if (process.env.NODE_ENV === 'production') {\n if (typeof loca…
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/cxxreact/ |
| H A D | ABI48_0_0RAMBundleRegistry.cpp | 40 std::string bundlePath) { in registerBundle() argument 41 m_bundlePaths.emplace(bundleId, std::move(bundlePath)); in registerBundle() 54 auto bundlePath = m_bundlePaths.find(bundleId); in getModule() local 55 if (bundlePath == m_bundlePaths.end()) { in getModule() 60 m_bundles.emplace(bundleId, m_factory(bundlePath->second)); in getModule()
|
| H A D | ABI48_0_0JSExecutor.cpp | 19 const std::string &bundlePath) { in getSyntheticBundlePath() argument 21 return bundlePath; in getSyntheticBundlePath()
|
| H A D | ABI48_0_0JSExecutor.h | 85 const std::string &bundlePath) = 0; 140 const std::string &bundlePath);
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/cxxreact/ |
| H A D | ABI47_0_0RAMBundleRegistry.cpp | 40 std::string bundlePath) { in registerBundle() argument 41 m_bundlePaths.emplace(bundleId, std::move(bundlePath)); in registerBundle() 54 auto bundlePath = m_bundlePaths.find(bundleId); in getModule() local 55 if (bundlePath == m_bundlePaths.end()) { in getModule() 60 m_bundles.emplace(bundleId, m_factory(bundlePath->second)); in getModule()
|
| H A D | ABI47_0_0JSExecutor.cpp | 19 const std::string &bundlePath) { in getSyntheticBundlePath() argument 21 return bundlePath; in getSyntheticBundlePath()
|
| H A D | ABI47_0_0JSExecutor.h | 85 const std::string &bundlePath) = 0; 141 const std::string &bundlePath);
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/cxxreact/ |
| H A D | ABI49_0_0RAMBundleRegistry.cpp | 40 std::string bundlePath) { in registerBundle() argument 41 m_bundlePaths.emplace(bundleId, std::move(bundlePath)); in registerBundle() 54 auto bundlePath = m_bundlePaths.find(bundleId); in getModule() local 55 if (bundlePath == m_bundlePaths.end()) { in getModule() 60 m_bundles.emplace(bundleId, m_factory(bundlePath->second)); in getModule()
|
| H A D | ABI49_0_0JSExecutor.cpp | 21 const std::string &bundlePath) { in getSyntheticBundlePath() argument 23 return bundlePath; in getSyntheticBundlePath()
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/CoreModules/ |
| H A D | ABI49_0_0RCTDevSplitBundleLoader.mm | 41 : (NSString *)bundlePath resolve 45 …rceURL = [[ABI49_0_0RCTBundleURLProvider sharedSettings] jsBundleURLForSplitBundleRoot:bundlePath]; 93 - (void)loadBundle:(NSString *)bundlePath resolve:(ABI49_0_0RCTPromiseResolveBlock)resolve reject:(…
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/CoreModules/ |
| H A D | ABI47_0_0RCTDevSplitBundleLoader.mm | 41 : (NSString *)bundlePath resolve 45 …rceURL = [[ABI47_0_0RCTBundleURLProvider sharedSettings] jsBundleURLForSplitBundleRoot:bundlePath]; 91 - (void)loadBundle:(NSString *)bundlePath resolve:(ABI47_0_0RCTPromiseResolveBlock)resolve reject:(…
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/CoreModules/ |
| H A D | ABI48_0_0RCTDevSplitBundleLoader.mm | 41 : (NSString *)bundlePath resolve 45 …rceURL = [[ABI48_0_0RCTBundleURLProvider sharedSettings] jsBundleURLForSplitBundleRoot:bundlePath]; 91 - (void)loadBundle:(NSString *)bundlePath resolve:(ABI48_0_0RCTPromiseResolveBlock)resolve reject:(…
|
| /expo/ios/versioned/sdk49/EXUpdates/EXUpdates/AppLoader/ |
| H A D | EmbeddedAppLoader.swift | 140 let bundlePath = UpdatesUtils.path(forBundledAsset: asset).require( in downloadAsset() variable 150 try FileManager.default.copyItem(atPath: bundlePath, toPath: destinationUrl.path) in downloadAsset() 151 let data = try NSData(contentsOfFile: bundlePath) as Data in downloadAsset()
|
| /expo/packages/expo-updates/ios/EXUpdates/AppLoader/ |
| H A D | EmbeddedAppLoader.swift | 140 let bundlePath = UpdatesUtils.path(forBundledAsset: asset).require( in downloadAsset() variable 150 try FileManager.default.copyItem(atPath: bundlePath, toPath: destinationUrl.path) in downloadAsset() 151 let data = try NSData(contentsOfFile: bundlePath) as Data in downloadAsset()
|