Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenACCClause.cpp62 SourceLocation LParenLoc, in Create() argument
67 return new (Mem) OpenACCDefaultClause(K, BeginLoc, LParenLoc, EndLoc); in Create()
72 SourceLocation LParenLoc, in Create() argument
76 return new (Mem) OpenACCIfClause(BeginLoc, LParenLoc, ConditionExpr, EndLoc); in Create()
80 SourceLocation LParenLoc, Expr *ConditionExpr, in OpenACCIfClause() argument
82 : OpenACCClauseWithCondition(OpenACCClauseKind::If, BeginLoc, LParenLoc, in OpenACCIfClause()
92 SourceLocation LParenLoc, in Create() argument
97 OpenACCSelfClause(BeginLoc, LParenLoc, ConditionExpr, EndLoc); in Create()
102 SourceLocation LParenLoc, in Create() argument
107 return new (Mem) OpenACCSelfClause(BeginLoc, LParenLoc, VarList, EndLoc); in Create()
[all …]
H A DOpenMPClause.cpp347 SourceLocation LParenLoc, in Create() argument
351 new (Mem) OMPOrderedClause(Num, NumLoops, StartLoc, LParenLoc, EndLoc); in Create()
403 SourceLocation LParenLoc, SourceLocation ArgumentLoc, in Create() argument
410 Clause->setLParenLoc(LParenLoc); in Create()
436 SourceLocation LParenLoc, SourceLocation EndLoc, in Create() argument
441 new (Mem) OMPPrivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
467 SourceLocation LParenLoc, SourceLocation EndLoc, in Create() argument
472 new (Mem) OMPFirstprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
514 const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, in Create() argument
521 StartLoc, LParenLoc, EndLoc, LPKind, LPKindLoc, ColonLoc, VL.size()); in Create()
[all …]
H A DExprConcepts.cpp115 RequiresExprBodyDecl *Body, SourceLocation LParenLoc, in RequiresExpr() argument
122 NumRequirements(Requirements.size()), Body(Body), LParenLoc(LParenLoc), in RequiresExpr()
168 SourceLocation LParenLoc, ArrayRef<ParmVarDecl *> LocalParameters, in Create() argument
176 RequiresExpr(C, RequiresKWLoc, Body, LParenLoc, LocalParameters, in Create()
H A DDeclOpenACC.cpp45 SourceLocation LParenLoc, Expr *FuncRef, in Create() argument
50 OpenACCRoutineDecl(DC, StartLoc, DirLoc, LParenLoc, FuncRef, RParenLoc, in Create()
H A DStmtOpenACC.cpp208 SourceLocation LParenLoc, Expr *DevNumExpr, SourceLocation QueuesLoc, in Create() argument
219 OpenACCWaitConstruct(Start, DirectiveLoc, LParenLoc, DevNumExpr, in Create()
335 SourceLocation LParenLoc, SourceLocation ReadOnlyLoc, in Create() argument
340 Start, DirectiveLoc, LParenLoc, ReadOnlyLoc, VarList, RParenLoc, End); in Create()
H A DStmt.cpp971 : Stmt(IfStmtClass), LParenLoc(LPL), RParenLoc(RPL) { in IfStmt()
1068 : Stmt(ForStmtClass), LParenLoc(LP), RParenLoc(RP) in ForStmt()
1098 Expr *Cond, SourceLocation LParenLoc, in SwitchStmt() argument
1100 : Stmt(SwitchStmtClass), FirstCase(nullptr), LParenLoc(LParenLoc), in SwitchStmt()
1126 Expr *Cond, SourceLocation LParenLoc, in Create() argument
1133 return new (Mem) SwitchStmt(Ctx, Init, Var, Cond, LParenLoc, RParenLoc); in Create()
1166 Stmt *Body, SourceLocation WL, SourceLocation LParenLoc, in WhileStmt() argument
1178 setLParenLoc(LParenLoc); in WhileStmt()
1189 SourceLocation LParenLoc, in Create() argument
1195 return new (Mem) WhileStmt(Ctx, Var, Cond, Body, WL, LParenLoc, RParenLoc); in Create()
H A DExprCXX.cpp1461 QualType T, TypeSourceInfo *TSI, SourceLocation LParenLoc, in CXXUnresolvedConstructExpr() argument
1468 TypeAndInitForm(TSI, IsListInit), LParenLoc(LParenLoc), in CXXUnresolvedConstructExpr()
1478 SourceLocation LParenLoc, ArrayRef<Expr *> Args, SourceLocation RParenLoc, in Create() argument
1481 return new (Mem) CXXUnresolvedConstructExpr(T, TSI, LParenLoc, Args, in Create()
1975 SourceLocation InitLoc, SourceLocation LParenLoc, in Create() argument
1979 LParenLoc, RParenLoc); in Create()
1991 SourceLocation LParenLoc, Expr *LHS, in CXXFoldExpr() argument
1995 : Expr(CXXFoldExprClass, T, VK_PRValue, OK_Ordinary), LParenLoc(LParenLoc), in CXXFoldExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenACCClause.h193 SourceLocation LParenLoc; variable
197 SourceLocation LParenLoc, SourceLocation EndLoc) in OpenACCClauseWithParams() argument
198 : OpenACCClause(K, BeginLoc, EndLoc), LParenLoc(LParenLoc) {} in OpenACCClauseWithParams()
203 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
216 OpenACCBindClause(SourceLocation BeginLoc, SourceLocation LParenLoc, in OpenACCBindClause() argument
218 : OpenACCClauseWithParams(OpenACCClauseKind::Bind, BeginLoc, LParenLoc, in OpenACCBindClause()
221 OpenACCBindClause(SourceLocation BeginLoc, SourceLocation LParenLoc, in OpenACCBindClause() argument
223 : OpenACCClauseWithParams(OpenACCClauseKind::Bind, BeginLoc, LParenLoc, in OpenACCBindClause()
232 SourceLocation LParenLoc,
236 SourceLocation LParenLoc,
[all …]
H A DOpenMPClause.h147 SourceLocation LParenLoc; variable
156 OMPOneStmtClause(Stmt *S, SourceLocation StartLoc, SourceLocation LParenLoc, in OMPOneStmtClause() argument
158 : Base(ClauseKind, StartLoc, EndLoc), LParenLoc(LParenLoc), S(S) {} in OMPOneStmtClause()
166 void setLParenLoc(SourceLocation Loc) { LParenLoc = Loc; } in setLParenLoc()
169 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
263 SourceLocation LParenLoc; member
267 OMPVarListLocTy(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPVarListLocTy()
269 : StartLoc(StartLoc), LParenLoc(LParenLoc), EndLoc(EndLoc) {} in OMPVarListLocTy()
279 SourceLocation LParenLoc; variable
293 SourceLocation LParenLoc, SourceLocation EndLoc, unsigned N) in OMPVarListClause() argument
[all …]
H A DDeclOpenACC.h122 SourceLocation DirLoc, SourceLocation LParenLoc, in OpenACCRoutineDecl() argument
128 FuncRef(FuncRef), ParensLoc(LParenLoc, RParenLoc) { in OpenACCRoutineDecl()
129 assert(LParenLoc.isValid() && in OpenACCRoutineDecl()
139 SourceLocation DirLoc, SourceLocation LParenLoc, Expr *FuncRef,
H A DStmtOpenACC.h459 SourceLocation LParenLoc, RParenLoc; variable
484 SourceLocation LParenLoc, Expr *DevNumExpr, in OpenACCWaitConstruct() argument
491 LParenLoc(LParenLoc), RParenLoc(RParenLoc), QueuesLoc(QueuesLoc), in OpenACCWaitConstruct()
530 SourceLocation LParenLoc, Expr *DevNumExpr, SourceLocation QueuesLoc,
534 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
577 SourceLocation LParenLoc, SourceLocation ReadOnlyLoc, in OpenACCCacheConstruct() argument
583 ParensLoc(LParenLoc, RParenLoc), ReadOnlyLoc(ReadOnlyLoc), in OpenACCCacheConstruct()
602 SourceLocation LParenLoc, SourceLocation ReadOnlyLoc,
H A DExprConcepts.h510 SourceLocation LParenLoc; variable
519 RequiresExprBodyDecl *Body, SourceLocation LParenLoc,
530 SourceLocation LParenLoc,
567 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
H A DTypeLoc.h1235 SourceLocation LParenLoc; member
1244 return this->getLocalData()->LParenLoc; in getLParenLoc()
1252 this->getLocalData()->LParenLoc = Loc; in setLParenLoc()
1475 SourceLocation LParenLoc; member
1517 return this->getLocalData()->LParenLoc; in getLParenLoc()
1521 this->getLocalData()->LParenLoc = Loc; in setLParenLoc()
2033 SourceLocation LParenLoc; member
2057 return this->getLocalData()->LParenLoc; in getLParenLoc()
2061 this->getLocalData()->LParenLoc = Loc; in setLParenLoc()
2186 SourceLocation KWLoc, LParenLoc, RParenLoc; member
[all …]
H A DStmt.h2289 SourceLocation LParenLoc;
2311 Stmt *Init, VarDecl *Var, Expr *Cond, SourceLocation LParenLoc,
2480 SourceLocation getLParenLoc() const { return LParenLoc; }
2481 void setLParenLoc(SourceLocation Loc) { LParenLoc = Loc; }
2537 SourceLocation LParenLoc;
2553 SourceLocation LParenLoc, SourceLocation RParenLoc);
2561 Expr *Cond, SourceLocation LParenLoc,
2649 SourceLocation getLParenLoc() const { return LParenLoc; }
2650 void setLParenLoc(SourceLocation Loc) { LParenLoc = Loc; }
2721 SourceLocation LParenLoc, RParenLoc;
[all …]
H A DExprCXX.h1820 SourceLocation LParenLoc; variable
1830 LParenLoc(lParenLoc), RParenLoc(rParenLoc) { in CXXFunctionalCastExpr()
1856 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
1857 void setLParenLoc(SourceLocation L) { LParenLoc = L; } in setLParenLoc()
1862 bool isListInitialization() const { return LParenLoc.isInvalid(); } in isListInitialization()
3691 SourceLocation LParenLoc; variable
3697 SourceLocation LParenLoc, ArrayRef<Expr *> Args,
3708 SourceLocation LParenLoc, ArrayRef<Expr *> Args,
3726 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
3727 void setLParenLoc(SourceLocation L) { LParenLoc = L; } in setLParenLoc()
[all …]
H A DExprObjC.h1635 SourceLocation LParenLoc; variable
1641 ObjCBridgedCastExpr(SourceLocation LParenLoc, ObjCBridgeCastKind Kind,
1646 LParenLoc(LParenLoc), BridgeKeywordLoc(BridgeKeywordLoc), Kind(Kind) {}
1652 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
1665 SourceLocation getBeginLoc() const LLVM_READONLY { return LParenLoc; } in getBeginLoc()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaOpenMP.h125 SourceLocation LParenLoc, MultiExprArg ArgExprs,
861 SourceLocation LParenLoc,
866 SourceLocation LParenLoc,
871 SourceLocation LParenLoc,
877 SourceLocation LParenLoc,
882 SourceLocation StartLoc, SourceLocation LParenLoc,
886 SourceLocation LParenLoc,
890 SourceLocation LParenLoc,
894 SourceLocation LParenLoc,
899 SourceLocation LParenLoc,
[all …]
H A DSemaOpenACC.h289 SourceLocation LParenLoc; variable
352 SourceLocation getLParenLoc() const { return LParenLoc; } in getLParenLoc()
547 void setLParenLoc(SourceLocation EndLoc) { LParenLoc = EndLoc; } in setLParenLoc()
830 SourceLocation LParenLoc, SourceLocation MiscLoc, ArrayRef<Expr *> Exprs,
838 SourceLocation DirLoc, SourceLocation LParenLoc,
849 SourceLocation LParenLoc, Expr *FuncRef,
857 SourceLocation LParenLoc, Expr *ReferencedFunc,
863 SourceLocation LParenLoc, Expr *ReferencedFunc,
940 SourceLocation BeginLoc, SourceLocation LParenLoc,
948 SourceLocation BeginLoc, SourceLocation LParenLoc,
H A DSemaObjC.h686 SourceLocation LParenLoc, ParsedType Ty,
692 SourceLocation LParenLoc,
700 SourceLocation LParenLoc,
764 ExprResult BuildObjCBridgedCast(SourceLocation LParenLoc,
769 ExprResult ActOnObjCBridgedCast(Scope *S, SourceLocation LParenLoc,
946 Decl *ActOnProperty(Scope *S, SourceLocation AtLoc, SourceLocation LParenLoc,
962 Scope *S, SourceLocation AtLoc, SourceLocation LParenLoc,
972 SourceLocation LParenLoc, FieldDeclarator &FD,
H A DInitialization.h642 SourceLocation LParenLoc, in CreateDirect() argument
645 InitLoc, LParenLoc, RParenLoc); in CreateDirect()
703 SourceLocation LParenLoc,
707 InitLoc, LParenLoc, RParenLoc);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h1410 SourceLocation LParenLoc, Sema::ConditionResult Cond, in RebuildIfStmt() argument
1413 return getSema().ActOnIfStmt(IfLoc, Kind, LParenLoc, Init, Cond, RParenLoc, in RebuildIfStmt()
1422 SourceLocation LParenLoc, Stmt *Init, in RebuildSwitchStmtStart() argument
1425 return getSema().ActOnStartOfSwitchStmt(SwitchLoc, LParenLoc, Init, Cond, in RebuildSwitchStmtStart()
1442 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildWhileStmt() argument
1445 return getSema().ActOnWhileStmt(WhileLoc, LParenLoc, Cond, RParenLoc, Body); in RebuildWhileStmt()
1453 SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildDoStmt() argument
1455 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
1463 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, in RebuildForStmt() argument
1467 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond, in RebuildForStmt()
[all …]
H A DSemaOpenMP.cpp7132 SourceLocation LParenLoc, in ActOnOpenMPCall() argument
7151 Diag(LParenLoc, diag::err_omp_unexpected_call_to_omp_runtime_api); in ActOnOpenMPCall()
7221 NewCall = SemaRef.BuildCallExpr(Scope, BestExpr, LParenLoc, ArgExprs, in ActOnOpenMPCall()
15505 SourceLocation LParenLoc, in ActOnOpenMPSingleExprClause() argument
15510 Res = ActOnOpenMPFinalClause(Expr, StartLoc, LParenLoc, EndLoc); in ActOnOpenMPSingleExprClause()
15513 Res = ActOnOpenMPSafelenClause(Expr, StartLoc, LParenLoc, EndLoc); in ActOnOpenMPSingleExprClause()
15516 Res = ActOnOpenMPSimdlenClause(Expr, StartLoc, LParenLoc, EndLoc); in ActOnOpenMPSingleExprClause()
15519 Res = ActOnOpenMPAllocatorClause(Expr, StartLoc, LParenLoc, EndLoc); in ActOnOpenMPSingleExprClause()
15522 Res = ActOnOpenMPCollapseClause(Expr, StartLoc, LParenLoc, EndLoc); in ActOnOpenMPSingleExprClause()
15525 Res = ActOnOpenMPOrderedClause(StartLoc, EndLoc, LParenLoc, Expr); in ActOnOpenMPSingleExprClause()
[all …]
H A DSemaOpenACC.cpp1962 SourceLocation LParenLoc, SourceLocation MiscLoc, ArrayRef<Expr *> Exprs, in ActOnEndStmtDirective() argument
2008 getASTContext(), StartLoc, DirLoc, LParenLoc, Exprs.front(), MiscLoc, in ActOnEndStmtDirective()
2035 LParenLoc, MiscLoc, Exprs, RParenLoc, in ActOnEndStmtDirective()
2043 DeclGroupRef DR = ActOnEndDeclDirective(K, StartLoc, DirLoc, LParenLoc, in ActOnEndStmtDirective()
2201 SourceLocation LParenLoc, SourceLocation RParenLoc, SourceLocation EndLoc, in ActOnEndDeclDirective() argument
2351 SourceLocation StartLoc, SourceLocation DirLoc, SourceLocation LParenLoc, in CheckRoutineDecl() argument
2354 assert(LParenLoc.isValid()); in CheckRoutineDecl()
2416 getASTContext(), getCurContext(), StartLoc, DirLoc, LParenLoc, FuncRef, in CheckRoutineDecl()
2425 SourceLocation StartLoc, SourceLocation DirLoc, SourceLocation LParenLoc, in ActOnEndRoutineDeclDirective() argument
2432 if (LParenLoc.isInvalid()) { in ActOnEndRoutineDeclDirective()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp1143 SourceLocation LParenLoc = Tok.getLocation(); in EvaluateHasIncludeCommon() local
1147 PP.Diag(LParenLoc, diag::err_pp_directive_required) << II; in EvaluateHasIncludeCommon()
1163 LParenLoc = PP.getLocForEndOfToken(LParenLoc); in EvaluateHasIncludeCommon()
1164 PP.Diag(LParenLoc, diag::err_pp_expected_after) << II << tok::l_paren; in EvaluateHasIncludeCommon()
1171 LParenLoc = Tok.getLocation(); in EvaluateHasIncludeCommon()
1197 PP.Diag(LParenLoc, diag::note_matching) << tok::l_paren; in EvaluateHasIncludeCommon()
1251 SourceLocation LParenLoc = Tok.getLocation(); in EvaluateHasEmbed() local
1277 Diag(LParenLoc, diag::note_matching) << tok::l_paren; in EvaluateHasEmbed()
1296 Callbacks->HasEmbed(LParenLoc, Filename, isAngled, MaybeFileEntry); in EvaluateHasEmbed()
1362 SourceLocation LParenLoc = Tok.getLocation(); in EvaluateFeatureLikeBuiltinMacro() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp9947 SourceLocation LParenLoc = readSourceLocation(); in readCXXCtorInitializers() local
9953 CXXCtorInitializer(Context, TInfo, IsBaseVirtual, LParenLoc, Init, in readCXXCtorInitializers()
9957 CXXCtorInitializer(Context, TInfo, LParenLoc, Init, RParenLoc); in readCXXCtorInitializers()
9960 CXXCtorInitializer(Context, Member, MemberOrEllipsisLoc, LParenLoc, in readCXXCtorInitializers()
9965 LParenLoc, Init, RParenLoc); in readCXXCtorInitializers()
12541 D.LParenLoc = Record.readSourceLocation(); in VisitOMPUsesAllocatorsClause()
12676 SourceLocation LParenLoc = readSourceLocation(); in readOpenACCClause() local
12678 return OpenACCDefaultClause::Create(getContext(), DCK, BeginLoc, LParenLoc, in readOpenACCClause()
12682 SourceLocation LParenLoc = readSourceLocation(); in readOpenACCClause() local
12684 return OpenACCIfClause::Create(getContext(), BeginLoc, LParenLoc, CondExpr, in readOpenACCClause()
[all …]

123