Home
last modified time | relevance | path

Searched refs:LParenLoc (Results 1 – 25 of 46) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h158 : Base(ClauseKind, StartLoc, EndLoc), LParenLoc(LParenLoc), S(S) {} in OMPOneStmtClause()
269 : StartLoc(StartLoc), LParenLoc(LParenLoc), EndLoc(EndLoc) {} in OMPVarListLocTy()
1042 LParenLoc(LParenLoc), Kind(A), KindKwLoc(ALoc) {} in OMPDefaultClause()
1124 LParenLoc(LParenLoc), Kind(A), KindKwLoc(ALoc) {} in OMPProcBindClause()
1364 LParenLoc(LParenLoc), Kind(A), KindKwLoc(ALoc) {} in OMPAtomicDefaultMemOrderClause()
1528 LParenLoc(LParenLoc), Kind(A), KindKwLoc(ALoc) {} in OMPSeverityClause()
1596 LParenLoc(LParenLoc), MessageString(MS) {} in OMPMessageClause()
1746 OMPClauseWithPreInit(this), LParenLoc(LParenLoc), Kind(Kind), in OMPScheduleClause()
2558 FailParameterLoc(FailParameterLoc), LParenLoc(LParenLoc) { in OMPFailClause()
4814 LParenLoc(LParenLoc) {} in OMPDepobjClause()
[all …]
H A DExprConcepts.h517 SourceLocation LParenLoc; variable
530 RequiresExprBodyDecl *Body, SourceLocation LParenLoc,
541 SourceLocation LParenLoc,
578 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
H A DTypeLoc.h1147 SourceLocation LParenLoc; member
1156 return this->getLocalData()->LParenLoc; in getLParenLoc()
1164 this->getLocalData()->LParenLoc = Loc; in setLParenLoc()
1383 SourceLocation LParenLoc; member
1425 return this->getLocalData()->LParenLoc; in getLParenLoc()
1429 this->getLocalData()->LParenLoc = Loc; in setLParenLoc()
1936 SourceLocation LParenLoc; member
1960 return this->getLocalData()->LParenLoc; in getLParenLoc()
1964 this->getLocalData()->LParenLoc = Loc; in setLParenLoc()
2558 return this->getLocalData()->LParenLoc; in getLParenLoc()
[all …]
H A DStmt.h2163 SourceLocation LParenLoc; variable
2354 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
2411 SourceLocation LParenLoc; variable
2529 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
2603 SourceLocation LParenLoc, RParenLoc; variable
2615 SourceLocation WL, SourceLocation LParenLoc,
2694 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
2695 void setLParenLoc(SourceLocation L) { LParenLoc = L; } in setLParenLoc()
2784 SourceLocation LParenLoc, RParenLoc; variable
2837 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
[all …]
H A DExprCXX.h1802 SourceLocation LParenLoc; variable
1812 LParenLoc(lParenLoc), RParenLoc(rParenLoc) { in CXXFunctionalCastExpr()
1839 void setLParenLoc(SourceLocation L) { LParenLoc = L; } in setLParenLoc()
3528 SourceLocation LParenLoc; variable
3564 void setLParenLoc(SourceLocation L) { LParenLoc = L; } in setLParenLoc()
4698 SourceLocation LParenLoc; variable
4713 LParenLoc(LParenLoc), EllipsisLoc(EllipsisLoc), RParenLoc(RParenLoc), in CXXFoldExpr()
4755 if (LParenLoc.isValid()) in getBeginLoc()
4756 return LParenLoc; in getBeginLoc()
4821 SourceLocation InitLoc, LParenLoc, RParenLoc; variable
[all …]
H A DExprObjC.h1642 SourceLocation LParenLoc; variable
1648 ObjCBridgedCastExpr(SourceLocation LParenLoc, ObjCBridgeCastKind Kind,
1653 LParenLoc(LParenLoc), BridgeKeywordLoc(BridgeKeywordLoc), Kind(Kind) {}
1659 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
1672 SourceLocation getBeginLoc() const LLVM_READONLY { return LParenLoc; } in getBeginLoc()
H A DExpr.h3400 SourceLocation LParenLoc; variable
3426 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
3427 void setLParenLoc(SourceLocation L) { LParenLoc = L; } in setLParenLoc()
3440 if (LParenLoc.isInvalid()) in getBeginLoc()
3442 return LParenLoc; in getBeginLoc()
4356 SourceLocation LParenLoc, RParenLoc; variable
4361 LParenLoc(LParenLoc), RParenLoc(RParenLoc) { in StmtExpr()
4378 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
4379 void setLParenLoc(SourceLocation L) { LParenLoc = L; } in setLParenLoc()
5605 SourceLocation LParenLoc, RParenLoc; variable
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp409 Clause->setLParenLoc(LParenLoc); in Create()
539 SourceLocation LParenLoc, in Create() argument
652 SourceLocation LParenLoc, in Create() argument
654 return new (C) OMPAlignClause(A, StartLoc, LParenLoc, EndLoc); in Create()
957 SourceLocation LParenLoc, in Create() argument
962 Clause->setLParenLoc(LParenLoc); in Create()
994 Clause->setLParenLoc(LParenLoc); in Create()
1025 SourceLocation LParenLoc, in Create() argument
1578 D.LParenLoc; in setAllocatorsData()
1596 Data.LParenLoc = getTrailingObjects< in getAllocatorData()
[all …]
H A DExprConcepts.cpp120 RequiresExprBodyDecl *Body, SourceLocation LParenLoc, in RequiresExpr() argument
127 NumRequirements(Requirements.size()), Body(Body), LParenLoc(LParenLoc), in RequiresExpr()
175 SourceLocation LParenLoc, ArrayRef<ParmVarDecl *> LocalParameters, in Create() argument
183 RequiresExpr(C, RequiresKWLoc, Body, LParenLoc, LocalParameters, in Create()
H A DStmt.cpp926 : Stmt(IfStmtClass), LParenLoc(LPL), RParenLoc(RPL) { in IfStmt()
1023 : Stmt(ForStmtClass), LParenLoc(LP), RParenLoc(RP) in ForStmt()
1053 Expr *Cond, SourceLocation LParenLoc, in SwitchStmt() argument
1055 : Stmt(SwitchStmtClass), FirstCase(nullptr), LParenLoc(LParenLoc), in SwitchStmt()
1081 Expr *Cond, SourceLocation LParenLoc, in Create() argument
1088 return new (Mem) SwitchStmt(Ctx, Init, Var, Cond, LParenLoc, RParenLoc); in Create()
1121 Stmt *Body, SourceLocation WL, SourceLocation LParenLoc, in WhileStmt() argument
1133 setLParenLoc(LParenLoc); in WhileStmt()
1144 SourceLocation LParenLoc, in Create() argument
1150 return new (Mem) WhileStmt(Ctx, Var, Cond, Body, WL, LParenLoc, RParenLoc); in Create()
H A DExprCXX.cpp1406 QualType T, TypeSourceInfo *TSI, SourceLocation LParenLoc, in CXXUnresolvedConstructExpr() argument
1413 TypeAndInitForm(TSI, IsListInit), LParenLoc(LParenLoc), in CXXUnresolvedConstructExpr()
1424 SourceLocation LParenLoc, ArrayRef<Expr *> Args, SourceLocation RParenLoc, in Create() argument
1427 return new (Mem) CXXUnresolvedConstructExpr(T, TSI, LParenLoc, Args, in Create()
1851 SourceLocation InitLoc, SourceLocation LParenLoc, in Create() argument
1855 LParenLoc, RParenLoc); in Create()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DVariadicMacroSupport.h86 void sawVAOptFollowedByOpeningParens(const SourceLocation LParenLoc) { in sawVAOptFollowedByOpeningParens() argument
88 UnmatchedOpeningParens.push_back(LParenLoc); in sawVAOptFollowedByOpeningParens()
107 void sawOpeningParen(SourceLocation LParenLoc) { in sawOpeningParen() argument
109 UnmatchedOpeningParens.push_back(LParenLoc); in sawOpeningParen()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h1668 SourceLocation LParenLoc, in RebuildOMPIfClause() argument
1868 SourceLocation StartLoc, SourceLocation LParenLoc, in RebuildOMPReductionClause() argument
2105 SourceLocation LParenLoc, in RebuildOMPHintClause() argument
2258 SourceLocation LParenLoc, SourceLocation EndLoc) { in RebuildOMPUsesAllocatorsClause() argument
2306 SourceLocation LParenLoc, in RebuildOMPUseClause() argument
2419 SourceLocation LParenLoc, in RebuildOMPAtClause() argument
3623 SourceLocation LParenLoc, in RebuildRequiresExpr() argument
10777 NewD.LParenLoc = D.LParenLoc; in TransformOMPUsesAllocatorsClause()
13382 SourceLocation LParenLoc = T->getTypeLoc().getEndLoc(); in TransformCXXTemporaryObjectExpr() local
13384 T, LParenLoc, Args, E->getEndLoc(), in TransformCXXTemporaryObjectExpr()
[all …]
H A DSemaOpenMP.cpp16899 if (NumForLoops && LParenLoc.isValid()) { in ActOnOpenMPOrderedClause()
16910 StartLoc, LParenLoc, EndLoc); in ActOnOpenMPOrderedClause()
16931 ArgumentLoc, StartLoc, LParenLoc, EndLoc); in ActOnOpenMPSimpleClause()
16936 ArgumentLoc, StartLoc, LParenLoc, EndLoc); in ActOnOpenMPSimpleClause()
16953 LParenLoc, EndLoc); in ActOnOpenMPSimpleClause()
17291 SourceLocation StartLoc, SourceLocation LParenLoc, in ActOnOpenMPSingleExprWithArgClause() argument
18095 SourceLocation LParenLoc = Locs.LParenLoc; in ActOnOpenMPVarListClause() local
18740 SourceLocation LParenLoc, SourceLocation EndLoc) { in ActOnOpenMPLastprivateClause() argument
20142 SourceLocation StartLoc, SourceLocation LParenLoc, in ActOnOpenMPReductionClause() argument
21163 Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPDependClause()
[all …]
H A DSemaExprObjC.cpp1160 SourceLocation LParenLoc, in ParseObjCEncodeExpression() argument
1206 SourceLocation LParenLoc, in DiagnoseMismatchedSelectors() argument
1294 SourceLocation LParenLoc, in ParseObjCSelectorExpression() argument
1298 SourceRange(LParenLoc, RParenLoc)); in ParseObjCSelectorExpression()
1305 SourceRange SelectorRange(LParenLoc.getLocWithOffset(1), in ParseObjCSelectorExpression()
1365 Sel << SourceRange(LParenLoc, RParenLoc); in ParseObjCSelectorExpression()
1388 SourceLocation LParenLoc, in ParseObjCProtocolExpression() argument
4638 ExprResult Sema::BuildObjCBridgedCast(SourceLocation LParenLoc, in BuildObjCBridgedCast() argument
4729 Diag(LParenLoc, diag::err_arc_bridge_cast_incompatible) in BuildObjCBridgedCast()
4750 SourceLocation LParenLoc, in ActOnObjCBridgedCast() argument
[all …]
H A DSemaObjCProperty.cpp173 SourceLocation LParenLoc, in ActOnProperty() argument
197 Res = HandlePropertyInClassExtension(S, AtLoc, LParenLoc, in ActOnProperty()
210 Res = CreatePropertyDecl(S, ClassDecl, AtLoc, LParenLoc, FD, in ActOnProperty()
307 SourceLocation LParenLoc, SourceLocation &Loc) { in LocPropertyAttribute() argument
308 if (LParenLoc.isMacroID()) in LocPropertyAttribute()
312 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(LParenLoc); in LocPropertyAttribute()
407 SourceLocation LParenLoc, in HandlePropertyInClassExtension() argument
512 ObjCPropertyDecl *PDecl = CreatePropertyDecl(S, CDecl, AtLoc, LParenLoc, in HandlePropertyInClassExtension()
561 SourceLocation LParenLoc, in CreatePropertyDecl() argument
618 LParenLoc, T, TInfo); in CreatePropertyDecl()
H A DSemaTemplateVariadic.cpp1197 ExprResult Sema::ActOnCXXFoldExpr(Scope *S, SourceLocation LParenLoc, Expr *LHS, in ActOnCXXFoldExpr() argument
1258 return BuildCXXFoldExpr(ULE, LParenLoc, LHS, Opc, EllipsisLoc, RHS, RParenLoc, in ActOnCXXFoldExpr()
1263 SourceLocation LParenLoc, Expr *LHS, in BuildCXXFoldExpr() argument
1269 CXXFoldExpr(Context.DependentTy, Callee, LParenLoc, LHS, Operator, in BuildCXXFoldExpr()
H A DSemaStmt.cpp887 SourceLocation LParenLoc, Stmt *InitStmt, in ActOnIfStmt() argument
921 : LParenLoc) in ActOnIfStmt()
954 return BuildIfStmt(IfLoc, StatementKind, LParenLoc, InitStmt, Cond, RParenLoc, in ActOnIfStmt()
960 SourceLocation LParenLoc, Stmt *InitStmt, in BuildIfStmt() argument
972 Cond.get().first, Cond.get().second, LParenLoc, in BuildIfStmt()
1099 SourceLocation LParenLoc, in ActOnStartOfSwitchStmt() argument
1124 LParenLoc, RParenLoc); in ActOnStartOfSwitchStmt()
1697 SourceLocation LParenLoc, ConditionResult Cond, in ActOnWhileStmt() argument
1713 WhileLoc, LParenLoc, RParenLoc); in ActOnWhileStmt()
2141 StmtResult Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in ActOnForStmt() argument
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4925 SourceLocation LParenLoc,
5226 SourceLocation LParenLoc,
6034 ExprResult BuildCStyleCastExpr(SourceLocation LParenLoc,
6041 ExprResult BuildVectorLiteral(SourceLocation LParenLoc,
6712 SourceLocation LParenLoc,
8832 SourceLocation LParenLoc,
10677 SourceLocation LParenLoc,
12120 SourceLocation LParenLoc,
12227 SourceLocation StartLoc, SourceLocation LParenLoc,
12432 SourceLocation StartLoc, SourceLocation LParenLoc,
[all …]
H A DInitialization.h642 SourceLocation LParenLoc, in CreateDirect() argument
645 InitLoc, LParenLoc, RParenLoc); in CreateDirect()
702 SourceLocation LParenLoc,
706 InitLoc, LParenLoc, RParenLoc);
H A DDeclSpec.h1344 SourceLocation LParenLoc; member
1461 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
1665 SourceLocation LParenLoc,
1725 static DeclaratorChunk getParen(SourceLocation LParenLoc, in getParen()
1729 I.Loc = LParenLoc; in getParen()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp1188 SourceLocation LParenLoc = Tok.getLocation(); in EvaluateHasIncludeCommon() local
1192 PP.Diag(LParenLoc, diag::err_pp_directive_required) << II; in EvaluateHasIncludeCommon()
1208 LParenLoc = PP.getLocForEndOfToken(LParenLoc); in EvaluateHasIncludeCommon()
1209 PP.Diag(LParenLoc, diag::err_pp_expected_after) << II << tok::l_paren; in EvaluateHasIncludeCommon()
1216 LParenLoc = Tok.getLocation(); in EvaluateHasIncludeCommon()
1242 PP.Diag(LParenLoc, diag::note_matching) << tok::l_paren; in EvaluateHasIncludeCommon()
1308 SourceLocation LParenLoc = Tok.getLocation(); in EvaluateFeatureLikeBuiltinMacro() local
1389 PP.Diag(LParenLoc, diag::note_matching) << tok::l_paren; in EvaluateFeatureLikeBuiltinMacro()
1872 SourceLocation LParenLoc = Tok.getLocation(); in ExpandBuiltinMacro() local
1899 Diag(LParenLoc, diag::note_matching) << tok::l_paren; in ExpandBuiltinMacro()
H A DPPExpressions.cpp111 SourceLocation LParenLoc; in EvaluateDefined() local
114 LParenLoc = PeekTok.getLocation(); in EvaluateDefined()
148 if (LParenLoc.isValid()) { in EvaluateDefined()
156 PP.Diag(LParenLoc, diag::note_matching) << tok::l_paren; in EvaluateDefined()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp2386 if (LParenLoc.isInvalid() || RParenLoc.isInvalid()) { in ParseExprAfterUnaryExprOrTypeTrait()
2391 Diag(LParenLoc, diag::err_expected_parentheses_around_typename) in ParseExprAfterUnaryExprOrTypeTrait()
2415 SourceLocation LParenLoc = Tok.getLocation(), RParenLoc; in ParseExprAfterUnaryExprOrTypeTrait() local
2419 CastRange = SourceRange(LParenLoc, RParenLoc); in ParseExprAfterUnaryExprOrTypeTrait()
2498 SourceLocation LParenLoc, RParenLoc; in ParseUnaryExprOrTypeTraitExpression() local
2504 LParenLoc = T.getOpenLocation(); in ParseUnaryExprOrTypeTraitExpression()
2519 LParenLoc = PP.getLocForEndOfToken(EllipsisLoc); in ParseUnaryExprOrTypeTraitExpression()
2521 Diag(LParenLoc, diag::err_paren_sizeof_parameter_pack) in ParseUnaryExprOrTypeTraitExpression()
2523 << FixItHint::CreateInsertion(LParenLoc, "(") in ParseUnaryExprOrTypeTraitExpression()
3303 SourceLocation LParenLoc, in ParseCompoundLiteralExpression() argument
[all …]
H A DParseExprCXX.cpp1362 SourceLocation LParenLoc, RParenLoc; in ParseLambdaExpressionAfterIntroducer() local
1379 LParenLoc = T.getOpenLocation(); in ParseLambdaExpressionAfterIntroducer()
1486 /*IsAmbiguous=*/false, LParenLoc, ParamInfo.data(), in ParseLambdaExpressionAfterIntroducer()
1494 /*DeclsInPrototype=*/std::nullopt, LParenLoc, in ParseLambdaExpressionAfterIntroducer()
1629 SourceLocation LParenLoc, RParenLoc; in ParseCXXTypeid() local
1635 LParenLoc = T.getOpenLocation(); in ParseCXXTypeid()
1665 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true, in ParseCXXTypeid()
1679 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false, in ParseCXXTypeid()

12