| /expo/packages/@expo/cli/src/customize/ |
| H A D | templates.ts | 48 destination: (props: DestinationResolutionProps) => string; 55 destination: () => 'babel.config.js', 65 destination: () => 'webpack.config.js', 71 destination: () => 'metro.config.js', 78 destination: ({ webStaticPath }) => webStaticPath + '/serve.json', 85 destination: ({ webStaticPath }) => webStaticPath + '/index.html', 92 destination: () => 'tsconfig.json', 103 const destination = template.destination(props); constant 104 const localProjectFile = path.resolve(projectRoot, destination); 108 title: destination,
|
| H A D | generate.ts | 24 (file) => !!TEMPLATES.find((template) => template.destination(props) === file) 29 (file) => !TEMPLATES.find((template) => template.destination(props) === file) 33 template.destination(props) 44 TEMPLATES.findIndex((template) => template.destination(props) === file) 99 const projectFilePath = path.resolve(projectRoot, template.destination(props));
|
| /expo/tools/src/commands/ |
| H A D | Vendor.ts | 71 target: destination, 96 to: destination, 232 to: destination, 251 target: destination, 260 to: destination, 336 to: destination, 349 output: destination, 367 target: destination, 371 to: destination, 488 to: destination, [all …]
|
| H A D | CherryPickCommand.ts | 61 const destination = options.to ?? currentBranch; constant 62 if (source === destination) { 74 chalk.blue(destination) 80 const mergeBase = await Git.mergeBaseAsync(source, destination); 83 toCommit: destination, 98 toCommit: destination, 154 destination 170 if (destination !== (await Git.getCurrentBranchNameAsync())) { 172 logger.log(chalk.bold(chalk.yellow(`git checkout ${destination}`))); 174 logger.info(`Checking out ${chalk.bold(chalk.blue(destination))} branch...`); [all …]
|
| /expo/tools/src/packages-graph/ |
| H A D | PackagesGraph.ts | 78 destination: PackagesGraphNode, 83 const existingEdge = origin.getOutgoingEdgeForNode(destination); 92 const edge = new PackagesGraphEdge(origin, destination, versionRange); 97 edge.isCyclic = visitedNodes[destination.name] === true; 101 destination.incomingEdges.push(edge); 104 destination.depth = Math.max(origin.depth + 1, destination.depth); 110 chalk.red(`Detected a cycle in ${kind}! ${origin.name} -> ${destination.name}`) 115 resolveDependencies(graph, destination, { ...visitedNodes });
|
| H A D | PackagesGraphEdge.ts | 16 destination: PackagesGraphNode; property in PackagesGraphEdge 34 constructor(origin: PackagesGraphNode, destination: PackagesGraphNode, versionRange: string) { 36 this.destination = destination; 59 `Cannot find a dominant edge kind between ${this.origin.name} and ${this.destination.name}`
|
| H A D | PackagesGraphNode.ts | 40 return this.outgoingEdges.find((edge) => edge.destination === node) ?? null; 68 return [edge, ...edge.destination.getAllDependencyEdges(kinds)]; 78 return [...new Set(this.getAllDependencyEdges(kinds).map((edge) => edge.destination))];
|
| H A D | PackagesGraphUtils.ts | 45 const nextEdges = edge.destination.getOutgoingEdgesOfKinds(kinds); 46 const hasMore = nextEdges.length > 0 && visited[edge.destination.name] !== true; 51 node: edge.destination,
|
| /expo/packages/expo-updates/android/src/main/java/expo/modules/updates/loader/ |
| H A D | LoaderFiles.kt | 18 fun fileExists(destination: File): Boolean { in <lambda>() 19 return destination.exists() in <lambda>() 30 fun copyAssetAndGetHash(asset: AssetEntity, destination: File, context: Context): ByteArray { in <lambda>() 32 copyContextAssetAndGetHash(asset, destination, context) in <lambda>() 34 copyResourceAndGetHash(asset, destination, context) in <lambda>() 43 destination: File, in <lambda>() 48 …e { inputStream -> return UpdatesUtils.verifySHA256AndWriteToFile(inputStream, destination, null) } in <lambda>() 58 destination: File, in <lambda>() 68 …e { inputStream -> return UpdatesUtils.verifySHA256AndWriteToFile(inputStream, destination, null) } in <lambda>()
|
| H A D | EmbeddedLoader.kt | 79 val destination = File(updatesDirectory, filename) in loadAsset() constant 81 if (loaderFiles.fileExists(destination)) { in loadAsset() 86 assetEntity.hash = loaderFiles.copyAssetAndGetHash(assetEntity, destination, context) in loadAsset()
|
| /expo/tools/src/vendoring/devmenu/steps/ |
| H A D | Clone.ts | 21 destination?: string; 30 private destination?: string; 32 constructor({ url, destination, ...options }: CloneRepoSettings) { 35 this.destination = destination; 40 return this.destination || '<workingDirectory>';
|
| /expo/docs/common/ |
| H A D | redirect.tsx | 3 const redirect = (destination: string) => { 6 <meta httpEquiv="refresh" content={`0; url=${destination}`} />
|
| /expo/packages/expo-print/android/src/main/java/expo/modules/print/ |
| H A D | PrintDocumentAdapter.kt | 22 …override fun onWrite(pages: Array<PageRange>, destination: ParcelFileDescriptor, cancellationSigna… in onWrite() 39 FileUtils.copyToOutputStream(destination, callback, it) in onWrite() 49 FileUtils.copyToOutputStream(destination, callback, it) in onWrite()
|
| H A D | FileUtils.kt | 41 …fun copyToOutputStream(destination: ParcelFileDescriptor, callback: PrintDocumentAdapter.WriteResu… in <lambda>() 42 FileOutputStream(destination.fileDescriptor).use { fileOut -> in <lambda>()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/print/ |
| H A D | PrintDocumentAdapter.kt | 20 …override fun onWrite(pages: Array<PageRange>, destination: ParcelFileDescriptor, cancellationSigna… in onWrite() 37 FileUtils.copyToOutputStream(destination, callback, it) in onWrite() 47 FileUtils.copyToOutputStream(destination, callback, it) in onWrite()
|
| H A D | FileUtils.kt | 41 …fun copyToOutputStream(destination: ParcelFileDescriptor, callback: PrintDocumentAdapter.WriteResu… in <lambda>() 42 FileOutputStream(destination.fileDescriptor).use { fileOut -> in <lambda>()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/print/ |
| H A D | PrintDocumentAdapter.kt | 22 …override fun onWrite(pages: Array<PageRange>, destination: ParcelFileDescriptor, cancellationSigna… in onWrite() 39 FileUtils.copyToOutputStream(destination, callback, it) in onWrite() 49 FileUtils.copyToOutputStream(destination, callback, it) in onWrite()
|
| H A D | FileUtils.kt | 41 …fun copyToOutputStream(destination: ParcelFileDescriptor, callback: PrintDocumentAdapter.WriteResu… in <lambda>() 42 FileOutputStream(destination.fileDescriptor).use { fileOut -> in <lambda>()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/print/ |
| H A D | PrintDocumentAdapter.kt | 20 …override fun onWrite(pages: Array<PageRange>, destination: ParcelFileDescriptor, cancellationSigna… in onWrite() 37 FileUtils.copyToOutputStream(destination, callback, it) in onWrite() 47 FileUtils.copyToOutputStream(destination, callback, it) in onWrite()
|
| H A D | FileUtils.kt | 41 …fun copyToOutputStream(destination: ParcelFileDescriptor, callback: PrintDocumentAdapter.WriteResu… in <lambda>() 42 FileOutputStream(destination.fileDescriptor).use { fileOut -> in <lambda>()
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/Image/ |
| H A D | ABI49_0_0RCTImageUtils.m | 336 CGImageDestinationRef destination; 340 destination = CGImageDestinationCreateWithData(imageData, kUTTypePNG, 1, NULL); 343 destination = CGImageDestinationCreateWithData(imageData, kUTTypeJPEG, 1, NULL); 346 if (!destination) { 350 CGImageDestinationAddImage(destination, cgImage, (__bridge CFDictionaryRef)properties); 351 if (!CGImageDestinationFinalize(destination)) { 355 CFRelease(destination);
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/Libraries/Image/ |
| H A D | ABI47_0_0RCTImageUtils.m | 340 CGImageDestinationRef destination; 344 destination = CGImageDestinationCreateWithData(imageData, kUTTypePNG, 1, NULL); 347 destination = CGImageDestinationCreateWithData(imageData, kUTTypeJPEG, 1, NULL); 350 if (!destination) { 354 CGImageDestinationAddImage(destination, cgImage, (__bridge CFDictionaryRef)properties); 355 if (!CGImageDestinationFinalize(destination)) { 359 CFRelease(destination);
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/Image/ |
| H A D | ABI48_0_0RCTImageUtils.m | 336 CGImageDestinationRef destination; 340 destination = CGImageDestinationCreateWithData(imageData, kUTTypePNG, 1, NULL); 343 destination = CGImageDestinationCreateWithData(imageData, kUTTypeJPEG, 1, NULL); 346 if (!destination) { 350 CGImageDestinationAddImage(destination, cgImage, (__bridge CFDictionaryRef)properties); 351 if (!CGImageDestinationFinalize(destination)) { 355 CFRelease(destination);
|
| /expo/packages/expo-updates/android/src/main/java/expo/modules/updates/ |
| H A D | UpdatesUtils.kt | 120 …fun verifySHA256AndWriteToFile(inputStream: InputStream, destination: File, expectedBase64URLEncod… in <lambda>() 124 val tmpFile = File(destination.absolutePath + ".tmp") in <lambda>() 137 if (!tmpFile.renameTo(destination)) { in <lambda>() 138 …s successful, but failed to move from temporary to permanent location " + destination.absolutePath) in <lambda>()
|
| /expo/packages/@expo/cli/src/api/rest/cache/ |
| H A D | wrapFetchWithCache.ts | 119 destination: req.destination,
|