Home
last modified time | relevance | path

Searched refs:chunk (Results 1 – 25 of 39) sorted by relevance

12

/expo/packages/@expo/cli/src/api/rest/
H A DwrapFetchWithProgress.ts24 res.body.on('data', (chunk) => {
25 length += Buffer.byteLength(chunk);
/expo/docs/public/static/code/
H A DsendNotificationToAPNS.js56 request.on('data', chunk => {
57 data += chunk;
/expo/packages/@expo/cli/src/export/
H A DsaveAssets.ts5 import { chunk } from '../utils/array';
40 for (const keys of chunk(Object.entries(paths), 5)) {
/expo/tools/src/code-review/reviewers/
H A DlintSwiftFiles.ts33 for (const chunk of fileDiff.chunks) { constant
34 for (const change of chunk.changes) {
H A DreviewChangelogEntries.ts27 for (const chunk of changelogDiff.chunks) { constant
28 chunk.changes.forEach((change) => {
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/test_utils/
H A DABI49_0_0Entropy.h119 for (auto const &chunk : spreadResult) { in distribute()
120 if (chunk.size() == 0) { in distribute()
123 result.push_back(chunk); in distribute()
H A DABI49_0_0shadowTreeGeneration.h307 for (auto const &chunk : chunks) {
309 generateShadowNodeTree(entropy, componentDescriptor, chunk.size()));
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/test_utils/
H A DABI48_0_0Entropy.h119 for (auto const &chunk : spreadResult) { in distribute()
120 if (chunk.size() == 0) { in distribute()
123 result.push_back(chunk); in distribute()
H A DABI48_0_0shadowTreeGeneration.h307 for (auto const &chunk : chunks) {
309 generateShadowNodeTree(entropy, componentDescriptor, chunk.size()));
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/test_utils/
H A DABI47_0_0Entropy.h119 for (auto const &chunk : spreadResult) { in distribute()
120 if (chunk.size() == 0) { in distribute()
123 result.push_back(chunk); in distribute()
H A DABI47_0_0shadowTreeGeneration.h301 for (auto const &chunk : chunks) {
303 generateShadowNodeTree(entropy, componentDescriptor, chunk.size()));
/expo/packages/@expo/cli/src/start/server/middleware/
H A DCreateFileMiddleware.ts53 req.on('data', (chunk) => {
54 body += chunk.toString();
/expo/packages/@expo/cli/src/run/ios/appleDevice/
H A DClientManager.ts161 _write(chunk: any, encoding: string, callback: (err?: Error) => void) {
162 this.usbmuxdSock.write(chunk);
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Base/
H A DABI49_0_0RCTMultipartStreamReader.m104 // Search only a subset of chunk that we haven't seen before + few bytes
149 NSData *chunk = [content subdataWithRange:NSMakeRange(chunkStart, length)];
151 contentLength:chunk.length - currentHeadersLength
154 [self emitChunk:chunk headers:currentHeaders callback:callback done:isCloseDelimiter];
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Base/
H A DABI48_0_0RCTMultipartStreamReader.m104 // Search only a subset of chunk that we haven't seen before + few bytes
149 NSData *chunk = [content subdataWithRange:NSMakeRange(chunkStart, length)];
151 contentLength:chunk.length - currentHeadersLength
154 [self emitChunk:chunk headers:currentHeaders callback:callback done:isCloseDelimiter];
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Base/
H A DABI47_0_0RCTMultipartStreamReader.m104 // Search only a subset of chunk that we haven't seen before + few bytes
149 NSData *chunk = [content subdataWithRange:NSMakeRange(chunkStart, length)];
151 contentLength:chunk.length - currentHeadersLength
154 [self emitChunk:chunk headers:currentHeaders callback:callback done:isCloseDelimiter];
/expo/apps/native-component-list/src/screens/
H A DLocalizationScreen.tsx4 import chunk from 'lodash/chunk';
75 const grouped = chunk(sample, 10);
/expo/packages/@expo/fingerprint/src/hash/
H A DHash.ts127 stream.on('data', (chunk) => {
128 hasher.update(chunk);
/expo/ios/versioned/sdk48/EXUpdates/EXUpdates/Multipart/
H A DABI48_0_0EXUpdatesMultipartStreamReader.m78 // Search only a subset of chunk that we haven't seen before + few bytes
118 NSData *chunk = [content subdataWithRange:NSMakeRange(chunkStart, length)];
119 [self emitChunk:chunk headers:currentHeaders callback:callback done:isCloseDelimiter];
/expo/ios/versioned/sdk47/EXUpdates/EXUpdates/Multipart/
H A DABI47_0_0EXUpdatesMultipartStreamReader.m78 // Search only a subset of chunk that we haven't seen before + few bytes
118 NSData *chunk = [content subdataWithRange:NSMakeRange(chunkStart, length)];
119 [self emitChunk:chunk headers:currentHeaders callback:callback done:isCloseDelimiter];
/expo/ios/versioned/sdk49/EXUpdates/EXUpdates/Multipart/
H A DABI49_0_0EXUpdatesMultipartStreamReader.m78 // Search only a subset of chunk that we haven't seen before + few bytes
118 NSData *chunk = [content subdataWithRange:NSMakeRange(chunkStart, length)];
119 [self emitChunk:chunk headers:currentHeaders callback:callback done:isCloseDelimiter];
/expo/packages/expo-updates/ios/EXUpdates/Multipart/
H A DEXUpdatesMultipartStreamReader.m78 // Search only a subset of chunk that we haven't seen before + few bytes
118 NSData *chunk = [content subdataWithRange:NSMakeRange(chunkStart, length)];
119 [self emitChunk:chunk headers:currentHeaders callback:callback done:isCloseDelimiter];
/expo/packages/@expo/fingerprint/build/hash/
H A DHash.js99 stream.on('data', (chunk) => {
100 hasher.update(chunk);
/expo/packages/@expo/cli/src/utils/
H A Darray.ts39 export function chunk<T>(array: T[], size: number): T[][] { function
/expo/guides/
H A DGenerating Jest Mocks.md20 …, in the terminal, where the Expo server is running, you should see a big chunk of text wrapped wi…

12