/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | modernize-return-braced-init-list.rst | 1 .. title:: clang-tidy - modernize-return-braced-init-list 3 modernize-return-braced-init-list 6 Replaces explicit calls to the constructor in a return with a braced
|
D | modernize-use-auto.rst | 109 * The initializer for the variable being declared is not a braced initializer
|
/external/rust/cxx/gen/src/ |
D | file.rs | 5 use syn::{braced, Attribute, Ident, Item, Token, Visibility}; 58 braced!(content in input); in parse()
|
/external/rust/cxx/syntax/ |
D | file.rs | 5 braced, token, Abi, Attribute, ForeignItem, Ident, Item as RustItem, ItemEnum, ItemImpl, 56 let brace_token = braced!(content in input); in parse()
|
/external/rust/crates/thiserror-impl/src/ |
D | attr.rs | 6 braced, bracketed, parenthesized, token, Attribute, Error, Ident, Index, LitInt, LitStr, 157 let delimiter = braced!(content in input); in parse_token_expr()
|
/external/deqp/external/openglcts/ |
D | .clang-format | 22 # Allows contracting simple braced statements to a single line. 80 # If true, format braced lists as best suited for C++11 braced lists.
|
/external/rust/crates/syn-mid/src/ |
D | func.rs | 72 braced, parenthesized, 82 Ok(Self { brace_token: braced!(content in input), stmts: content.parse()? }) in parse()
|
D | pat.rs | 132 braced, 215 let brace_token = braced!(content in input); in pat_struct()
|
/external/rust/crates/syn/src/ |
D | group.rs | 215 macro_rules! braced { macro
|
D | item.rs | 1275 let brace_token = braced!(brace_content in input); in parse() 1381 brace_token: braced!(content in input), in parse() 1541 let brace_token = braced!(content in input); in parse_rest_of_fn() 1689 let brace_token = braced!(content in input); in parse() 1718 let brace_token = braced!(content in input); in parse() 1748 braced!(content in input); in parse() 2160 let brace_token = braced!(content in input); in parse_rest_of_trait() 2339 let brace_token = braced!(content in input); in parse() 2527 let brace_token = braced!(content in input); in parse_impl() 2684 let brace_token = braced!(content in input); in parse()
|
D | derive.rs | 210 let brace = braced!(content in input); in data_enum()
|
D | stmt.rs | 141 brace_token: braced!(content in input), in parse()
|
D | expr.rs | 2147 let brace_token = braced!(content in input); in parse() 2172 let brace_token = braced!(content in input); in parse() 2194 let brace_token = braced!(content in input); in parse() 2489 let brace_token = braced!(content in input); in parse() 2627 let brace_token = braced!(content in input); in expr_struct_helper() 2673 let brace_token = braced!(content in input); in parse() 2691 braced!(content in input); in expr_const() 2706 let brace_token = braced!(content in input); in parse()
|
D | data.rs | 281 brace_token: braced!(content in input), in parse()
|
D | pat.rs | 475 let brace_token = braced!(content in input); in pat_struct() 725 braced!(content in input); in pat_const()
|
D | attr.rs | 300 braced!(content in input); in enter_args()
|
D | path.rs | 306 braced!(content in input); in const_argument()
|
/external/clang/docs/ |
D | ClangFormatStyleOptions.rst | 236 Allows contracting simple braced statements to a single line. 440 If ``true``, format braced lists as best suited for C++11 braced 444 - No spaces inside the braced list. 448 Fundamentally, C++11 braced lists are formatted exactly like function 449 calls would be formatted in their place. If the braced list follows a name
|
/external/parameter-framework/upstream/ |
D | .clang-format | 36 # Disallows contracting simple braced statements to a single line
|
/external/llvm-project/llvm/test/TableGen/ |
D | defvar.td | 138 // general principle of consistency, because it defines a braced sub-block).
|
/external/python/cpython3/Doc/library/ |
D | string.rst | 807 non-braced placeholders. The default value is the regular expression 809 ``None`` this pattern will also apply to braced placeholders. 822 braced placeholders. Defaults to ``None`` which means to fall back to 824 If given, this allows you to define different patterns for braced and 849 * *braced* -- This group matches the brace enclosed placeholder name; it should
|
/external/llvm-project/llvm/docs/ |
D | CodingStandards.rst | 486 Starting from C++11, there are significantly more uses of braced lists to 492 The historically common formatting of braced initialization of aggregate 495 formatting braced initialization lists: act as-if the braces were parentheses 621 calling constructors using braced initializer lists. Do not use these to call 626 don't use a braced initializer list. Instead, use a braced initializer list 649 If you use a braced initializer list when initializing a variable, use an equals before the open cu… 1601 ``if``/``else`` chain does not use braced bodies for either all or none of its 1653 // Use braces for the outer `if` since the nested `for` is braced.
|
/external/llvm-project/flang/lib/Parser/ |
D | preprocessor.cpp | 595 TokenSequence braced{dir, j + 1, k - j - 1}; in Directive() local 596 include = ReplaceMacros(braced, *prescanner).ToString(); in Directive()
|
/external/llvm/docs/ |
D | CodingStandards.rst | 138 constructors, and MSVC 2013 has problems when braced initializer lists are 558 With C++11, there are significantly more uses of braced lists to perform 566 The historically common formatting of braced initialization of aggregate 569 formatting braced initialization lists: act as-if the braces were parentheses 737 constructors using braced initializer lists. Do not use these to call 742 don't use a braced initializer list. Instead, use a braced initializer list 765 If you use a braced initializer list when initializing a variable, use an equals before the open cu…
|
/external/llvm-project/clang/docs/ |
D | ClangFormatStyleOptions.rst | 342 If a function call or braced initializer list doesn't fit on a 1576 If ``true``, format braced lists as best suited for C++11 braced 1580 - No spaces inside the braced list. 1584 Fundamentally, C++11 braced lists are formatted exactly like function 1585 calls would be formatted in their place. If the braced list follows a name 2555 If ``true``, a space will be inserted before a C++11 braced list
|