Home
last modified time | relevance | path

Searched refs:destination (Results 1 – 25 of 78) sorted by relevance

1234

/expo/packages/@expo/cli/src/customize/
H A Dtemplates.ts48 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 Dgenerate.ts24 (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 DVendor.ts71 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 DCherryPickCommand.ts61 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 DPackagesGraph.ts78 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 DPackagesGraphEdge.ts16 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 DPackagesGraphNode.ts40 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 DPackagesGraphUtils.ts45 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 DLoaderFiles.kt18 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 DEmbeddedLoader.kt79 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 DClone.ts21 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 Dredirect.tsx3 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 DPrintDocumentAdapter.kt22 …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 DFileUtils.kt41 …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 DPrintDocumentAdapter.kt20 …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 DFileUtils.kt41 …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 DPrintDocumentAdapter.kt22 …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 DFileUtils.kt41 …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 DPrintDocumentAdapter.kt20 …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 DFileUtils.kt41 …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 DABI49_0_0RCTImageUtils.m336 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 DABI47_0_0RCTImageUtils.m340 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 DABI48_0_0RCTImageUtils.m336 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 DUpdatesUtils.kt120 …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 DwrapFetchWithCache.ts119 destination: req.destination,

1234