HomeSort by: relevance | last modified time | path
    Searched refs:LParenLoc (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
OpenMPClause.h 179 SourceLocation LParenLoc;
183 OMPVarListLocTy(SourceLocation StartLoc, SourceLocation LParenLoc,
185 : StartLoc(StartLoc), LParenLoc(LParenLoc), EndLoc(EndLoc) {}
195 SourceLocation LParenLoc;
205 /// \param LParenLoc Location of '('.
209 SourceLocation LParenLoc, SourceLocation EndLoc, unsigned N)
210 : OMPClause(K, StartLoc, EndLoc), LParenLoc(LParenLoc), NumVars(N) {}
248 void setLParenLoc(SourceLocation Loc) { LParenLoc = Loc;
    [all...]
TypeLoc.h 1109 SourceLocation LParenLoc;
1118 return this->getLocalData()->LParenLoc;
1126 this->getLocalData()->LParenLoc = Loc;
1345 SourceLocation LParenLoc;
1387 return this->getLocalData()->LParenLoc;
1391 this->getLocalData()->LParenLoc = Loc;
1897 SourceLocation LParenLoc;
1921 return this->getLocalData()->LParenLoc;
1925 this->getLocalData()->LParenLoc = Loc;
1999 SourceLocation KWLoc, LParenLoc, RParenLoc
    [all...]
ExprObjC.h 1633 SourceLocation LParenLoc;
1638 ObjCBridgedCastExpr(SourceLocation LParenLoc, ObjCBridgeCastKind Kind,
1643 LParenLoc(LParenLoc), BridgeKeywordLoc(BridgeKeywordLoc), Kind(Kind) {}
1649 SourceLocation getLParenLoc() const { return LParenLoc; }
1662 SourceLocation getBeginLoc() const LLVM_READONLY { return LParenLoc; }
ExprCXX.h 1730 SourceLocation LParenLoc;
1736 FPOptionsOverride FPO, SourceLocation lParenLoc,
1740 LParenLoc(lParenLoc), RParenLoc(rParenLoc) {
1766 SourceLocation getLParenLoc() const { return LParenLoc; }
1767 void setLParenLoc(SourceLocation L) { LParenLoc = L; }
1772 bool isListInitialization() const { return LParenLoc.isInvalid(); }
3438 SourceLocation LParenLoc;
3444 SourceLocation LParenLoc, ArrayRef<Expr *> Args,
3455 SourceLocation LParenLoc,
    [all...]
Stmt.h 1932 SourceLocation LParenLoc;
1954 VarDecl *Var, Expr *Cond, SourceLocation LParenLoc,
2096 SourceLocation getLParenLoc() const { return LParenLoc; }
2097 void setLParenLoc(SourceLocation Loc) { LParenLoc = Loc; }
2147 SourceLocation LParenLoc;
2163 SourceLocation LParenLoc, SourceLocation RParenLoc);
2171 Expr *Cond, SourceLocation LParenLoc,
2260 SourceLocation getLParenLoc() const { return LParenLoc; }
2261 void setLParenLoc(SourceLocation Loc) { LParenLoc = Loc; }
2334 SourceLocation LParenLoc, RParenLoc
    [all...]
Expr.h 3330 /// LParenLoc - If non-null, this is the location of the left paren in a
3333 SourceLocation LParenLoc;
3341 CompoundLiteralExpr(SourceLocation lparenloc, TypeSourceInfo *tinfo,
3344 LParenLoc(lparenloc), TInfoAndScope(tinfo, fileScope), Init(init) {
3359 SourceLocation getLParenLoc() const { return LParenLoc; }
3360 void setLParenLoc(SourceLocation L) { LParenLoc = L; }
3373 if (LParenLoc.isInvalid())
3375 return LParenLoc;
4273 SourceLocation LParenLoc, RParenLoc
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
VariadicMacroSupport.h 86 void sawVAOptFollowedByOpeningParens(const SourceLocation LParenLoc) {
88 UnmatchedOpeningParens.push_back(LParenLoc);
107 void sawOpeningParen(SourceLocation LParenLoc) {
109 UnmatchedOpeningParens.push_back(LParenLoc);
  /src/external/apache2/llvm/dist/clang/lib/AST/
OpenMPClause.cpp 326 SourceLocation LParenLoc,
330 new (Mem) OMPOrderedClause(Num, NumLoops, StartLoc, LParenLoc, EndLoc);
382 SourceLocation LParenLoc, SourceLocation ArgumentLoc,
389 Clause->setLParenLoc(LParenLoc);
415 SourceLocation LParenLoc, SourceLocation EndLoc,
420 new (Mem) OMPPrivateClause(StartLoc, LParenLoc, EndLoc, VL.size());
446 SourceLocation LParenLoc, SourceLocation EndLoc,
451 new (Mem) OMPFirstprivateClause(StartLoc, LParenLoc, EndLoc, VL.size());
494 const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc,
501 StartLoc, LParenLoc, EndLoc, LPKind, LPKindLoc, ColonLoc, VL.size())
    [all...]
Stmt.cpp 912 : Stmt(IfStmtClass), LParenLoc(LPL), RParenLoc(RPL) {
1009 : Stmt(ForStmtClass), LParenLoc(LP), RParenLoc(RP)
1039 Expr *Cond, SourceLocation LParenLoc,
1041 : Stmt(SwitchStmtClass), FirstCase(nullptr), LParenLoc(LParenLoc),
1067 Expr *Cond, SourceLocation LParenLoc,
1074 return new (Mem) SwitchStmt(Ctx, Init, Var, Cond, LParenLoc, RParenLoc);
1107 Stmt *Body, SourceLocation WL, SourceLocation LParenLoc,
1119 setLParenLoc(LParenLoc);
1130 SourceLocation LParenLoc,
    [all...]
ExprCXX.cpp 1325 SourceLocation LParenLoc,
1334 TSI(TSI), LParenLoc(LParenLoc), RParenLoc(RParenLoc) {
1343 const ASTContext &Context, QualType T, TypeSourceInfo *TSI, SourceLocation LParenLoc,
1347 CXXUnresolvedConstructExpr(T, TSI, LParenLoc, Args, RParenLoc);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TreeTransform.h 1324 SourceLocation LParenLoc, Sema::ConditionResult Cond,
1327 return getSema().ActOnIfStmt(IfLoc, IsConstexpr, LParenLoc, Init, Cond,
1336 SourceLocation LParenLoc, Stmt *Init,
1339 return getSema().ActOnStartOfSwitchStmt(SwitchLoc, LParenLoc, Init, Cond,
1356 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, SourceLocation LParenLoc,
1359 return getSema().ActOnWhileStmt(WhileLoc, LParenLoc, Cond, RParenLoc, Body);
1367 SourceLocation WhileLoc, SourceLocation LParenLoc,
1369 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc,
1377 StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
1381 return getSema().ActOnForStmt(ForLoc, LParenLoc, Init, Cond
    [all...]
SemaOpenMP.cpp 6727 SourceLocation LParenLoc,
6806 NewCall = BuildCallExpr(Scope, BestExpr, LParenLoc, ArgExprs, RParenLoc,
12778 SourceLocation LParenLoc,
12783 Res = ActOnOpenMPFinalClause(Expr, StartLoc, LParenLoc, EndLoc);
12786 Res = ActOnOpenMPNumThreadsClause(Expr, StartLoc, LParenLoc, EndLoc);
12789 Res = ActOnOpenMPSafelenClause(Expr, StartLoc, LParenLoc, EndLoc);
12792 Res = ActOnOpenMPSimdlenClause(Expr, StartLoc, LParenLoc, EndLoc);
12795 Res = ActOnOpenMPAllocatorClause(Expr, StartLoc, LParenLoc, EndLoc);
12798 Res = ActOnOpenMPCollapseClause(Expr, StartLoc, LParenLoc, EndLoc);
12801 Res = ActOnOpenMPOrderedClause(StartLoc, EndLoc, LParenLoc, Expr)
    [all...]
SemaTemplateVariadic.cpp 1186 ExprResult Sema::ActOnCXXFoldExpr(Scope *S, SourceLocation LParenLoc, Expr *LHS,
1246 return BuildCXXFoldExpr(ULE, LParenLoc, LHS, Opc, EllipsisLoc, RHS, RParenLoc,
1251 SourceLocation LParenLoc, Expr *LHS,
1257 CXXFoldExpr(Context.DependentTy, Callee, LParenLoc, LHS, Operator,
SemaExprObjC.cpp 1162 SourceLocation LParenLoc,
1170 getLocForEndOfToken(LParenLoc));
1177 SourceLocation LParenLoc,
1194 << Method->getSelector() << FixItHint::CreateInsertion(LParenLoc, "(")
1208 SourceLocation LParenLoc,
1219 if (HelperToDiagnoseMismatchedMethodsInGlobalPool(S, AtLoc, LParenLoc, RParenLoc,
1225 if (HelperToDiagnoseMismatchedMethodsInGlobalPool(S, AtLoc, LParenLoc, RParenLoc,
1296 SourceLocation LParenLoc,
1300 SourceRange(LParenLoc, RParenLoc));
1303 SourceRange(LParenLoc, RParenLoc))
    [all...]
SemaObjCProperty.cpp 173 SourceLocation LParenLoc,
197 Res = HandlePropertyInClassExtension(S, AtLoc, LParenLoc,
210 Res = CreatePropertyDecl(S, ClassDecl, AtLoc, LParenLoc, FD,
307 SourceLocation LParenLoc, SourceLocation &Loc) {
308 if (LParenLoc.isMacroID())
312 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(LParenLoc);
407 SourceLocation LParenLoc,
512 ObjCPropertyDecl *PDecl = CreatePropertyDecl(S, CDecl, AtLoc, LParenLoc,
561 SourceLocation LParenLoc,
618 LParenLoc, T, TInfo)
    [all...]
DeclSpec.cpp 162 SourceLocation LParenLoc,
198 I.Fun.LParenLoc = LParenLoc;
SemaStmt.cpp 862 SourceLocation LParenLoc, Stmt *InitStmt,
892 << SourceRange(IfLoc, LParenLoc.getLocWithOffset(-1));
911 return BuildIfStmt(IfLoc, IsConstexpr, LParenLoc, InitStmt, Cond, RParenLoc,
916 SourceLocation LParenLoc, Stmt *InitStmt,
927 Cond.get().second, LParenLoc, RParenLoc, thenStmt,
1054 SourceLocation LParenLoc,
1079 LParenLoc, RParenLoc);
1647 SourceLocation LParenLoc, ConditionResult Cond,
1663 WhileLoc, LParenLoc, RParenLoc);
2093 StmtResult Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
    [all...]
SemaExpr.cpp 5072 ExprResult Sema::ActOnOMPArrayShapingExpr(Expr *Base, SourceLocation LParenLoc,
5090 LParenLoc, RParenLoc, Dims, Brackets);
5144 LParenLoc, RParenLoc, NewDims, Brackets);
6345 ExprResult Sema::ActOnCallExpr(Scope *Scope, Expr *Fn, SourceLocation LParenLoc,
6349 BuildCallExpr(Scope, Fn, LParenLoc, ArgExprs, RParenLoc, ExecConfig,
6367 Call = ActOnOpenMPCall(Call, Scope, LParenLoc, ArgExprs, RParenLoc,
6376 ExprResult Sema::BuildCallExpr(Scope *Scope, Expr *Fn, SourceLocation LParenLoc,
6428 return BuildCallToObjectOfClassType(Scope, Fn, LParenLoc, ArgExprs,
6438 return BuildCallToMemberFunction(Scope, Fn, LParenLoc, ArgExprs,
6455 Scope, Fn, ULE, LParenLoc, ArgExprs, RParenLoc, ExecConfig
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 3814 SourceLocation LParenLoc,
3858 SourceLocation LParenLoc,
3863 BuildCallToObjectOfClassType(Scope *S, Expr *Object, SourceLocation LParenLoc,
4384 SourceLocation LParenLoc,
4402 SourceLocation LParenLoc,
4663 SourceLocation LParenLoc, Stmt *InitStmt,
4667 SourceLocation LParenLoc, Stmt *InitStmt,
4671 SourceLocation LParenLoc, Stmt *InitStmt,
4676 StmtResult ActOnWhileStmt(SourceLocation WhileLoc, SourceLocation LParenLoc,
4684 SourceLocation LParenLoc,
    [all...]
Initialization.h 622 SourceLocation LParenLoc,
625 InitLoc, LParenLoc, RParenLoc);
682 SourceLocation LParenLoc,
686 InitLoc, LParenLoc, RParenLoc);
DeclSpec.h 1305 SourceLocation LParenLoc;
1422 SourceLocation getLParenLoc() const { return LParenLoc; }
1626 SourceLocation LParenLoc,
1686 static DeclaratorChunk getParen(SourceLocation LParenLoc,
1690 I.Loc = LParenLoc;
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPMacroExpansion.cpp 1163 SourceLocation LParenLoc = Tok.getLocation();
1167 PP.Diag(LParenLoc, diag::err_pp_directive_required) << II;
1183 LParenLoc = PP.getLocForEndOfToken(LParenLoc);
1184 PP.Diag(LParenLoc, diag::err_pp_expected_after) << II << tok::l_paren;
1191 LParenLoc = Tok.getLocation();
1217 PP.Diag(LParenLoc, diag::note_matching) << tok::l_paren;
1309 SourceLocation LParenLoc = Tok.getLocation();
1387 PP.Diag(LParenLoc, diag::note_matching) << tok::l_paren;
1812 SourceLocation LParenLoc = Tok.getLocation()
    [all...]
PPExpressions.cpp 111 SourceLocation LParenLoc;
114 LParenLoc = PeekTok.getLocation();
144 if (LParenLoc.isValid()) {
152 PP.Diag(LParenLoc, diag::note_matching) << tok::l_paren;
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExpr.cpp 2269 SourceLocation LParenLoc = PP.getLocForEndOfToken(OpTok.getLocation());
2271 if (LParenLoc.isInvalid() || RParenLoc.isInvalid()) {
2276 Diag(LParenLoc, diag::err_expected_parentheses_around_typename)
2277 << OpTok.getName() << FixItHint::CreateInsertion(LParenLoc, "(")
2299 SourceLocation LParenLoc = Tok.getLocation(), RParenLoc;
2303 CastRange = SourceRange(LParenLoc, RParenLoc);
2351 SourceLocation LParenLoc, RParenLoc;
2357 LParenLoc = T.getOpenLocation();
2372 LParenLoc = PP.getLocForEndOfToken(EllipsisLoc);
2374 Diag(LParenLoc, diag::err_paren_sizeof_parameter_pack
    [all...]
ParseExprCXX.cpp 1323 [&](SourceLocation LParenLoc, SourceLocation RParenLoc,
1384 /*IsAmbiguous=*/false, LParenLoc, ParamInfo.data(),
1392 /*DeclsInPrototype=*/None, LParenLoc, FunLocalRangeEnd, D,
1404 SourceLocation LParenLoc = T.getOpenLocation();
1428 ParseLambdaSpecifiers(LParenLoc, /*DeclEndLoc=*/T.getCloseLocation(),
1450 ParseLambdaSpecifiers(/*LParenLoc=*/NoLoc, /*RParenLoc=*/NoLoc,
1563 SourceLocation LParenLoc, RParenLoc;
1569 LParenLoc = T.getOpenLocation();
1599 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/true,
1613 Result = Actions.ActOnCXXTypeid(OpLoc, LParenLoc, /*isType=*/false
    [all...]

Completed in 66 milliseconds

1 2