Home
last modified time | relevance | path

Searched refs:node (Results 101 – 125 of 760) sorted by relevance

12345678910>>...31

/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/api/components/sharedelement/
H A DRNSharedElementTransitionItem.java59 void setNode(RNSharedElementNode node) { in setNode() argument
60 if (mNode == node) { in setNode()
61 if (node != null) mNodeManager.release(node); in setNode()
68 mNode = node; in setNode()
69 mNeedsStyle = node != null; in setNode()
71 mNeedsContent = (node != null); in setNode()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/components/sharedelement/
H A DRNSharedElementTransitionItem.java59 void setNode(RNSharedElementNode node) { in setNode() argument
60 if (mNode == node) { in setNode()
61 if (node != null) mNodeManager.release(node); in setNode()
68 mNode = node; in setNode()
69 mNeedsStyle = node != null; in setNode()
71 mNeedsContent = (node != null); in setNode()
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/codegen/
H A Dgenerate-artifacts-executor.js37 function executeNodeScript(node, script) { argument
38 execSync(`${node} ${script}`);
305 function generateSchema(tmpDir, library, node, codegenCliPath) { argument
315 node,
338 node,
357 node, argument
374 generateCode(iosOutputDir, library, tmpDir, node, pathToSchema);
388 node, argument
403 node,
503 node, argument
[all …]
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/scripts/codegen/
H A Dgenerate-artifacts-executor.js48 function executeNodeScript(node, script) { argument
49 execSync(`${node} ${script}`);
320 function generateSchema(tmpDir, library, node, codegenCliPath) { argument
330 node,
353 node,
378 node, argument
395 generateCode(iosOutputDir, library, tmpDir, node, pathToSchema);
409 node, argument
430 node,
530 node, argument
[all …]
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/codegen/
H A Dgenerate-artifacts-executor.js37 function executeNodeScript(node, script) { argument
38 execSync(`${node} ${script}`);
305 function generateSchema(tmpDir, library, node, codegenCliPath) { argument
315 node,
338 node,
357 node, argument
374 generateCode(iosOutputDir, library, tmpDir, node, pathToSchema);
388 node, argument
403 node,
503 node, argument
[all …]
/expo/android/vendored/sdk47/react-native-reanimated/android/src/main/java/abi47_0_0/com/swmansion/reanimated/nodes/
H A DStyleNode.java24 Node node = mNodesManager.findNodeById(entry.getValue(), Node.class); in evaluate() local
25 if (node instanceof TransformNode) { in evaluate()
26 propMap.putArray(entry.getKey(), (WritableArray) node.value()); in evaluate()
28 Object val = node.value(); in evaluate()
/expo/android/vendored/sdk48/react-native-reanimated/android/src/main/java/abi48_0_0/com/swmansion/reanimated/nodes/
H A DStyleNode.java24 Node node = mNodesManager.findNodeById(entry.getValue(), Node.class); in evaluate() local
25 if (node instanceof TransformNode) { in evaluate()
26 propMap.putArray(entry.getKey(), (WritableArray) node.value()); in evaluate()
28 Object val = node.value(); in evaluate()
/expo/packages/expo-router/src/
H A DRoute.tsx50 const node = useRouteNode();
51 if (node == null) {
54 return getContextKey(node.contextKey);
58 export function Route({ children, node }: { children: ReactNode; node: RouteNode }) {
59 return <CurrentRouteContext.Provider value={node}>{children}</CurrentRouteContext.Provider>;
H A DgetServerManifest.ts58 apiRoutes.map(([normalizedRoutePath, node]) => [normalizedRoutePath, node])
61 standardRoutes.map(([normalizedRoutePath, node]) => [normalizedRoutePath, node])
64 notFoundRoutes.map(([normalizedRoutePath, node]) => [normalizedRoutePath, node])
/expo/templates/expo-template-tv/android/
H A Dsettings.gradle3 apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, root…
6 apply from: new File(["node", "--print", "require.resolve('@react-native-community/cli-platform-and…
10 includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.jso…
/expo/apps/fabric-tester/android/
H A Dsettings.gradle3 apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, root…
6 apply from: new File(["node", "--print", "require.resolve('@react-native-community/cli-platform-and…
10 includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.jso…
/expo/tools/src/publish-packages/tasks/
H A DloadRequestedParcels.ts83 export async function getCachedParcel(node: PackagesGraphNode): Promise<Parcel> {
84 const cachedPromise = parcelsCache.get(node);
89 const newParcel = await createParcelAsync(node);
90 parcelsCache.set(node, newParcel);
106 const parcels = await Promise.all(nodes.map((node) => getCachedParcel(node)));
/expo/android/vendored/sdk47/react-native-svg/android/src/main/java/abi47_0_0/com/horcrux/svg/
H A DTextLayoutAlgorithm.java50 View node, in getSubTreeTypographicCharacterPositions() argument
52 if (node instanceof TSpanView) { in getSubTreeTypographicCharacterPositions()
53 final TSpanView tSpanView = (TSpanView) node; in getSubTreeTypographicCharacterPositions()
68 textPath = node instanceof TextPathView ? (TextPathView) node : textPath; in getSubTreeTypographicCharacterPositions()
280 if (node.getClass() == TextView.class || node.getClass() == TSpanView.class) { in layoutText()
349 String content = ((TSpanView) node).mContent; in layoutText()
467 } else if (node.getClass() == TextPathView.class) { in layoutText()
494 if (node instanceof TextPathView) { in layoutText()
570 private void resolveTextLength(TextView node) { in layoutText()
591 String content = ((TSpanView) node).mContent; in layoutText()
[all …]
/expo/android/vendored/sdk48/react-native-svg/android/src/main/java/abi48_0_0/com/horcrux/svg/
H A DTextLayoutAlgorithm.java50 View node, in getSubTreeTypographicCharacterPositions() argument
52 if (node instanceof TSpanView) { in getSubTreeTypographicCharacterPositions()
53 final TSpanView tSpanView = (TSpanView) node; in getSubTreeTypographicCharacterPositions()
68 textPath = node instanceof TextPathView ? (TextPathView) node : textPath; in getSubTreeTypographicCharacterPositions()
280 if (node.getClass() == TextView.class || node.getClass() == TSpanView.class) { in layoutText()
349 String content = ((TSpanView) node).mContent; in layoutText()
467 } else if (node.getClass() == TextPathView.class) { in layoutText()
494 if (node instanceof TextPathView) { in layoutText()
570 private void resolveTextLength(TextView node) { in layoutText()
591 String content = ((TSpanView) node).mContent; in layoutText()
[all …]
/expo/android/vendored/unversioned/react-native-svg/android/src/main/java/com/horcrux/svg/
H A DTextLayoutAlgorithm.java50 View node, in getSubTreeTypographicCharacterPositions() argument
52 if (node instanceof TSpanView) { in getSubTreeTypographicCharacterPositions()
53 final TSpanView tSpanView = (TSpanView) node; in getSubTreeTypographicCharacterPositions()
68 textPath = node instanceof TextPathView ? (TextPathView) node : textPath; in getSubTreeTypographicCharacterPositions()
280 if (node.getClass() == TextView.class || node.getClass() == TSpanView.class) { in layoutText()
349 String content = ((TSpanView) node).mContent; in layoutText()
467 } else if (node.getClass() == TextPathView.class) { in layoutText()
494 if (node instanceof TextPathView) { in layoutText()
570 private void resolveTextLength(TextView node) { in layoutText()
591 String content = ((TSpanView) node).mContent; in layoutText()
[all …]
/expo/android/vendored/sdk49/react-native-svg/android/src/main/java/abi49_0_0/com/horcrux/svg/
H A DTextLayoutAlgorithm.java50 View node, in getSubTreeTypographicCharacterPositions() argument
52 if (node instanceof TSpanView) { in getSubTreeTypographicCharacterPositions()
53 final TSpanView tSpanView = (TSpanView) node; in getSubTreeTypographicCharacterPositions()
68 textPath = node instanceof TextPathView ? (TextPathView) node : textPath; in getSubTreeTypographicCharacterPositions()
280 if (node.getClass() == TextView.class || node.getClass() == TSpanView.class) { in layoutText()
349 String content = ((TSpanView) node).mContent; in layoutText()
467 } else if (node.getClass() == TextPathView.class) { in layoutText()
494 if (node instanceof TextPathView) { in layoutText()
570 private void resolveTextLength(TextView node) { in layoutText()
591 String content = ((TSpanView) node).mContent; in layoutText()
[all …]
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/yoga/yoga/event/
H A DABI48_0_0event.h91 static void publish(const ABI48_0_0YGNode& node, const TypedData<E>& eventData = {}) {
93 publish(node, E, Data{eventData});
95 (void) node;
101 static void publish(const ABI48_0_0YGNode* node, const TypedData<E>& eventData = {}) {
102 publish<E>(*node, eventData);
/expo/templates/expo-template-bare-minimum/android/
H A Dsettings.gradle3 apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, root…
6 apply from: new File(["node", "--print", "require.resolve('@react-native-community/cli-platform-and…
10 includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.jso…
/expo/packages/expo-router/build/
H A DgetServerManifest.js32 …hableManifestForPaths(apiRoutes.map(([normalizedRoutePath, node]) => [normalizedRoutePath, node])),
33 …ManifestForPaths(standardRoutes.map(([normalizedRoutePath, node]) => [normalizedRoutePath, node])),
34 …ManifestForPaths(notFoundRoutes.map(([normalizedRoutePath, node]) => [normalizedRoutePath, node])),
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/yoga/yoga/
H A DABI48_0_0YGNode.cpp18 context_ = node.context_; in ABI48_0_0YGNode()
19 flags = node.flags; in ABI48_0_0YGNode()
20 measure_ = node.measure_; in ABI48_0_0YGNode()
21 baseline_ = node.baseline_; in ABI48_0_0YGNode()
22 print_ = node.print_; in ABI48_0_0YGNode()
23 dirtied_ = node.dirtied_; in ABI48_0_0YGNode()
24 style_ = node.style_; in ABI48_0_0YGNode()
25 layout_ = node.layout_; in ABI48_0_0YGNode()
26 lineIndex_ = node.lineIndex_; in ABI48_0_0YGNode()
27 owner_ = node.owner_; in ABI48_0_0YGNode()
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/yoga/yoga/
H A DABI47_0_0YGNode.cpp18 context_ = node.context_; in ABI47_0_0YGNode()
19 flags = node.flags; in ABI47_0_0YGNode()
20 measure_ = node.measure_; in ABI47_0_0YGNode()
21 baseline_ = node.baseline_; in ABI47_0_0YGNode()
22 print_ = node.print_; in ABI47_0_0YGNode()
23 dirtied_ = node.dirtied_; in ABI47_0_0YGNode()
24 style_ = node.style_; in ABI47_0_0YGNode()
25 layout_ = node.layout_; in ABI47_0_0YGNode()
26 lineIndex_ = node.lineIndex_; in ABI47_0_0YGNode()
27 owner_ = node.owner_; in ABI47_0_0YGNode()
[all …]
/expo/ios/versioned-react-native/ABI48_0_0/Expo/ExpoKit/Core/Api/Components/SharedElement/
H A DABI48_0_0RNSharedElementTransitionItem.m35 - (void) setNode:(ABI48_0_0RNSharedElementNode *)node
37 if (_node == node) {
38 if (node != nil) [_nodeManager release:node];
45 _node = node;
46 _needsLayout = node != nil;
47 _needsContent = !_isAncestor && (node != nil);
/expo/ios/versioned-react-native/ABI47_0_0/Expo/ExpoKit/Core/Api/Components/SharedElement/
H A DABI47_0_0RNSharedElementTransitionItem.m35 - (void) setNode:(ABI47_0_0RNSharedElementNode *)node
37 if (_node == node) {
38 if (node != nil) [_nodeManager release:node];
45 _node = node;
46 _needsLayout = node != nil;
47 _needsContent = !_isAncestor && (node != nil);
/expo/ios/vendored/sdk47/react-native-svg/apple/Text/
H A DABI47_0_0RNSVGText.mm258 NSString *baseline = node.alignmentBaseline;
283 NSString *baselineShift = node.baselineShift;
328 ABI47_0_0RNSVGText *node = self;
333 node.positionX != nil) {
334 return node;
336 node = (ABI47_0_0RNSVGText *)parent;
337 parent = [node superview];
339 return node;
348 for (ABI47_0_0RNSVGView *node in self.subviews) {
349 if ([node isKindOfClass:[ABI47_0_0RNSVGText class]]) {
[all …]
/expo/ios/vendored/sdk49/react-native-svg/apple/Text/
H A DABI49_0_0RNSVGText.mm258 NSString *baseline = node.alignmentBaseline;
283 NSString *baselineShift = node.baselineShift;
328 ABI49_0_0RNSVGText *node = self;
333 node.positionX != nil) {
334 return node;
336 node = (ABI49_0_0RNSVGText *)parent;
337 parent = [node superview];
339 return node;
348 for (ABI49_0_0RNSVGView *node in self.subviews) {
349 if ([node isKindOfClass:[ABI49_0_0RNSVGText class]]) {
[all …]

12345678910>>...31