| /expo/packages/@expo/cli/src/utils/ |
| H A D | strings.ts | 7 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 D | RubberBandOverlayTranslationFunction.swift | 28 … 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 D | ProfileSnacksQuery.query.graphql | 1 query Home_ProfileSnacks($limit: Int!, $offset: Int!) { 4 snacks(limit: $limit, offset: $offset) {
|
| H A D | ProfileProjectsQuery.query.graphql | 1 query Home_MyApps($limit: Int!, $offset: Int!) { 5 apps(limit: $limit, offset: $offset, includeUnpublished: true) {
|
| H A D | BranchesForProjectQuery.query.graphql | 5 $limit: Int! 26 updateBranches(limit: $limit, offset: $offset) { 29 updates(limit: 1, offset: 0, filter: { platform: $platform, sdkVersions: $sdkVersions }) {
|
| H A D | SnacksListQuery.query.graphql | 1 query Home_AccountSnacks($accountName: String!, $limit: Int!, $offset: Int!) { 6 snacks(limit: $limit, offset: $offset) {
|
| H A D | ProjectsListQuery.query.graphql | 1 query Home_AccountApps($accountName: String!, $limit: Int!, $offset: Int!) { 6 apps(limit: $limit, offset: $offset, includeUnpublished: true) {
|
| H A D | AccountDataQuery.query.graphql | 7 apps(limit: $appLimit, offset: 0, includeUnpublished: true) { 10 snacks(limit: $snackLimit, offset: 0) {
|
| H A D | ProfileDataQuery.query.graphql | 13 apps(limit: $appLimit, offset: 0, includeUnpublished: true) { 16 snacks(limit: $snackLimit, offset: 0) {
|
| H A D | ProjectQuery.query.graphql | 28 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 D | URLRequest+httpBodyData.swift | 9 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 D | URLRequest+httpBodyData.swift | 9 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 D | ExponentErrorMessage.kt | 11 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 D | useRejectionHandler.ts | 5 function useStackTraceLimit(limit: number) { 12 Error.stackTraceLimit = limit; 21 }, [limit]);
|
| /expo/ios/vendored/unversioned/react-native-gesture-handler/ios/ |
| H A D | RNGestureHandler.h | 12 #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 D | ABI49_0_0RNGestureHandler.h | 12 #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 D | ABI48_0_0RNGestureHandler.h | 12 #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 D | ABI47_0_0RNGestureHandler.h | 12 #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 D | CommonAppData.fragment.graphql | 11 updateBranches(limit: 100, offset: 0) { 15 limit: 1
|
| /expo/home/screens/HomeScreen/ |
| H A D | HomeScreenData.query.graphql | 10 apps(limit: 5, offset: 0, includeUnpublished: true) { 13 snacks(limit: 5, offset: 0) {
|
| /expo/packages/@expo/metro-runtime/build/error-overlay/ |
| H A D | useRejectionHandler.js | 9 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 D | GetAssetsQueryTests.kt | 24 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 D | useBranchesForApp.tsx | 19 $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 D | GetAssetsQuery.kt | 12 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 D | GetAssetsQuery.kt | 12 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()
|