| /expo/packages/create-expo-module/src/ |
| H A D | createExampleApp.ts | 40 await newStep('Initializing the example app', async (step) => { 52 step.succeed('Initialized the example app'); 55 await newStep('Configuring the example app', async (step) => { 72 step.succeed('Configured the example app'); 79 await newStep('Installing dependencies in the example app', async (step) => { 83 step.succeed('Installed dependencies in the example app'); 85 step.succeed('Installed dependencies in the example app (skipped installing CocoaPods)'); 158 await newStep('Prebuilding the example app', async (step) => { 163 step.succeed('Prebuilt the example app');
|
| H A D | utils.ts | 10 action: (step: ora.Ora) => Promise<Result> | Result, 14 const step = ora({ constant 21 step.start(); 24 return await action(step); 26 step.fail();
|
| H A D | create-expo-module.ts | 115 await newStep('Creating the module from template files', async (step) => { 117 step.succeed('Created the module from template files'); 120 await newStep('Installing module dependencies', async (step) => { 122 step.succeed('Installed module dependencies'); 124 await newStep('Compiling TypeScript files', async (step) => { 129 step.succeed('Compiled TypeScript files'); 150 await newStep('Creating an empty Git repository', async (step) => { 154 step.succeed('Created an empty Git repository'); 158 step.warn( 163 step.fail(e.toString()); [all …]
|
| /expo/packages/@expo/cli/src/utils/ |
| H A D | cocoapods.ts | 72 let step = logNewSection('Installing CocoaPods...'); 74 step.succeed('Skipped installing CocoaPods because operating system is not on macOS.'); 86 step.text = 'CocoaPods CLI not found in your PATH, installing it now.'; 87 step.stopAndPersist(); 96 step.succeed('Installed CocoaPods CLI.'); 97 step = logNewSection('Running `pod install` in the `ios` directory.'); 99 step.stopAndPersist({ 115 spinner: step, 119 step.succeed('Installed pods and initialized Xcode workspace.'); 122 step.stopAndPersist({
|
| /expo/packages/create-expo-module/build/ |
| H A D | createExampleApp.js | 32 await (0, utils_1.newStep)('Initializing the example app', async (step) => { 40 step.succeed('Initialized the example app'); 42 await (0, utils_1.newStep)('Configuring the example app', async (step) => { 54 step.succeed('Configured the example app'); 58 await (0, utils_1.newStep)('Installing dependencies in the example app', async (step) => { 62 step.succeed('Installed dependencies in the example app'); 65 … step.succeed('Installed dependencies in the example app (skipped installing CocoaPods)'); 128 await (0, utils_1.newStep)('Prebuilding the example app', async (step) => { 133 step.succeed('Prebuilt the example app');
|
| H A D | utils.js | 13 const step = (0, ora_1.default)({ 19 step.start(); 21 return await action(step); 24 step.fail();
|
| H A D | create-expo-module.js | 80 await (0, utils_1.newStep)('Creating the module from template files', async (step) => { 82 step.succeed('Created the module from template files'); 85 await (0, utils_1.newStep)('Installing module dependencies', async (step) => { 87 step.succeed('Installed module dependencies'); 89 await (0, utils_1.newStep)('Compiling TypeScript files', async (step) => { 94 step.succeed('Compiled TypeScript files'); 113 await (0, utils_1.newStep)('Creating an empty Git repository', async (step) => { 117 step.succeed('Created an empty Git repository'); 127 step.fail(e.toString()); 175 return await (0, utils_1.newStep)('Downloading module template from npm', async (step) => { [all …]
|
| /expo/packages/create-expo/src/ |
| H A D | Template.ts | 189 let step = logNewSection('Installing CocoaPods.'); 191 step.succeed('Skipped installing CocoaPods because operating system is not macOS.'); 201 step.text = 'CocoaPods CLI not found in your $PATH, installing it now.'; 202 step.render(); 204 step.succeed('Installed CocoaPods CLI'); 205 step = logNewSection('Running `pod install` in the `ios` directory.'); 207 step.stopAndPersist({ 222 step.succeed('Installed pods and initialized Xcode workspace.'); 225 step.stopAndPersist({
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/Libraries/Components/__tests__/__snapshots__/ |
| H A D | Slider-test.js.snap | 13 step={0} 33 step={0} 58 step={0} 83 step={0} 108 step={0}
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/Components/__tests__/__snapshots__/ |
| H A D | Slider-test.js.snap | 13 step={0} 33 step={0} 58 step={0} 83 step={0} 108 step={0}
|
| /expo/tools/src/vendoring/ |
| H A D | legacy.ts | 906 step.recursive = step.recursive === true; 907 step.updatePbxproj = !(step.updatePbxproj === false); 911 if (executeIOS && step.sourceIosPath && step.targetIosPath) { 932 if (step.updatePbxproj) { 950 if (step.iosPrefix) { 972 step.sourceAndroidPath && 973 step.targetAndroidPath && 974 step.sourceAndroidPackage && 975 step.targetAndroidPackage 988 step.targetAndroidPath [all …]
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Views/ |
| H A D | ABI48_0_0RCTSliderManager.m | 32 if (sender.step > 0 && sender.step <= (sender.maximumValue - sender.minimumValue)) { 36 … sender.minimumValue + round((sender.value - sender.minimumValue) / sender.step) * sender.step)); 69 ABI48_0_0RCT_EXPORT_VIEW_PROPERTY(step, float); category
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Views/ |
| H A D | ABI47_0_0RCTSliderManager.m | 32 if (sender.step > 0 && sender.step <= (sender.maximumValue - sender.minimumValue)) { 36 … sender.minimumValue + round((sender.value - sender.minimumValue) / sender.step) * sender.step)); 69 ABI47_0_0RCT_EXPORT_VIEW_PROPERTY(step, float); category
|
| /expo/tools/src/ |
| H A D | Utils.ts | 173 action: (step: ora.Ora) => Promise<Result> | Result, 178 const step = ora({ constant 185 step.start(); 188 const result = await action(step); 191 step.succeed(succeedText); 195 step.fail();
|
| /expo/packages/expo-camera/android/src/main/java/expo/modules/camera/utils/ |
| H A D | BarCodeScannerListMappers.kt | 4 for (it in 0 until this.size step 2) { in mapY() 10 for (it in 1 until this.size step 2) { in mapX()
|
| /expo/packages/expo-barcode-scanner/android/src/main/java/expo/modules/barcodescanner/utils/ |
| H A D | BarCodeScannerListMappers.kt | 4 for (it in 0 until this.size step 2) { in mapX() 10 for (it in 1 until this.size step 2) { in mapY()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/barcodescanner/utils/ |
| H A D | BarCodeScannerListMappers.kt | 4 for (it in 0 until this.size step 2) { in mapX() 10 for (it in 1 until this.size step 2) { in mapY()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/barcodescanner/utils/ |
| H A D | BarCodeScannerListMappers.kt | 4 for (it in 0 until this.size step 2) { in mapX() 10 for (it in 1 until this.size step 2) { in mapY()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/camera/utils/ |
| H A D | BarCodeScannerListMappers.kt | 4 for (it in 0 until this.size step 2) { in mapY() 10 for (it in 1 until this.size step 2) { in mapX()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/barcodescanner/utils/ |
| H A D | BarCodeScannerListMappers.kt | 4 for (it in 0 until this.size step 2) { in mapX() 10 for (it in 1 until this.size step 2) { in mapY()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/camera/utils/ |
| H A D | BarCodeScannerListMappers.kt | 4 for (it in 0 until this.size step 2) { in mapY() 10 for (it in 1 until this.size step 2) { in mapX()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/camera/utils/ |
| H A D | BarCodeScannerListMappers.kt | 4 for (it in 0 until this.size step 2) { in mapY() 10 for (it in 1 until this.size step 2) { in mapX()
|
| /expo/packages/@expo/cli/src/prebuild/ |
| H A D | clearNativeFolder.ts | 16 const step = logNewSection(`Clearing ${folders.join(', ')}`); constant 26 step.succeed(`Cleared ${folders.join(', ')} code`); 28 step.fail(`Failed to delete ${folders.join(', ')} code: ${error.message}`);
|
| /expo/ios/vendored/sdk47/@react-native-community/slider/ios/ |
| H A D | ABI47_0_0RNCSlider.m | 137 if (self.step > 0 && value >= self.maximumValue) { 141 if (self.step > 0 && self.step <= (self.maximumValue - self.minimumValue)) { 153 …self.maximumValue, self.minimumValue + _round((value - self.minimumValue) / self.step) * self.step)
|
| /expo/ios/vendored/sdk48/@react-native-community/slider/ios/ |
| H A D | ABI48_0_0RNCSlider.m | 143 if (self.step > 0 && value >= self.maximumValue) { 147 if (self.step > 0 && self.step <= (self.maximumValue - self.minimumValue)) { 159 …self.maximumValue, self.minimumValue + _round((value - self.minimumValue) / self.step) * self.step)
|