/external/llvm-project/flang/lib/Parser/ |
D | openacc-parsers.cpp | 28 maybe(parenthesized(scalarIntExpr)))) || 30 parenthesized(Parser<AccObjectList>{}))) || 32 construct<AccClause>(construct<AccClause::Bind>(parenthesized(name))) || 35 parenthesized(scalarIntConstantExpr))) || 38 parenthesized(Parser<AccObjectList>{}))) || 41 parenthesized(Parser<AccObjectListWithModifier>{}))) || 44 parenthesized(Parser<AccObjectListWithModifier>{}))) || 47 parenthesized(Parser<AccObjectListWithModifier>{}))) || 51 parenthesized(scalarIntExpr))) || 53 parenthesized(Parser<AccObjectList>{}))) || [all …]
|
D | openmp-parsers.cpp | 143 Parser<OmpLinearModifier>{}, parenthesized(nonemptyList(name)), 159 construct<OmpClause>(parenthesized(Parser<OmpAlignedClause>{})) || 161 construct<OmpClause>(parenthesized(Parser<OmpAllocateClause>{})) || 163 parenthesized(scalarIntConstantExpr))) || 165 parenthesized(Parser<OmpObjectList>{}))) || 167 (parenthesized(Parser<OmpObjectList>{})))) || 169 construct<OmpClause>(parenthesized(Parser<OmpDefaultClause>{})) || 171 construct<OmpClause>(parenthesized(Parser<OmpDefaultmapClause>{})) || 173 construct<OmpClause>(parenthesized(Parser<OmpDependClause>{})) || 175 parenthesized(scalarIntExpr))) || [all …]
|
D | Fortran-parsers.cpp | 177 (parenthesized(construct<DeclarationTypeSpec>(intrinsicTypeSpec)) || 178 parenthesized(construct<DeclarationTypeSpec>( 182 "CLASS" >> parenthesized(construct<DeclarationTypeSpec>( 222 parenthesized(maybe("KIND ="_tok) >> scalarIntConstantExpr)) || 276 parenthesized(construct<ComplexLiteralConstant>( 299 parenthesized(construct<CharSelector>( 301 parenthesized(construct<CharSelector>( 303 parenthesized(construct<CharSelector>( 312 parenthesized(maybe("LEN ="_tok) >> typeParamValue)) || 316 TYPE_PARSER(construct<CharLength>(parenthesized(typeParamValue)) || [all …]
|
D | executable-parsers.cpp | 66 parenthesized(nonemptyList(Parser<AllocateShapeSpec>{}))))))}; 151 "ASSOCIATE" >> parenthesized(nonemptyList(Parser<Association>{})))) 213 "END TEAM" >> defaulted(parenthesized(optionalList(statOrErrmsg))), 220 "CRITICAL" >> defaulted(parenthesized(optionalList(statOrErrmsg))))) 241 TYPE_PARSER(parenthesized(construct<ConcurrentHeader>( 256 "LOCAL" >> parenthesized(listOfNames))) || 258 "LOCAL_INIT"_sptok >> parenthesized(listOfNames))) || 260 "SHARED" >> parenthesized(listOfNames))) || 274 "WHILE" >> parenthesized(scalarLogicalExpr)) || 308 "IF" >> parenthesized(scalarLogicalExpr) / "THEN")), [all …]
|
D | program-parsers.cpp | 207 parenthesized(ok))))) 287 "SUBMODULE" >> parenthesized(Parser<ParentIdentifier>{}), name)) 361 parenthesized(Parser<DefinedOperator>{})), 387 construct<ProcedureDeclarationStmt>(parenthesized(maybe(procInterface)), 405 construct<ProcAttrSpec>("INTENT" >> parenthesized(intentSpec)) || 425 parenthesized(optionalList(actualArgSpec))))) / 431 defaulted(parenthesized(optionalList(actualArgSpec))))))) 453 construct<ActualArg::PercentRef>("%REF" >> parenthesized(variable)))) || 455 construct<ActualArg::PercentVal>("%VAL" >> parenthesized(expr))))) 486 parenthesized(optionalList(name)), maybe(suffix)) || [all …]
|
D | io-parsers.cpp | 137 construct<CloseStmt>("CLOSE" >> parenthesized(nonemptyList(closeSpec)))) 163 parenthesized(nonemptyList(ioControlSpec)), inputItemList) || 244 parenthesized(nonemptyList(ioControlSpec)), outputItemList)) 271 parenthesized( 275 parenthesized(construct<OutputImpliedDo>( 282 parenthesized(construct<WaitStmt>(nonemptyList(Parser<WaitSpec>{})))) 307 parenthesized(nonemptyList(positionOrFlushSpec)) || bareUnitNumberAsList}; 508 parenthesized(nonemptyList(Parser<InquireSpec>{}))) || 510 parenthesized("IOLENGTH =" >> scalar(integer(variable))), 540 construct<format::FormatItem>(maybe(repeat), parenthesized(formatItems))) [all …]
|
D | expr-parsers.cpp | 53 TYPE_PARSER(parenthesized( 72 construct<Expr>(construct<Expr::Parentheses>(parenthesized(expr))), 79 construct<Expr>(parenthesized( 82 parenthesized(construct<Expr::PercentLoc>(indirect(variable)))))))}; 428 parenthesized(nonemptyList(Parser<BoundsRemapping>{})), "=>" >> expr) || 430 defaulted(parenthesized(nonemptyList(Parser<BoundsSpec>{}))), 447 construct<WhereStmt>("WHERE" >> parenthesized(logicalExpr), assignmentStmt)) 466 maybe(name / ":"), "WHERE" >> parenthesized(logicalExpr))) 478 "ELSE WHERE" >> parenthesized(logicalExpr), maybe(name)))
|
/external/rust/crates/syn/tests/ |
D | test_parse_buffer.rs | 4 use syn::{parenthesized, Token}; 31 parenthesized!(a in input); in smuggled_speculative_cursor_between_brackets() 32 parenthesized!(b in input); in smuggled_speculative_cursor_between_brackets() 48 parenthesized!(a in input); in smuggled_speculative_cursor_into_brackets() 63 parenthesized!(content in input); in trailing_empty_none_group()
|
/external/rust/crates/pin-project-internal/src/ |
D | utils.rs | 156 fn parenthesized(self) -> Result<ParseBuffer<'a>>; in parenthesized() method 160 fn parenthesized(self) -> Result<ParseBuffer<'a>> { in parenthesized() method 162 let _: token::Paren = syn::parenthesized!(content in self); in parenthesized() 168 fn parenthesized(self) -> Result<ParseBuffer<'a>> { in parenthesized() method 170 let _: token::Paren = syn::parenthesized!(content in self); in parenthesized()
|
/external/rust/crates/paste/src/ |
D | segment.rs | 42 let parenthesized = match &expect_group { in parse() localVariable 57 let mut inner = parenthesized.stream().into_iter(); in parse() 66 parenthesized.span(), in parse()
|
/external/rust/crates/thiserror-impl/src/ |
D | attr.rs | 6 braced, bracketed, parenthesized, token, Attribute, Error, Ident, Index, LitInt, LitStr, 150 let delimiter = parenthesized!(content in input); in parse_token_expr()
|
/external/rust/crates/pin-project-internal/src/pin_project/ |
D | args.rs | 19 let content = input.parenthesized().ok()?; in parse_args() 22 content.parenthesized().ok()?.parse::<TokenStream>().ok() in parse_args()
|
/external/rust/crates/structopt-derive/src/ |
D | parse.rs | 6 self, parenthesized, 123 parenthesized!(nested in input); in parse()
|
/external/python/cpython3/Doc/reference/ |
D | grammar.rst | 12 In particular, ``&`` followed by a symbol, token or parenthesized
|
/external/rust/crates/syn-mid/src/ |
D | func.rs | 72 braced, parenthesized, 108 let paren_token = parenthesized!(content in input); in parse()
|
D | pat.rs | 134 parenthesized, 268 let paren_token = parenthesized!(content in input); in pat_tuple()
|
/external/rust/crates/syn/src/ |
D | ty.rs | 423 let paren_token = parenthesized!(content in input); in ambig_ty() 722 paren_token: parenthesized!(args in input), in parse_bare_fn() 784 let paren_token = parenthesized!(content in input); in parse() 829 let parenthesized = PathArguments::Parenthesized(args); in parse() localVariable 830 path.segments.last_mut().unwrap().arguments = parenthesized; in parse() 960 paren_token: parenthesized!(content in input), in parse()
|
D | data.rs | 292 paren_token: parenthesized!(content in input), in parse() 356 let paren_token = parenthesized!(content in ahead); in parse_pub()
|
D | group.rs | 137 macro_rules! parenthesized { macro
|
D | attr.rs | 296 parenthesized!(content in input); in enter_args() 618 paren_token: parenthesized!(content in input), in parse_meta_list_after_path()
|
D | generics.rs | 828 let paren_token = parenthesized!(content in input); in parse() 846 let parenthesized = PathArguments::Parenthesized(input.parse()?); in parse() localVariable 847 path.segments.last_mut().unwrap().arguments = parenthesized; in parse()
|
/external/starlark-go/starlark/testdata/ |
D | assign.star | 270 # assign value to parenthesized variable 311 # parenthesized LHS in augmented assignment (success) 320 # parenthesized LHS in augmented assignment (error)
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | GeneratePickerData.txt | 47 Number:.*(circled|parenthesized|Numbers period).* > Number:Enclosed/Dotted
|
/external/llvm-project/clang/test/Parser/ |
D | cxx1z-class-template-argument-deduction.cpp | 219 namespace parenthesized { namespace
|
/external/auto/value/src/main/java/com/google/auto/value/processor/ |
D | autoannotation.vm | 192 ## problems the expression needs to be parenthesized. 247 ## problems the expression needs to be parenthesized.
|