Home
last modified time | relevance | path

Searched refs:depth (Results 1 – 25 of 127) sorted by relevance

123456

/expo/tools/src/
H A DMarkdown.ts20 depth: number;
25 depth: number;
33 depth: number;
94 depth,
113 depth,
121 depth,
159 return str.replace(/\n/g, '\n' + indent.repeat(depth));
168 token.depth = listDepth;
172 item.depth = listDepth;
223 indent(depth?: number, indentStr: string = ' '): string {
[all …]
H A DChangelogs.ts195 if (token.depth === VERSION_HEADING_DEPTH) {
219 } else if (currentVersion && token.depth === CHANGE_TYPE_HEADING_DEPTH) {
301 if (Markdown.isHeadingToken(item) && item.depth <= changeTypeToken.depth) {
588 token.depth === VERSION_HEADING_DEPTH &&
602 token.depth === CHANGE_TYPE_HEADING_DEPTH &&
611 if (Markdown.isListItemToken(token) && token.depth === GROUP_LIST_ITEM_DEPTH) {
H A DGit.ts63 depth?: number;
185 if (options.depth) {
186 args.push('--depth', options.depth.toString());
455 await git.fetchAsync({ depth: 1, remote: 'origin', ref });
/expo/ios/vendored/sdk49/react-native-reanimated/Common/cpp/ReanimatedRuntime/
H A DReanimatedHermesRuntime.h44 ReanimatedReentrancyCheck() : tid(std::thread::id()), depth(0) {} in ReanimatedReentrancyCheck()
70 assert(depth == 0 && "No thread id, but depth != 0"); in before()
71 ++depth; in before()
76 assert(depth != 0 && "Thread id was set, but depth == 0"); in before()
77 ++depth; in before()
91 if (--depth == 0) { in after()
103 unsigned int depth; member
/expo/android/vendored/unversioned/react-native-reanimated/Common/cpp/ReanimatedRuntime/
H A DReanimatedHermesRuntime.h44 ReanimatedReentrancyCheck() : tid(std::thread::id()), depth(0) {} in ReanimatedReentrancyCheck()
70 assert(depth == 0 && "No thread id, but depth != 0"); in before()
71 ++depth; in before()
76 assert(depth != 0 && "Thread id was set, but depth == 0"); in before()
77 ++depth; in before()
91 if (--depth == 0) { in after()
103 unsigned int depth; member
/expo/ios/vendored/unversioned/react-native-reanimated/Common/cpp/ReanimatedRuntime/
H A DReanimatedHermesRuntime.h44 ReanimatedReentrancyCheck() : tid(std::thread::id()), depth(0) {} in ReanimatedReentrancyCheck()
70 assert(depth == 0 && "No thread id, but depth != 0"); in before()
71 ++depth; in before()
76 assert(depth != 0 && "Thread id was set, but depth == 0"); in before()
77 ++depth; in before()
91 if (--depth == 0) { in after()
103 unsigned int depth; member
/expo/android/vendored/sdk49/react-native-reanimated/Common/cpp/ReanimatedRuntime/
H A DReanimatedHermesRuntime.h44 ReanimatedReentrancyCheck() : tid(std::thread::id()), depth(0) {} in ReanimatedReentrancyCheck()
70 assert(depth == 0 && "No thread id, but depth != 0"); in before()
71 ++depth; in before()
76 assert(depth != 0 && "Thread id was set, but depth == 0"); in before()
77 ++depth; in before()
91 if (--depth == 0) { in after()
103 unsigned int depth; member
/expo/apps/test-suite/components/
H A DSuiteResult.js6 export default function SuiteResult({ r, depth }) {
27 () => (r) => <SuiteResult key={r.get('result').get('id')} r={r} depth={depth + 1} />, field
28 [depth]
36 const titleStyle = depth === 0 ? styles.titleParent : styles.titleChild;
37 const containerStyle = depth === 0 ? styles.containerParent : styles.containerChild;
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/hermes/executor/
H A DABI49_0_0HermesExecutorFactory.cpp64 ReentrancyCheck() : tid(std::thread::id()), depth(0) {} in ReentrancyCheck()
90 assert(depth == 0 && "No thread id, but depth != 0"); in before()
91 ++depth; in before()
96 assert(depth != 0 && "Thread id was set, but depth == 0"); in before()
97 ++depth; in before()
111 if (--depth == 0) { in after()
123 unsigned int depth; member
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/hermes/executor/
H A DABI48_0_0HermesExecutorFactory.cpp76 ReentrancyCheck() : tid(std::thread::id()), depth(0) {} in ReentrancyCheck()
102 assert(depth == 0 && "No thread id, but depth != 0"); in before()
103 ++depth; in before()
108 assert(depth != 0 && "Thread id was set, but depth == 0"); in before()
109 ++depth; in before()
123 if (--depth == 0) { in after()
135 unsigned int depth; member
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/hermes/executor/
H A DABI47_0_0HermesExecutorFactory.cpp84 ReentrancyCheck() : tid(std::thread::id()), depth(0) {} in ReentrancyCheck()
110 assert(depth == 0 && "No thread id, but depth != 0"); in before()
111 ++depth; in before()
116 assert(depth != 0 && "Thread id was set, but depth == 0"); in before()
117 ++depth; in before()
131 if (--depth == 0) { in after()
143 unsigned int depth; member
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/debug/
H A DABI47_0_0DebugStringConvertible.cpp20 if (options.depth >= options.maximumDepth) { in getDebugChildrenDescription()
24 options.depth++; in getDebugChildrenDescription()
47 if (options.depth >= options.maximumDepth) { in getDebugPropsDescription()
51 options.depth++; in getDebugPropsDescription()
98 options.format ? std::string(options.depth * 2, ' ') : std::string{""}; in getDebugDescription()
H A DABI47_0_0DebugStringConvertible.h32 int depth{0};
161 if (options.depth >= options.maximumDepth) { in getDebugPropsDescription()
167 options.depth++; in getDebugPropsDescription()
191 if (options.depth >= options.maximumDepth) { in getDebugChildrenDescription()
197 options.depth++; in getDebugChildrenDescription()
234 options.format ? std::string(options.depth * 2, ' ') : std::string{""}; in getDebugDescription()
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/debug/
H A DABI49_0_0DebugStringConvertible.cpp19 if (options.depth >= options.maximumDepth) { in getDebugChildrenDescription()
23 options.depth++; in getDebugChildrenDescription()
46 if (options.depth >= options.maximumDepth) { in getDebugPropsDescription()
50 options.depth++; in getDebugPropsDescription()
97 options.format ? std::string(options.depth * 2, ' ') : std::string{""}; in getDebugDescription()
H A DABI49_0_0DebugStringConvertible.h33 int depth{0};
170 if (options.depth >= options.maximumDepth) { in getDebugPropsDescription()
176 options.depth++; in getDebugPropsDescription()
200 if (options.depth >= options.maximumDepth) { in getDebugChildrenDescription()
206 options.depth++; in getDebugChildrenDescription()
243 options.format ? std::string(options.depth * 2, ' ') : std::string{""}; in getDebugDescription()
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/debug/
H A DABI48_0_0DebugStringConvertible.cpp19 if (options.depth >= options.maximumDepth) { in getDebugChildrenDescription()
23 options.depth++; in getDebugChildrenDescription()
46 if (options.depth >= options.maximumDepth) { in getDebugPropsDescription()
50 options.depth++; in getDebugPropsDescription()
97 options.format ? std::string(options.depth * 2, ' ') : std::string{""}; in getDebugDescription()
H A DABI48_0_0DebugStringConvertible.h32 int depth{0};
161 if (options.depth >= options.maximumDepth) { in getDebugPropsDescription()
167 options.depth++; in getDebugPropsDescription()
191 if (options.depth >= options.maximumDepth) { in getDebugChildrenDescription()
197 options.depth++; in getDebugChildrenDescription()
234 options.format ? std::string(options.depth * 2, ' ') : std::string{""}; in getDebugDescription()
/expo/tools/src/packages-graph/
H A DPackagesGraph.ts38 return [...this.nodes.values()].filter((node) => node.depth === 0);
104 destination.depth = Math.max(origin.depth + 1, destination.depth);
/expo/docs/mdx-plugins/
H A Dremark-export-headings.js29 depth: node.depth, property
/expo/docs/common/
H A DheadingManager.test.ts22 const meta = { headings: [{ title: TITLE, depth: 1, type: 'text', _processed: true }] }; constant
31 const meta = { headings: [{ title: TITLE, depth: 1, type: 'text' }] }; constant
44 headings: [{ title: META_TITLE, depth: META_LEVEL, type: 'text' }], constant
/expo/ios/vendored/unversioned/react-native-reanimated/ios/LayoutReanimation/
H A DREAAnimationsManager.h22 NSNumber *_Nonnull depth);
64 depth:(NSNumber *)depth;
/expo/ios/vendored/sdk49/react-native-reanimated/ios/LayoutReanimation/
H A DABI49_0_0REAAnimationsManager.h22 NSNumber *_Nonnull depth);
64 depth:(NSNumber *)depth;
/expo/packages/@expo/cli/src/start/server/metro/
H A DwithMetroResolvers.ts155 const printRecursive = (tree: InverseDepResult, depth: number = 0) => {
176 let line = '\n' + pad(depth) + chalk.gray(' ') + filename;
190 tree.previous.length > 1 ? depth + 1 : depth
/expo/.github/workflows/
H A Dcreate-expo-app.yml29 fetch-depth: 100
31 …|| github.base_ref || 'main' }}:${{ github.event.before || github.base_ref || 'main' }} --depth 100
/expo/docs/types/
H A Dcommon.ts18 depth: number;

123456