Home
last modified time | relevance | path

Searched refs:Parens (Results 1 – 13 of 13) sorted by relevance

/openbsd/gnu/llvm/clang/lib/Tooling/Transformer/
H A DStencil.cpp102 Parens, enumerator
122 case UnaryNodeOperator::Parens: in toString()
157 case UnaryNodeOperator::Parens: in eval()
438 return std::make_shared<UnaryOperationStencil>(UnaryNodeOperator::Parens, in expression()
/openbsd/gnu/llvm/clang/lib/Parse/
H A DParseExprCXX.cpp979 Parens.consumeOpen(); in ParseLambdaIntroducer()
985 Parens.skipToEnd(); in ParseLambdaIntroducer()
988 Parens.skipToEnd(); in ParseLambdaIntroducer()
991 Parens.consumeClose(); in ParseLambdaIntroducer()
3483 Parens.consumeOpen(); in ParseRequiresExpression()
3496 Parens.consumeClose(); in ParseRequiresExpression()
3811 if (Parens.expectAndConsume()) in ParseTypeTrait()
3819 Parens.skipToEnd(); in ParseTypeTrait()
3827 Parens.skipToEnd(); in ParseTypeTrait()
3836 if (Parens.consumeClose()) in ParseTypeTrait()
[all …]
H A DParsePragma.cpp1595 BalancedDelimiterTracker Parens(*this, tok::l_paren); in ParsePragmaAttributeSubjectMatchRuleSet() local
1597 if (Parens.expectAndConsume()) in ParsePragmaAttributeSubjectMatchRuleSet()
1599 } else if (Parens.consumeOpen()) { in ParsePragmaAttributeSubjectMatchRuleSet()
1622 BalancedDelimiterTracker Parens(*this, tok::l_paren); in ParsePragmaAttributeSubjectMatchRuleSet() local
1623 if (Parens.expectAndConsume()) in ParsePragmaAttributeSubjectMatchRuleSet()
1640 if (Parens.consumeClose()) in ParsePragmaAttributeSubjectMatchRuleSet()
1654 if (Parens.consumeClose()) in ParsePragmaAttributeSubjectMatchRuleSet()
H A DParseExpr.cpp3753 BalancedDelimiterTracker Parens(*this, tok::l_paren); in ParseAvailabilityCheckExpr() local
3754 if (Parens.expectAndConsume()) in ParseAvailabilityCheckExpr()
3777 if (Parens.consumeClose()) in ParseAvailabilityCheckExpr()
3781 Parens.getCloseLocation()); in ParseAvailabilityCheckExpr()
H A DParseDecl.cpp339 BalancedDelimiterTracker Parens(*this, tok::l_paren); in ParseAttributeWithTypeArg() local
340 Parens.consumeOpen(); in ParseAttributeWithTypeArg()
346 if (Parens.consumeClose()) in ParseAttributeWithTypeArg()
354 SourceRange(AttrNameLoc, Parens.getCloseLocation()), in ParseAttributeWithTypeArg()
357 Attrs.addNew(&AttrName, SourceRange(AttrNameLoc, Parens.getCloseLocation()), in ParseAttributeWithTypeArg()
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaCast.cpp298 SourceRange AngleBrackets, SourceRange Parens) { in BuildCXXNamedCast() argument
307 Op.OpRange = SourceRange(OpLoc, Parens.getEnd()); in BuildCXXNamedCast()
321 DestTInfo, OpLoc, Parens.getEnd(), AngleBrackets)); in BuildCXXNamedCast()
332 OpLoc, Parens.getEnd(), in BuildCXXNamedCast()
350 OpLoc, Parens.getEnd(), in BuildCXXNamedCast()
363 Parens.getEnd(), in BuildCXXNamedCast()
377 Parens.getEnd(), AngleBrackets)); in BuildCXXNamedCast()
H A DTreeTransform.h4025 SourceRange Parens = VIE->getSourceRange(); in TransformInitializer() local
4026 return getDerived().RebuildParenListExpr(Parens.getBegin(), std::nullopt, in TransformInitializer()
4027 Parens.getEnd()); in TransformInitializer()
4062 SourceRange Parens = Construct->getParenOrBraceRange(); in TransformInitializer() local
4063 if (Parens.isInvalid()) { in TransformInitializer()
4070 return getDerived().RebuildParenListExpr(Parens.getBegin(), NewArgs, in TransformInitializer()
4071 Parens.getEnd()); in TransformInitializer()
H A DSemaTemplate.cpp6700 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) { in CheckTemplateArgumentAddressOfObjectOrFunction() local
6710 Arg = Parens->getSubExpr(); in CheckTemplateArgumentAddressOfObjectOrFunction()
6923 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) { in CheckTemplateArgumentPointerToMember() local
6933 Arg = Parens->getSubExpr(); in CheckTemplateArgumentPointerToMember()
H A DSemaType.cpp7082 Parens, enumerator
7103 Stack.push_back(Parens); in FunctionTypeUnwrapper()
7177 case Parens: { in wrap()
/openbsd/gnu/llvm/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h143 Parens, // ?R operator() enumerator
/openbsd/gnu/llvm/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp283 OUTPUT_ENUM_CLASS_VALUE(IntrinsicFunctionKind, Parens, "operator()"); in output()
H A DMicrosoftDemangle.cpp568 IFK::Parens, // ?R operator() in translateIntrinsicFunctionCode()
/openbsd/gnu/llvm/clang/include/clang/Sema/
H A DSema.h6569 SourceRange Parens);