Lines Matching +full:input +full:- +full:style
1 // SPDX-License-Identifier: Apache-2.0 OR MIT
3 // The contents of this file come from the Rust rustc-demangle library, hosted
4 // in the <https://github.com/rust-lang/rustc-demangle> repository, licensed
5 // under "Apache-2.0 OR MIT". For copyright details, see
6 // <https://github.com/rust-lang/rustc-demangle/blob/main/README.md>.
35 // Not using a union here to make the struct easier to copy-paste if needed.
37 enum demangle_style style; member
54 // if the length of the output buffer is less than `output_len-OVERFLOW_MARGIN`,
68 /// This function is `O(n)` in the length of the input + *output* [$], but the demangled output of …
69 /// be exponentially[$$] large, therefore it is recommended to have a sane bound (`rust-demangle`
79 …eturns true if `res` refers to a known valid Rust demangling style, false if it's an unknown style.