Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 651) sorted by relevance

12345678910>>...27

/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/kotlin/
H A DFilteredIterator.kt11 private var next: E? = null variable in abi49_0_0.expo.modules.kotlin.FilteredIterator
18 return next != null in hasNext()
21 override fun next(): E { in next() method in abi49_0_0.expo.modules.kotlin.FilteredIterator
22 val returnValue = next!! in next()
29 val next = iterator.next() in findNext() constant
30 this.next = next in findNext()
31 if (filter.apply(next)) { in findNext()
35 next = null in findNext()
/expo/packages/expo-modules-core/android/src/main/java/expo/modules/kotlin/
H A DFilteredIterator.kt11 private var next: E? = null variable in expo.modules.kotlin.FilteredIterator
18 return next != null in hasNext()
21 override fun next(): E { in next() method in expo.modules.kotlin.FilteredIterator
22 val returnValue = next!! in next()
29 val next = iterator.next() in findNext() constant
30 this.next = next in findNext()
31 if (filter.apply(next)) { in findNext()
35 next = null in findNext()
/expo/packages/@expo/cli/src/api/rest/__tests__/
H A DwrapFetchWithBaseUrl-test.ts8 const next = wrapFetchWithBaseUrl(input, 'https://example.com/v2/'); constant
9 await next('test', {});
14 const next = wrapFetchWithBaseUrl(input, 'https://example.com/v2/'); constant
15 await next('test', {});
20 const next = wrapFetchWithBaseUrl(input, 'https://example.com/v2'); constant
21 await next('https://expo.dev/', {});
26 const next = wrapFetchWithBaseUrl(input, 'https://example.com/v2/'); constant
27 await next('test', {
36 const next = wrapFetchWithBaseUrl(input, 'https://example.com/v2'); constant
37 expect(() => next({ href: 'foo' }, {})).toThrow(/string URL/);
H A DwrapFetchWithOffline-test.ts7 const next = wrapFetchWithOffline(input); constant
8 await next('https://example.com/', {});
14 const next = wrapFetchWithOffline(input); constant
15 await next('https://example.com/', {});
H A DwrapFetchWithProxy.test.ts14 const next = wrapFetchWithProxy(input); constant
15 await next('https://example.com/', {});
21 const next = wrapFetchWithProxy(input); constant
22 await next('https://example.com/', {});
/expo/packages/@expo/cli/src/start/server/middleware/__tests__/
H A DFaviconMiddleware.test.ts30 const next = jest.fn(); constant
38 next
41 expect(next).toBeCalledTimes(1);
42 expect(next).toBeCalledWith();
59 const next = jest.fn(); constant
66 next
71 expect(next).toBeCalledWith();
91 const next = jest.fn(); constant
98 next
124 const next = jest.fn(); constant
[all …]
H A DServeStaticMiddleware-test.ts23 const next = jest.fn(); constant
32 next
39 expect(next).toBeCalled();
43 const next = jest.fn(); constant
52 next
61 expect(next).not.toBeCalled();
66 const next = jest.fn(); constant
77 next
84 expect(next).toBeCalled();
H A DHistoryFallbackMiddleware-test.ts10 const next = jest.fn(); constant
17 next
29 expect(next).toBeCalledTimes(0);
38 const next = jest.fn(); constant
45 next
57 expect(next).toBeCalledTimes(0);
65 const next = jest.fn(); constant
72 next
79 expect(next).toBeCalledTimes(1);
H A DExpoMiddleware-test.ts10 handleRequestAsync(req: ServerRequest, res: ServerResponse, next: ServerNext): Promise<void> {
38 const next = jest.fn(); constant
55 next
73 const next = jest.fn(); constant
90 next
99 expect(next).not.toBeCalled();
111 const next = jest.fn(); constant
123 next
128 expect(next).toBeCalled();
/expo/packages/@expo/cli/src/utils/analytics/__tests__/
H A DmetroDebuggerMiddleware-test.ts46 const next = jest.fn(); constant
48 middleware(req({ url: '/json', userAgent: FLIPPER_UA }), {} as any, next);
55 const next = jest.fn(); constant
57 middleware(req({ url: '/json', userAgent: FLIPPER_UA }), {} as any, next);
58 middleware(req({ url: '/json', userAgent: FLIPPER_UA }), {} as any, next);
61 expect(next).toHaveBeenCalledTimes(2);
66 const next = jest.fn(); constant
77 const next = jest.fn(); constant
79 middleware(req({ url: '/json', userAgent: FLIPPER_UA }), {} as any, next);
89 const next = jest.fn(); constant
[all …]
/expo/packages/@expo/cli/src/utils/analytics/
H A DmetroDebuggerMiddleware.ts24 return (req: Request, res: Response, next: Next) => {
25 if (typeof next === 'function') {
26 next(undefined);
31 return (req: Request, res: Response, next: Next) => {
33 if (hasReported && typeof next === 'function') {
34 return next(undefined);
43 if (typeof next === 'function') {
44 return next(undefined);
/expo/packages/expo-modules-core/android/src/main/java/expo/modules/kotlin/views/
H A DFilteredReadableMap.kt12 private var next: String? = null variable in expo.modules.kotlin.views.FilteredReadableMapKeySetIterator
19 return next != null in hasNextKey()
23 val returnValue = next!! in nextKey()
30 val next = iterator.nextKey() in findNext() constant
31 this.next = next in findNext()
32 if (filter.apply(next)) { in findNext()
36 next = null in findNext()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/kotlin/views/
H A DFilteredReadableMap.kt12 private var next: String? = null variable in abi49_0_0.expo.modules.kotlin.views.FilteredReadableMapKeySetIterator
19 return next != null in hasNextKey()
23 val returnValue = next!! in nextKey()
30 val next = iterator.nextKey() in findNext() constant
31 this.next = next in findNext()
32 if (filter.apply(next)) { in findNext()
36 next = null in findNext()
/expo/packages/@expo/cli/src/start/server/middleware/
H A DServeStaticMiddleware.ts23 return (req: ServerRequest, res: ServerResponse, next: any) => {
25 return next();
31 return next();
36 return next();
52 next(err);
56 next();
H A DHistoryFallbackMiddleware.ts13 next: ServerNext
17 return (req: ServerRequest, res: ServerResponse, next: any) => {
23 return this.indexMiddleware(req, res, next);
26 return next();
H A DExpoMiddleware.ts33 next: ServerNext
41 next: ServerNext
44 return await this.handleRequestAsync(req, res, next);
60 const middleware = async (req: ServerRequest, res: ServerResponse, next: ServerNext) => {
62 return next();
64 return internalMiddleware(req, res, next);
H A DFaviconMiddleware.ts21 next: ServerNext
24 return next();
32 return next();
38 return next(error);
/expo/packages/@expo/cli/src/start/server/middleware/inspector/__tests__/
H A DcreateJsInspectorMiddleware-test.ts16 const next = jest.fn(); constant
24 await middlewareAsync(req, res as ServerResponse, next);
35 const next = jest.fn(); constant
43 await middlewareAsync(req, res as ServerResponse, next);
51 const next = jest.fn(); constant
59 await middlewareAsync(req, res as ServerResponse, next);
67 const next = jest.fn(); constant
70 await middlewareAsync(req, res as ServerResponse, next);
82 const next = jest.fn(); constant
90 await middlewareAsync(req, res as ServerResponse, next);
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/api/
H A DJsiSkContourMeasureIter.h32 JSI_HOST_FUNCTION(next) { in JSI_HOST_FUNCTION() argument
33 auto next = getObject()->next(); in JSI_HOST_FUNCTION() local
34 if (next == nullptr) { in JSI_HOST_FUNCTION()
38 std::make_shared<JsiSkContourMeasure>(getContext(), std::move(next)); in JSI_HOST_FUNCTION()
45 JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkContourMeasureIter, next), in JSI_EXPORT_FUNCTIONS() argument
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/api/
H A DJsiSkContourMeasureIter.h32 JSI_HOST_FUNCTION(next) { in JSI_HOST_FUNCTION() argument
33 auto next = getObject()->next(); in JSI_HOST_FUNCTION() local
34 if (next == nullptr) { in JSI_HOST_FUNCTION()
38 std::make_shared<JsiSkContourMeasure>(getContext(), std::move(next)); in JSI_HOST_FUNCTION()
45 JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkContourMeasureIter, next), in JSI_EXPORT_FUNCTIONS() argument
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/api/
H A DJsiSkContourMeasureIter.h32 JSI_HOST_FUNCTION(next) { in JSI_HOST_FUNCTION() argument
33 auto next = getObject()->next(); in JSI_HOST_FUNCTION() local
34 if (next == nullptr) { in JSI_HOST_FUNCTION()
38 std::make_shared<JsiSkContourMeasure>(getContext(), std::move(next)); in JSI_HOST_FUNCTION()
45 JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkContourMeasureIter, next), in JSI_EXPORT_FUNCTIONS() argument
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/api/
H A DJsiSkContourMeasureIter.h32 JSI_HOST_FUNCTION(next) { in JSI_HOST_FUNCTION() argument
33 auto next = getObject()->next(); in JSI_HOST_FUNCTION() local
34 if (next == nullptr) { in JSI_HOST_FUNCTION()
38 std::make_shared<JsiSkContourMeasure>(getContext(), std::move(next)); in JSI_HOST_FUNCTION()
45 JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkContourMeasureIter, next), in JSI_EXPORT_FUNCTIONS() argument
/expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/api/
H A DJsiSkContourMeasureIter.h39 JSI_HOST_FUNCTION(next) in JSI_EXPORT_PROP_GET()
41 auto next = getObject()->next(); in JSI_EXPORT_PROP_GET() local
42 if (next == nullptr) in JSI_EXPORT_PROP_GET()
46 … auto nextObject = std::make_shared<JsiSkContourMeasure>(getContext(), std::move(next)); in JSI_EXPORT_PROP_GET()
52 JSI_EXPORT_FUNC(JsiSkContourMeasureIter, next)) in JSI_EXPORT_FUNCTIONS() argument
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/api/
H A DJsiSkContourMeasureIter.h40 JSI_HOST_FUNCTION(next) { in JSI_EXPORT_PROP_GET()
41 auto next = getObject()->next(); in JSI_EXPORT_PROP_GET() local
42 if (next == nullptr) { in JSI_EXPORT_PROP_GET()
46 std::make_shared<JsiSkContourMeasure>(getContext(), std::move(next)); in JSI_EXPORT_PROP_GET()
51 JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkContourMeasureIter, next)) in JSI_EXPORT_FUNCTIONS() argument
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/api/
H A DJsiSkContourMeasureIter.h40 JSI_HOST_FUNCTION(next) { in JSI_EXPORT_PROP_GET()
41 auto next = getObject()->next(); in JSI_EXPORT_PROP_GET() local
42 if (next == nullptr) { in JSI_EXPORT_PROP_GET()
46 std::make_shared<JsiSkContourMeasure>(getContext(), std::move(next)); in JSI_EXPORT_PROP_GET()
51 JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkContourMeasureIter, next)) in JSI_EXPORT_FUNCTIONS() argument

12345678910>>...27