Searched refs:existingImageIndex (Results 1 – 3 of 3) sorted by relevance
| /expo/packages/@expo/prebuild-config/build/plugins/unversioned/expo-splash-screen/ |
| H A D | InterfaceBuilder.js | 64 const existingImageIndex = imageSection.findIndex(image => image.$.name === imageName); 65 if (existingImageIndex > -1) { 66 imageSection.splice(existingImageIndex, 1); 115 const existingImageIndex = imageSection.findIndex(image => image.$.name === imageName); 116 if (existingImageIndex > -1) { 117 debug(`Removing existing IB image asset at index ${existingImageIndex}`); 118 imageSection.splice(existingImageIndex, 1);
|
| H A D | InterfaceBuilder.js.map | 1 …existingImageIndex","findIndex","name","splice","childId","parentId","applyImageToSplashScreenXML"…
|
| /expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-splash-screen/ |
| H A D | InterfaceBuilder.ts | 307 const existingImageIndex = imageSection.findIndex((image) => image.$.name === imageName); constant 308 if (existingImageIndex > -1) { 309 imageSection.splice(existingImageIndex, 1); 376 const existingImageIndex = imageSection.findIndex((image) => image.$.name === imageName); constant 377 if (existingImageIndex > -1) { 378 debug(`Removing existing IB image asset at index ${existingImageIndex}`); 379 imageSection.splice(existingImageIndex, 1);
|