Home
last modified time | relevance | path

Searched refs:brace (Results 1 – 25 of 172) sorted by relevance

1234567

/external/markdown/MarkdownTest/Tests_2004/
DBackslash escapes.text11 Left brace: \{
13 Right brace: \}
47 Left brace: \{
49 Right brace: \}
82 Left brace: `\{`
84 Right brace: `\}`
/external/markdown/tests/markdown-test/
Dbacklash-escapes.txt11 Left brace: \{
13 Right brace: \}
47 Left brace: \{
49 Right brace: \}
82 Left brace: `\{`
84 Right brace: `\}`
/external/markdown/MarkdownTest/Tests_2007/
DBackslash escapes.text11 Left brace: \{
13 Right brace: \}
47 Left brace: \{
49 Right brace: \}
82 Left brace: `\{`
84 Right brace: `\}`
/external/llvm-project/polly/lib/External/isl/doc/
DCodingStyle18 - opening brace of a function is placed on a new line
19 - opening brace of other blocks stays on the same line
21 - an else appears on the same line as the closing brace of
22 the then branch, if there is such a closing brace
/external/rust/crates/thiserror-impl/src/
Dfmt.rs31 while let Some(brace) = read.find('{') { in expand_shorthand()
32 out += &read[..brace + 1]; in expand_shorthand()
33 read = &read[brace + 1..]; in expand_shorthand()
/external/rust/crates/syn/src/
Dderive.rs125 let (where_clause, brace, variants) = data_enum(input)?; in parse()
136 brace_token: brace, in parse()
210 let brace = braced!(content in input); in data_enum() localVariable
213 Ok((where_clause, brace, variants)) in data_enum()
Dmac.rs210 MacroDelimiter::Brace(brace) => { in to_tokens()
211 brace.surround(tokens, |tokens| self.tokens.to_tokens(tokens)); in to_tokens()
/external/bc/src/
Dbc_parse.c523 static void bc_parse_endBody(BcParse *p, bool brace) { in bc_parse_endBody() argument
529 if (brace) { in bc_parse_endBody()
544 if (has_brace && !brace) bc_parse_err(p, BC_ERR_PARSE_TOKEN); in bc_parse_endBody()
584 else if (!has_brace && (!BC_PARSE_IF_END(p) || brace)) in bc_parse_endBody()
590 if (brace && has_brace) brace = false; in bc_parse_endBody()
592 } while (p->flags.len > 1 && !new_else && (!BC_PARSE_IF_END(p) || brace) && in bc_parse_endBody()
595 if (BC_ERR(p->flags.len == 1 && brace)) in bc_parse_endBody()
597 else if (brace && BC_PARSE_BRACE(p)) { in bc_parse_endBody()
909 static void bc_parse_body(BcParse *p, bool brace) { in bc_parse_body() argument
920 if (BC_ERR(!brace)) bc_parse_err(p, BC_ERR_PARSE_TOKEN); in bc_parse_body()
[all …]
/external/e2fsprogs/lib/support/
Dprof_err.et31 error_code PROF_EXTRA_CBRACE, "Extra closing brace in profile"
32 error_code PROF_MISSING_OBRACE, "Missing open brace in profile"
/external/python/cpython3/Lib/
Dntpath.py349 brace = b'{'
360 brace = '{'
404 elif path[index + 1:index + 2] == brace:
410 res += dollar + brace + path
420 value = dollar + brace + var + rbrace
/external/curl/docs/
DCODE_STYLE.md37 open brace.
68 In if/while/do/for expressions, we write the open brace on the same line as
69 the keyword and we then set the closing brace on the same indentation level as
81 For functions the opening brace should be on a separate line:
91 add it on a new line after the closing brace. Like this:
/external/clang/test/Parser/
Dmissing-closing-rbrace.m3 @interface A {@end // expected-error {{'@end' appears where closing brace '}' is expected}}
Dobjc-quirks.m10 // expected-error {{extraneous closing brace ('}')}} \
/external/llvm-project/clang/test/Parser/
Dmissing-closing-rbrace.m3 @interface A {@end // expected-error {{'@end' appears where closing brace '}' is expected}}
Dobjc-quirks.m10 // expected-error {{extraneous closing brace ('}')}} \
/external/mesa3d/src/compiler/glsl/glcpp/tests/
D147-define-macro-no-space.c.expected45 } kurly brace?
D147-define-macro-no-space.c22 #define K} kurly brace?
/external/cn-cbor/
D.editorconfig11 # Matches multiple files with brace expansion notation
/external/llvm-project/llvm/test/CodeGen/MIR/ARM/
Dextraneous-closing-brace-error.mir18 ; CHECK: [[@LINE+1]]:5: extraneous closing brace ('}')
/external/llvm/test/CodeGen/MIR/ARM/
Dextraneous-closing-brace-error.mir18 ; CHECK: [[@LINE+1]]:5: extraneous closing brace ('}')
/external/parameter-framework/upstream/
D.clang-format54 # Configure each individual brace in BraceWrapping
57 # Control of individual brace wrapping cases
/external/google-java-format/core/src/test/resources/com/google/googlejavaformat/java/testdata/
DB29368546.input55 * </pre> // oops, we forgot the close brace
DB29368546.output56 * </pre> // oops, we forgot the close brace
/external/skqp/tools/bookmaker/
DincludeWriter.cpp602 auto brace = child.fChildren[0]; in enumMembersOut() local
603 if (KeyWord::kClass == brace->fKeyWord) { in enumMembersOut()
604 brace = brace->fChildren[0]; in enumMembersOut()
606 SkASSERT(Bracket::kBrace == brace->fBracket); in enumMembersOut()
608 iterStack.emplace_back(brace->fTokens.begin(), brace->fTokens.end()); in enumMembersOut()
715 auto brace = child.fChildren[0]; in enumSizeItems() local
716 if (KeyWord::kClass == brace->fKeyWord) { in enumSizeItems()
717 brace = brace->fChildren[0]; in enumSizeItems()
719 SkASSERT(Bracket::kBrace == brace->fBracket); in enumSizeItems()
721 iterStack.emplace_back(brace->fTokens.begin(), brace->fTokens.end()); in enumSizeItems()
[all …]
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dllvm-namespace-comment.rst33 Requires the closing brace of the namespace definition to be followed by a

1234567