Home
last modified time | relevance | path

Searched refs:limit (Results 1 – 25 of 137) sorted by relevance

123456

/expo/packages/@expo/cli/src/utils/
H A Dstrings.ts7 export function joinWithCommasAnd(items: string[], limit: number | undefined = 10): string {
18 if (limit && uniqueItems.length > limit) {
19 const first = uniqueItems.slice(0, limit);
20 const remaining = uniqueItems.length - limit; constant
/expo/packages/expo-dev-menu/ios/OverlayContainer/
H A DRubberBandOverlayTranslationFunction.swift28 … return logarithmicTranslation(translation: context.translation, limit: context.maximumHeight) in overlayTranslationHeight()
32 … let height = logarithmicTranslation(translation: translation, limit: context.minimumHeight) in overlayTranslationHeight()
40 private func logarithmicTranslation(translation: CGFloat, limit: CGFloat) -> CGFloat { in logarithmicTranslation()
41 guard limit > 0 else { return 0 } in logarithmicTranslation()
42 return (limit * (1 + factor * log10(translation / limit))).oc_rounded() in logarithmicTranslation()
/expo/home/graphql/queries/
H A DProfileSnacksQuery.query.graphql1 query Home_ProfileSnacks($limit: Int!, $offset: Int!) {
4 snacks(limit: $limit, offset: $offset) {
H A DProfileProjectsQuery.query.graphql1 query Home_MyApps($limit: Int!, $offset: Int!) {
5 apps(limit: $limit, offset: $offset, includeUnpublished: true) {
H A DBranchesForProjectQuery.query.graphql5 $limit: Int!
26 updateBranches(limit: $limit, offset: $offset) {
29 updates(limit: 1, offset: 0, filter: { platform: $platform, sdkVersions: $sdkVersions }) {
H A DSnacksListQuery.query.graphql1 query Home_AccountSnacks($accountName: String!, $limit: Int!, $offset: Int!) {
6 snacks(limit: $limit, offset: $offset) {
H A DProjectsListQuery.query.graphql1 query Home_AccountApps($accountName: String!, $limit: Int!, $offset: Int!) {
6 apps(limit: $limit, offset: $offset, includeUnpublished: true) {
H A DAccountDataQuery.query.graphql7 apps(limit: $appLimit, offset: 0, includeUnpublished: true) {
10 snacks(limit: $snackLimit, offset: 0) {
H A DProfileDataQuery.query.graphql13 apps(limit: $appLimit, offset: 0, includeUnpublished: true) {
16 snacks(limit: $snackLimit, offset: 0) {
H A DProjectQuery.query.graphql28 updateBranches(limit: 100, offset: 0) {
31 updates(limit: 1, offset: 0, filter: { platform: $platform, sdkVersions: $sdkVersions }) {
/expo/packages/expo-modules-core/ios/Swift/DevTools/
H A DURLRequest+httpBodyData.swift9 func httpBodyData(limit: Int = ExpoRequestInterceptorProtocol.MAX_BODY_SIZE) -> Data? { in httpBodyData()
16 contentLengthInt > limit { in httpBodyData()
35 if data.count + chunkSize > limit { in httpBodyData()
/expo/ios/versioned/sdk49/ExpoModulesCore/ios/Swift/DevTools/
H A DURLRequest+httpBodyData.swift9 func httpBodyData(limit: Int = ExpoRequestInterceptorProtocol.MAX_BODY_SIZE) -> Data? { in httpBodyData()
16 contentLengthInt > limit { in httpBodyData()
35 if data.count + chunkSize > limit { in httpBodyData()
/expo/android/expoview/src/main/java/host/exp/exponent/kernel/
H A DExponentErrorMessage.kt11 return userErrorMessage?.let { limit(it) } ?: "" in userErrorMessage()
15 return developerErrorMessage?.let { limit(it) } ?: "" in developerErrorMessage()
23 private fun limit(s: String): String { in limit() method
/expo/packages/@expo/metro-runtime/src/error-overlay/
H A DuseRejectionHandler.ts5 function useStackTraceLimit(limit: number) {
12 Error.stackTraceLimit = limit;
21 }, [limit]);
/expo/ios/vendored/unversioned/react-native-gesture-handler/ios/
H A DRNGestureHandler.h12 #define TEST_MIN_IF_NOT_NAN(value, limit) \ argument
13 (!isnan(limit) && ((limit < 0 && value <= limit) || (limit >= 0 && value >= limit)))
/expo/ios/vendored/sdk49/react-native-gesture-handler/ios/
H A DABI49_0_0RNGestureHandler.h12 #define TEST_MIN_IF_NOT_NAN(value, limit) \ argument
13 (!isnan(limit) && ((limit < 0 && value <= limit) || (limit >= 0 && value >= limit)))
/expo/ios/vendored/sdk48/react-native-gesture-handler/ios/
H A DABI48_0_0RNGestureHandler.h12 #define TEST_MIN_IF_NOT_NAN(value, limit) \ argument
13 (!isnan(limit) && ((limit < 0 && value <= limit) || (limit >= 0 && value >= limit)))
/expo/ios/vendored/sdk47/react-native-gesture-handler/ios/
H A DABI47_0_0RNGestureHandler.h12 #define TEST_MIN_IF_NOT_NAN(value, limit) \ argument
13 (!isnan(limit) && ((limit < 0 && value <= limit) || (limit >= 0 && value >= limit)))
/expo/home/graphql/fragments/
H A DCommonAppData.fragment.graphql11 updateBranches(limit: 100, offset: 0) {
15 limit: 1
/expo/home/screens/HomeScreen/
H A DHomeScreenData.query.graphql10 apps(limit: 5, offset: 0, includeUnpublished: true) {
13 snacks(limit: 5, offset: 0) {
/expo/packages/@expo/metro-runtime/build/error-overlay/
H A DuseRejectionHandler.js9 function useStackTraceLimit(limit) { argument
16 Error.stackTraceLimit = limit;
27 }, [limit]);
/expo/packages/expo-media-library/android/src/test/java/expo/modules/medialibrary/assets/
H A DGetAssetsQueryTests.kt24 val limit = 21.0 in test if AssetOptions are handled correctly() constant
31 first = limit, in test if AssetOptions are handled correctly()
51 assertEquals(limit, queryInfo.limit, 0.0) in test if AssetOptions are handled correctly()
99 assertEquals(limitOutOfRange.toInt(), queryInfo.limit.toInt()) in test if invalid arguments fall back to defaults()
/expo/packages/expo-dev-launcher/bundle/queries/
H A DuseBranchesForApp.tsx19 $limit: Int!
25 updateBranches(offset: $offset, limit: $limit) {
31 limit: 1
37 updates: updates(offset: 0, limit: $limit, filter: { platform: $platform }) {
72 limit: pageSize,
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/medialibrary/assets/
H A DGetAssetsQuery.kt12 val limit: Double, constant in abi48_0_0.expo.modules.medialibrary.assets.GetAssetsQuery
18 val limit = input.first in getQueryFromOptions() constant
34 return GetAssetsQuery(selection, order, limit, offset) in getQueryFromOptions()
/expo/packages/expo-media-library/android/src/main/java/expo/modules/medialibrary/assets/
H A DGetAssetsQuery.kt12 val limit: Double, constant in expo.modules.medialibrary.assets.GetAssetsQuery
18 val limit = input.first in getQueryFromOptions() constant
34 return GetAssetsQuery(selection, order, limit, offset) in getQueryFromOptions()

123456