| /expo/tools/src/packages-graph/ |
| H A D | PackagesGraphNode.ts | 40 return this.outgoingEdges.find((edge) => edge.destination === node) ?? null; 44 return this.incomingEdges.find((edge) => edge.origin === node) ?? null; 49 .map((edge) => { 50 if (!edge.isCyclic && kinds.includes(edge.getDominantKind())) { 51 return [edge, ...edge.origin.getAllDependentEdges(kinds)]; 61 return [...new Set(this.getAllDependentEdges(kinds).map((edge) => edge.origin))]; 66 .map((edge) => { 67 if (!edge.isCyclic && kinds.includes(edge.getDominantKind())) { 68 return [edge, ...edge.destination.getAllDependencyEdges(kinds)]; 78 return [...new Set(this.getAllDependencyEdges(kinds).map((edge) => edge.destination))]; [all …]
|
| H A D | PackagesGraph.ts | 92 const edge = new PackagesGraphEdge(origin, destination, versionRange); constant 94 edge.addKind(kind); 97 edge.isCyclic = visitedNodes[destination.name] === true; 100 origin.outgoingEdges.push(edge); 101 destination.incomingEdges.push(edge); 106 if (edge.isCyclic) {
|
| H A D | PackagesGraphUtils.ts | 43 const edge = edges[i]; constant 45 const nextEdges = edge.destination.getOutgoingEdgesOfKinds(kinds); 46 const hasMore = nextEdges.length > 0 && visited[edge.destination.name] !== true; constant 48 process.stdout.write(chalk.gray(prefix) + edgePointer(isLast, hasMore, edge.isCyclic)); 51 node: edge.destination, 53 kind: edge.getDominantKind(), 54 version: edge.versionRange,
|
| /expo/packages/expo-maps/ios/ExpoMaps/GoogleMaps/ |
| H A D | GoogleMapsPolygons.swift | 28 let edge = ExpoGoogleMapsPolyline() in setPolygons() variable 29 edge.strokeWidth = CGFloat(polygonObject.strokeWidth ?? Float(edge.strokeWidth)) in setPolygons() 30 edge.strokeColor = polygonObject.strokeColor ?? edge.strokeColor in setPolygons() 35 edge.path = path in setPolygons() 37 edge.spans = strokePatternToStyles( in setPolygons() 38 path: path, strokePattern: edge.pattern!, color: edge.strokeColor, in setPolygons() 39 width: Float(edge.strokeWidth)) in setPolygons() 40 edge.map = mapView in setPolygons() 41 edges.append(edge) in setPolygons() 53 for edge in edges { in detachAndDeletePolygons() [all …]
|
| /expo/ios/versioned/sdk49/ExpoMaps/ExpoMaps/GoogleMaps/ |
| H A D | GoogleMapsPolygons.swift | 28 let edge = ExpoGoogleMapsPolyline() in setPolygons() variable 29 edge.strokeWidth = CGFloat(polygonObject.strokeWidth ?? Float(edge.strokeWidth)) in setPolygons() 30 edge.strokeColor = polygonObject.strokeColor ?? edge.strokeColor in setPolygons() 35 edge.path = path in setPolygons() 37 edge.spans = strokePatternToStyles( in setPolygons() 38 path: path, strokePattern: edge.pattern!, color: edge.strokeColor, in setPolygons() 39 width: Float(edge.strokeWidth)) in setPolygons() 40 edge.map = mapView in setPolygons() 41 edges.append(edge) in setPolygons() 53 for edge in edges { in detachAndDeletePolygons() [all …]
|
| /expo/ios/versioned/sdk48/ExpoMaps/ExpoMaps/GoogleMaps/ |
| H A D | GoogleMapsPolygons.swift | 28 let edge = ExpoGoogleMapsPolyline() in setPolygons() variable 29 edge.strokeWidth = CGFloat(polygonObject.strokeWidth ?? Float(edge.strokeWidth)) in setPolygons() 30 edge.strokeColor = polygonObject.strokeColor ?? edge.strokeColor in setPolygons() 35 edge.path = path in setPolygons() 37 edge.spans = strokePatternToStyles( in setPolygons() 38 path: path, strokePattern: edge.pattern!, color: edge.strokeColor, in setPolygons() 39 width: Float(edge.strokeWidth)) in setPolygons() 40 edge.map = mapView in setPolygons() 41 edges.append(edge) in setPolygons() 53 for edge in edges { in detachAndDeletePolygons() [all …]
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/yoga/yoga/ |
| H A D | ABI47_0_0YGNodePrint.cpp | 95 for (int edge = ABI47_0_0YGEdgeLeft; edge != ABI47_0_0YGEdgeAll; ++edge) { in appendEdges() local 96 string str = key + "-" + ABI47_0_0YGEdgeToString(static_cast<ABI47_0_0YGEdge>(edge)); in appendEdges() 97 appendNumberIfNotZero(base, str, edges[edge]); in appendEdges() 106 const ABI47_0_0YGEdge edge) { in appendEdgeIfNotUndefined() argument 108 auto value = (edge == ABI47_0_0YGEdgeLeft || edge == ABI47_0_0YGEdgeRight) in appendEdgeIfNotUndefined() 110 edges, edge, edge, detail::CompactValue::ofUndefined()) in appendEdgeIfNotUndefined() 112 edges, edge, detail::CompactValue::ofUndefined()); in appendEdgeIfNotUndefined()
|
| H A D | ABI47_0_0Yoga.h | 206 ABI47_0_0YGEdge edge, 210 ABI47_0_0YGEdge edge, 214 WIN_EXPORT void ABI47_0_0YGNodeStyleSetMargin(ABI47_0_0YGNodeRef node, ABI47_0_0YGEdge edge, float … 217 ABI47_0_0YGEdge edge, 219 WIN_EXPORT void ABI47_0_0YGNodeStyleSetMarginAuto(ABI47_0_0YGNodeRef node, ABI47_0_0YGEdge edge); 224 ABI47_0_0YGEdge edge, 228 ABI47_0_0YGEdge edge, 233 WIN_EXPORT float ABI47_0_0YGNodeStyleGetBorder(ABI47_0_0YGNodeConstRef node, ABI47_0_0YGEdge edge); 293 WIN_EXPORT float ABI47_0_0YGNodeLayoutGetMargin(ABI47_0_0YGNodeRef node, ABI47_0_0YGEdge edge); 294 WIN_EXPORT float ABI47_0_0YGNodeLayoutGetBorder(ABI47_0_0YGNodeRef node, ABI47_0_0YGEdge edge); [all …]
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/yoga/yoga/ |
| H A D | ABI49_0_0YGNodePrint.cpp | 97 for (int edge = ABI49_0_0YGEdgeLeft; edge != ABI49_0_0YGEdgeAll; ++edge) { in appendEdges() local 98 string str = key + "-" + ABI49_0_0YGEdgeToString(static_cast<ABI49_0_0YGEdge>(edge)); in appendEdges() 99 appendNumberIfNotZero(base, str, edges[edge]); in appendEdges() 108 const ABI49_0_0YGEdge edge) { in appendEdgeIfNotUndefined() argument 110 auto value = (edge == ABI49_0_0YGEdgeLeft || edge == ABI49_0_0YGEdgeRight) in appendEdgeIfNotUndefined() 112 edges, edge, edge, detail::CompactValue::ofUndefined()) in appendEdgeIfNotUndefined() 114 edges, edge, detail::CompactValue::ofUndefined()); in appendEdgeIfNotUndefined()
|
| H A D | ABI49_0_0Yoga.h | 205 ABI49_0_0YGEdge edge, 209 ABI49_0_0YGEdge edge, 213 WIN_EXPORT void ABI49_0_0YGNodeStyleSetMargin(ABI49_0_0YGNodeRef node, ABI49_0_0YGEdge edge, float … 216 ABI49_0_0YGEdge edge, 218 WIN_EXPORT void ABI49_0_0YGNodeStyleSetMarginAuto(ABI49_0_0YGNodeRef node, ABI49_0_0YGEdge edge); 223 ABI49_0_0YGEdge edge, 227 ABI49_0_0YGEdge edge, 232 WIN_EXPORT float ABI49_0_0YGNodeStyleGetBorder(ABI49_0_0YGNodeConstRef node, ABI49_0_0YGEdge edge); 297 WIN_EXPORT float ABI49_0_0YGNodeLayoutGetMargin(ABI49_0_0YGNodeRef node, ABI49_0_0YGEdge edge); 298 WIN_EXPORT float ABI49_0_0YGNodeLayoutGetBorder(ABI49_0_0YGNodeRef node, ABI49_0_0YGEdge edge); [all …]
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/yoga/yoga/ |
| H A D | ABI48_0_0YGNodePrint.cpp | 95 for (int edge = ABI48_0_0YGEdgeLeft; edge != ABI48_0_0YGEdgeAll; ++edge) { in appendEdges() local 96 string str = key + "-" + ABI48_0_0YGEdgeToString(static_cast<ABI48_0_0YGEdge>(edge)); in appendEdges() 97 appendNumberIfNotZero(base, str, edges[edge]); in appendEdges() 106 const ABI48_0_0YGEdge edge) { in appendEdgeIfNotUndefined() argument 108 auto value = (edge == ABI48_0_0YGEdgeLeft || edge == ABI48_0_0YGEdgeRight) in appendEdgeIfNotUndefined() 110 edges, edge, edge, detail::CompactValue::ofUndefined()) in appendEdgeIfNotUndefined() 112 edges, edge, detail::CompactValue::ofUndefined()); in appendEdgeIfNotUndefined()
|
| H A D | ABI48_0_0Yoga.h | 206 ABI48_0_0YGEdge edge, 210 ABI48_0_0YGEdge edge, 214 WIN_EXPORT void ABI48_0_0YGNodeStyleSetMargin(ABI48_0_0YGNodeRef node, ABI48_0_0YGEdge edge, float … 217 ABI48_0_0YGEdge edge, 219 WIN_EXPORT void ABI48_0_0YGNodeStyleSetMarginAuto(ABI48_0_0YGNodeRef node, ABI48_0_0YGEdge edge); 224 ABI48_0_0YGEdge edge, 228 ABI48_0_0YGEdge edge, 233 WIN_EXPORT float ABI48_0_0YGNodeStyleGetBorder(ABI48_0_0YGNodeConstRef node, ABI48_0_0YGEdge edge); 299 WIN_EXPORT float ABI48_0_0YGNodeLayoutGetMargin(ABI48_0_0YGNodeRef node, ABI48_0_0YGEdge edge); 300 WIN_EXPORT float ABI48_0_0YGNodeLayoutGetBorder(ABI48_0_0YGNodeRef node, ABI48_0_0YGEdge edge); [all …]
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/test_utils/ |
| H A D | ABI47_0_0shadowTreeGeneration.h | 42 std::function<void(ShadowTreeEdge const &edge, bool &stop)> const in traverseShadowTree() argument 68 [&](ShadowTreeEdge const &edge, bool &stop) { counter++; }); in countShadowNodes() 79 traverseShadowTree(rootNode, [&](ShadowTreeEdge const &edge, bool &stop) { in findShadowNodeWithIndex() 81 result = edge; in findShadowNodeWithIndex() 258 auto edge = findRandomShadowNode(entropy, rootShadowNode); in alterShadowTree() local 262 edge.shadowNode->getFamily(), [&](ShadowNode const &oldShadowNode) { in alterShadowTree()
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/test_utils/ |
| H A D | ABI49_0_0shadowTreeGeneration.h | 43 std::function<void(ShadowTreeEdge const &edge, bool &stop)> const in traverseShadowTree() argument 69 [&](ShadowTreeEdge const &edge, bool &stop) { counter++; }); in countShadowNodes() 80 traverseShadowTree(rootNode, [&](ShadowTreeEdge const &edge, bool &stop) { in findShadowNodeWithIndex() 82 result = edge; in findShadowNodeWithIndex() 264 auto edge = findRandomShadowNode(entropy, rootShadowNode); in alterShadowTree() local 268 edge.shadowNode->getFamily(), [&](ShadowNode const &oldShadowNode) { in alterShadowTree()
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/test_utils/ |
| H A D | ABI48_0_0shadowTreeGeneration.h | 43 std::function<void(ShadowTreeEdge const &edge, bool &stop)> const in traverseShadowTree() argument 69 [&](ShadowTreeEdge const &edge, bool &stop) { counter++; }); in countShadowNodes() 80 traverseShadowTree(rootNode, [&](ShadowTreeEdge const &edge, bool &stop) { in findShadowNodeWithIndex() 82 result = edge; in findShadowNodeWithIndex() 264 auto edge = findRandomShadowNode(entropy, rootShadowNode); in alterShadowTree() local 268 edge.shadowNode->getFamily(), [&](ShadowNode const &oldShadowNode) { in alterShadowTree()
|
| /expo/ios/vendored/sdk47/react-native-safe-area-context/ios/ |
| H A D | ABI47_0_0RNCSafeAreaShadowView.m | 162 #define SHADOW_VIEW_MARGIN_PADDING_PROP(edge, metaProp) \ category 163 -(void)setPadding##edge : (ABI47_0_0YGValue)value \ 165 [super setPadding##edge:value]; \ 169 -(void)setMargin##edge : (ABI47_0_0YGValue)value \ 171 [super setMargin##edge:value]; \
|
| /expo/ios/vendored/sdk48/react-native-safe-area-context/ios/ |
| H A D | ABI48_0_0RNCSafeAreaShadowView.m | 162 #define SHADOW_VIEW_MARGIN_PADDING_PROP(edge, metaProp) \ category 163 -(void)setPadding##edge : (ABI48_0_0YGValue)value \ 165 [super setPadding##edge:value]; \ 169 -(void)setMargin##edge : (ABI48_0_0YGValue)value \ 171 [super setMargin##edge:value]; \
|
| /expo/ios/vendored/sdk49/react-native-safe-area-context/ios/ |
| H A D | ABI49_0_0RNCSafeAreaShadowView.m | 172 #define SHADOW_VIEW_MARGIN_PADDING_PROP(edge, metaProp) \ category 173 -(void)setPadding##edge : (ABI49_0_0YGValue)value \ 175 [super setPadding##edge:value]; \ 179 -(void)setMargin##edge : (ABI49_0_0YGValue)value \ 181 [super setMargin##edge:value]; \
|
| /expo/ios/vendored/unversioned/react-native-safe-area-context/ios/ |
| H A D | RNCSafeAreaShadowView.m | 172 #define SHADOW_VIEW_MARGIN_PADDING_PROP(edge, metaProp) \ category 173 -(void)setPadding##edge : (YGValue)value \ 175 [super setPadding##edge:value]; \ 179 -(void)setMargin##edge : (YGValue)value \ 181 [super setMargin##edge:value]; \
|
| /expo/packages/expo-dev-menu/vendored/react-native-safe-area-context/src/ |
| H A D | SafeAreaView.tsx | 32 ? edges.reduce((accum, edge) => accum | edgeBitmaskMap[edge], 0)
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Views/ |
| H A D | ABI47_0_0RCTShadowView.m | 515 #define ABI47_0_0RCT_POSITION_PROPERTY(setProp, getProp, edge) \ 518 ABI47_0_0RCT_SET_ABI47_0_0YGVALUE(value, ABI47_0_0YGNodeStyleSetPosition, _yogaNode, edge); \ 522 return ABI47_0_0YGNodeStyleGetPosition(_yogaNode, edge); \ 532 …ABI47_0_0YGEdge edge = [[ABI47_0_0RCTI18nUtil sharedInstance] doLeftAndRightSwapInRTL] ? ABI47_0_0… 533 ABI47_0_0RCT_SET_ABI47_0_0YGVALUE(value, ABI47_0_0YGNodeStyleSetPosition, _yogaNode, edge); 537 …ABI47_0_0YGEdge edge = [[ABI47_0_0RCTI18nUtil sharedInstance] doLeftAndRightSwapInRTL] ? ABI47_0_0… 538 return ABI47_0_0YGNodeStyleGetPosition(_yogaNode, edge); 543 …ABI47_0_0YGEdge edge = [[ABI47_0_0RCTI18nUtil sharedInstance] doLeftAndRightSwapInRTL] ? ABI47_0_0… 544 ABI47_0_0RCT_SET_ABI47_0_0YGVALUE(value, ABI47_0_0YGNodeStyleSetPosition, _yogaNode, edge); 548 …ABI47_0_0YGEdge edge = [[ABI47_0_0RCTI18nUtil sharedInstance] doLeftAndRightSwapInRTL] ? ABI47_0_0… [all …]
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Views/ |
| H A D | ABI48_0_0RCTShadowView.m | 515 #define ABI48_0_0RCT_POSITION_PROPERTY(setProp, getProp, edge) \ 518 ABI48_0_0RCT_SET_ABI48_0_0YGVALUE(value, ABI48_0_0YGNodeStyleSetPosition, _yogaNode, edge); \ 522 return ABI48_0_0YGNodeStyleGetPosition(_yogaNode, edge); \ 532 …ABI48_0_0YGEdge edge = [[ABI48_0_0RCTI18nUtil sharedInstance] doLeftAndRightSwapInRTL] ? ABI48_0_0… 533 ABI48_0_0RCT_SET_ABI48_0_0YGVALUE(value, ABI48_0_0YGNodeStyleSetPosition, _yogaNode, edge); 537 …ABI48_0_0YGEdge edge = [[ABI48_0_0RCTI18nUtil sharedInstance] doLeftAndRightSwapInRTL] ? ABI48_0_0… 538 return ABI48_0_0YGNodeStyleGetPosition(_yogaNode, edge); 543 …ABI48_0_0YGEdge edge = [[ABI48_0_0RCTI18nUtil sharedInstance] doLeftAndRightSwapInRTL] ? ABI48_0_0… 544 ABI48_0_0RCT_SET_ABI48_0_0YGVALUE(value, ABI48_0_0YGNodeStyleSetPosition, _yogaNode, edge); 548 …ABI48_0_0YGEdge edge = [[ABI48_0_0RCTI18nUtil sharedInstance] doLeftAndRightSwapInRTL] ? ABI48_0_0… [all …]
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Views/ |
| H A D | ABI49_0_0RCTShadowView.m | 515 #define ABI49_0_0RCT_POSITION_PROPERTY(setProp, getProp, edge) \ 518 ABI49_0_0RCT_SET_ABI49_0_0YGVALUE(value, ABI49_0_0YGNodeStyleSetPosition, _yogaNode, edge); \ 522 return ABI49_0_0YGNodeStyleGetPosition(_yogaNode, edge); \ 532 …ABI49_0_0YGEdge edge = [[ABI49_0_0RCTI18nUtil sharedInstance] doLeftAndRightSwapInRTL] ? ABI49_0_0… 533 ABI49_0_0RCT_SET_ABI49_0_0YGVALUE(value, ABI49_0_0YGNodeStyleSetPosition, _yogaNode, edge); 537 …ABI49_0_0YGEdge edge = [[ABI49_0_0RCTI18nUtil sharedInstance] doLeftAndRightSwapInRTL] ? ABI49_0_0… 538 return ABI49_0_0YGNodeStyleGetPosition(_yogaNode, edge); 543 …ABI49_0_0YGEdge edge = [[ABI49_0_0RCTI18nUtil sharedInstance] doLeftAndRightSwapInRTL] ? ABI49_0_0… 544 ABI49_0_0RCT_SET_ABI49_0_0YGVALUE(value, ABI49_0_0YGNodeStyleSetPosition, _yogaNode, edge); 548 …ABI49_0_0YGEdge edge = [[ABI49_0_0RCTI18nUtil sharedInstance] doLeftAndRightSwapInRTL] ? ABI49_0_0… [all …]
|
| /expo/packages/expo-maps/build/ |
| H A D | Polygon.js.map | 1 …edge line (optional).\n *\n * Accepted formats:\n * * `'#RRGGBB'`\n * * `'#RRGGBBAA'`\n …
|
| H A D | Circle.js.map | 1 …edge line (optional).\n * \n * Accepted formats:\n * * `'#RRGGBB'`\n * * `'#RRGGBBAA'`\n …
|