Home
last modified time | relevance | path

Searched refs:stack (Results 1 – 25 of 331) sorted by relevance

12345678910>>...14

/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/CoreModules/
H A DABI49_0_0RCTExceptionsManager.mm40 stack:(NSArray<NSDictionary *> *)stack
51 stack:stack
58 stack:(NSArray<NSDictionary *> *)stack
69 stack:stack
91 [self reportSoft:message stack:stack exceptionId:exceptionId extraDataAsJSON:nil];
99 [self reportFatal:message stack:stack exceptionId:exceptionId extraDataAsJSON:nil];
120 [self reportFatalException:message stack:stack exceptionId:-1];
134 for (auto frame : data.stack()) {
161 stack:(nullable NSArray<NSDictionary *> *)stack
166 [self reportFatalException:message stack:stack exceptionId:exceptionId];
[all …]
H A DABI49_0_0RCTExceptionsManager.h16 stack:(nullable NSArray *)stack
20 stack:(nullable NSArray *)stack
26 stack:(nullable NSArray *)stack
36 stack:(nullable NSArray<NSDictionary *> *)stack
39 stack:(nullable NSArray<NSDictionary *> *)stack
42 stack:(nullable NSArray<NSDictionary *> *)stack
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/CoreModules/
H A DABI48_0_0RCTExceptionsManager.mm39 stack:(NSArray<NSDictionary *> *)stack
48 stack:stack
55 stack:(NSArray<NSDictionary *> *)stack
64 stack:stack
86 [self reportSoft:message stack:stack exceptionId:exceptionId extraDataAsJSON:nil];
94 [self reportFatal:message stack:stack exceptionId:exceptionId extraDataAsJSON:nil];
113 [self reportFatalException:message stack:stack exceptionId:-1];
127 for (auto frame : data.stack()) {
154 stack:(nullable NSArray<NSDictionary *> *)stack
159 [self reportFatalException:message stack:stack exceptionId:exceptionId];
[all …]
H A DABI48_0_0RCTExceptionsManager.h16 stack:(nullable NSArray *)stack
20 stack:(nullable NSArray *)stack
26 stack:(nullable NSArray *)stack
36 stack:(nullable NSArray<NSDictionary *> *)stack
39 stack:(nullable NSArray<NSDictionary *> *)stack
42 stack:(nullable NSArray<NSDictionary *> *)stack
/expo/packages/@expo/metro-runtime/src/error-overlay/Data/
H A DLogBoxLog.ts21 stack: Stack;
32 file: stack.fileName,
53 stack: Stack; property in LogBoxLog
59 stack: {
61 stack: null,
66 stack: null,
81 this.stack = data.stack;
162 return this.stack;
193 stack: null,
203 stack,
[all …]
H A DLogBoxSymbolication.tsx25 stack: maybeStack,
29 throw new Error('Expected stack to be an array.');
31 const stack: StackFrame[] = [];
36 throw new Error('Expected stack frame `collapse` to be a boolean.');
40 stack.push({
49 return { stack, codeFrame };
52 export function deleteStack(stack: Stack): void {
53 cache.delete(stack);
57 let promise = cache.get(stack);
59 promise = symbolicateStackTrace(stack).then(sanitize);
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/CoreModules/
H A DABI47_0_0RCTExceptionsManager.mm39 stack:(NSArray<NSDictionary *> *)stack
48 stack:stack
55 stack:(NSArray<NSDictionary *> *)stack
64 stack:stack
86 [self reportSoft:message stack:stack exceptionId:exceptionId extraDataAsJSON:nil];
94 [self reportFatal:message stack:stack exceptionId:exceptionId extraDataAsJSON:nil];
113 [self reportFatalException:message stack:stack exceptionId:-1];
127 for (auto frame : data.stack()) {
163 NSArray *stack = [dict objectForKey:@"stack"];
167 [self reportFatalException:message stack:stack exceptionId:exceptionId];
[all …]
H A DABI47_0_0RCTExceptionsManager.h16 stack:(nullable NSArray *)stack
20 stack:(nullable NSArray *)stack
26 stack:(nullable NSArray *)stack
36 stack:(nullable NSArray<NSDictionary *> *)stack
39 stack:(nullable NSArray<NSDictionary *> *)stack
/expo/packages/@expo/metro-runtime/build/error-overlay/Data/
H A DLogBoxSymbolication.js19 const sanitize = ({ stack: maybeStack, codeFrame, }) => { property
23 const stack = []; variable
32 stack.push({
41 return { stack, codeFrame };
43 function deleteStack(stack) { argument
44 cache.delete(stack);
47 function symbolicate(stack) { argument
48 let promise = cache.get(stack);
50 promise = (0, symbolicateStackTrace_1.default)(stack).then(sanitize);
51 cache.set(stack, promise);
H A DLogBoxLog.js37 file: stack.fileName,
38 methodName: stack.content,
49 stack; field in LogBoxLog
55 stack: {
57 stack: null,
62 stack: null,
71 this.stack = data.stack;
138 return this.stack;
158 stack: null,
168 stack, field
[all …]
/expo/packages/expo-dev-launcher/ios/Errors/
H A DEXDevLauncherRedBox.m47 stack:error.userInfo[RCTJSStackTraceKey]
63 stack:(NSArray<RCTJSStackFrame *> *)stack
86 [self showErrorMessage:message withStack:stack errorCookie:-1];
91 [self updateErrorMessage:message withStack:stack errorCookie:-1];
97 withParsedStack:[RCTJSStackFrame stackFramesWithDictionaries:stack]
112 [self showErrorMessage:message withParsedStack:stack errorCookie:-1];
117 [self updateErrorMessage:message withParsedStack:stack errorCookie:-1];
121 withParsedStack:(NSArray<RCTJSStackFrame *> *)stack
128 withParsedStack:(NSArray<RCTJSStackFrame *> *)stack
135 withParsedStack:(NSArray<RCTJSStackFrame *> *)stack
[all …]
H A DEXDevLauncherErrorRegistry.swift12 public let stack: String variable
14 init(timestamp: Int64, message: String, stack: String) {
17 self.stack = stack
25 "stack": stack in toDict()
61 guard let stack = savedException["stack"] as? String else { in consumeException() variable
65 return EXDevLauncherErrorInstance(timestamp: timestamp, message: message, stack: stack) in consumeException()
H A DEXDevLauncherAppError.swift6 let stack: [RCTJSStackFrame]? variable
9 public init(message: String, stack: [RCTJSStackFrame]? = nil) {
11 self.stack = stack
/expo/packages/@expo/cli/src/start/server/metro/
H A DmetroErrorInterface.ts44 stack,
48 stack: MetroStackFrame[];
117 if (stack?.length) {
140 Log.log(chalk.gray(` ${error.stack}`));
149 const stack = parseErrorStack(error.stack); constant
158 stack,
166 stack: log.symbolicated?.stack?.stack ?? [],
182 const stack = parseErrorStack(error.stack); constant
191 stack,
210 stack: log.symbolicated?.stack?.stack ?? [],
[all …]
/expo/packages/@expo/metro-runtime/src/error-overlay/modules/parseErrorStack/
H A Dindex.ts3 function parseErrorStack(stack?: string): (StackFrame & { collapse?: boolean })[] {
4 if (stack == null) {
7 if (Array.isArray(stack)) {
8 return stack;
17 return parse(stack).map((frame) => {
/expo/ios/versioned-react-native/ABI48_0_0/Expo/ExpoKit/Core/Internal/DevSupport/
H A DABI48_0_0EXDisabledRedBox.h12 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack;
13 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack;
14 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack showIfHidde…
15 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCookie…
16 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCook…
17 - (void)showErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack;
18 - (void)updateErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack;
20 withParsedStack:(NSArray<id> *)stack
23 withParsedStack:(NSArray<id> *)stack
H A DABI48_0_0EXDisabledRedBox.mm14 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack {}
15 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack {}
16 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack showIfHidde…
17 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCookie…
18 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCook…
19 - (void)showErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack {}
20 - (void)updateErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack {}
22 withParsedStack:(NSArray<id> *)stack
25 withParsedStack:(NSArray<id> *)stack
/expo/ios/versioned-react-native/ABI49_0_0/Expo/ExpoKit/Core/Internal/DevSupport/
H A DABI49_0_0EXDisabledRedBox.h12 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack;
13 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack;
14 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack showIfHidde…
15 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCookie…
16 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCook…
17 - (void)showErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack;
18 - (void)updateErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack;
20 withParsedStack:(NSArray<id> *)stack
23 withParsedStack:(NSArray<id> *)stack
H A DABI49_0_0EXDisabledRedBox.mm14 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack {}
15 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack {}
16 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack showIfHidde…
17 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCookie…
18 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCook…
19 - (void)showErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack {}
20 - (void)updateErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack {}
22 withParsedStack:(NSArray<id> *)stack
25 withParsedStack:(NSArray<id> *)stack
/expo/ios/Exponent/Versioned/Core/Internal/DevSupport/
H A DEXDisabledRedBox.h12 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack;
13 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack;
14 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack showIfHidde…
15 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCookie…
16 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCook…
17 - (void)showErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack;
18 - (void)updateErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack;
20 withParsedStack:(NSArray<id> *)stack
23 withParsedStack:(NSArray<id> *)stack
H A DEXDisabledRedBox.mm14 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack {}
15 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack {}
16 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack showIfHidde…
17 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCookie…
18 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCook…
19 - (void)showErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack {}
20 - (void)updateErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack {}
22 withParsedStack:(NSArray<id> *)stack
25 withParsedStack:(NSArray<id> *)stack
/expo/ios/versioned-react-native/ABI47_0_0/Expo/ExpoKit/Core/Internal/DevSupport/
H A DABI47_0_0EXDisabledRedBox.h12 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack;
13 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack;
14 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack showIfHidde…
15 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCookie…
16 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCook…
17 - (void)showErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack;
18 - (void)updateErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack;
20 withParsedStack:(NSArray<id> *)stack
23 withParsedStack:(NSArray<id> *)stack
H A DABI47_0_0EXDisabledRedBox.mm14 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack {}
15 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack {}
16 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack showIfHidde…
17 - (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCookie…
18 - (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCook…
19 - (void)showErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack {}
20 - (void)updateErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack {}
22 withParsedStack:(NSArray<id> *)stack
25 withParsedStack:(NSArray<id> *)stack
/expo/packages/@expo/metro-runtime/build/error-overlay/modules/parseErrorStack/
H A Dindex.js4 function parseErrorStack(stack) { argument
5 if (stack == null) {
8 if (Array.isArray(stack)) {
9 return stack;
16 return (0, stacktrace_parser_1.parse)(stack).map((frame) => {
/expo/apps/native-component-list/src/screens/Screens/
H A DnativeStack.tsx10 stack: string[];
18 stack: ['azure'],
23 const { stack } = this.state;
24 this.setState({ stack: [...stack, key], transitioning: 1 });
28 const { stack } = this.state;
29 this.setState({ transitioning: 0, stack: stack.slice(0, -1) });
33 const { stack } = this.state;
34 this.setState({ stack: stack.filter((v, idx) => idx !== index) });
38 const { stack } = this.state;
39 this.setState({ stack: stack.filter((v) => key !== v) });
[all …]

12345678910>>...14