Home
last modified time | relevance | path

Searched refs:getOpenLocation (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseInit.cpp243 SourceLocation StartLoc = T.getOpenLocation(); in ParseInitializerWithPotentialDesignator()
443 SourceLocation LBraceLoc = T.getOpenLocation(); in ParseBraceInitializer()
464 PreferredType.get(T.getOpenLocation()), in ParseBraceInitializer()
567 PreferredType.get(Braces.getOpenLocation()), in ParseMicrosoftIfExistsBraceInitializer()
H A DParseExprCXX.cpp833 Intro.Range.setBegin(T.getOpenLocation()); in ParseLambdaIntroducer()
1404 SourceLocation LParenLoc = T.getOpenLocation(); in ParseLambdaExpressionAfterIntroducer()
1569 LParenLoc = T.getOpenLocation(); in ParseCXXTypeid()
1661 Result = Actions.ActOnCXXUuidof(OpLoc, T.getOpenLocation(), in ParseCXXUuidof()
1881 DS.getEndLoc(), Exprs, T.getOpenLocation()); in ParseCXXTypeConstructExpression()
2542 SymbolLocations[SymbolIdx++] = T.getOpenLocation(); in ParseUnqualifiedIdOperator()
2567 SymbolLocations[SymbolIdx++] = T.getOpenLocation(); in ParseUnqualifiedIdOperator()
2581 SymbolLocations[SymbolIdx++] = T.getOpenLocation(); in ParseUnqualifiedIdOperator()
3063 PlacementLParen = T.getOpenLocation(); in ParseCXXNewExpression()
3126 ConstructorLParen = T.getOpenLocation(); in ParseCXXNewExpression()
[all …]
H A DParseExpr.cpp1694 Res = Actions.ActOnNoexceptExpr(KeyLoc, T.getOpenLocation(), Res.get(), in ParseCastExpression()
1902 Loc = T.getOpenLocation(); in ParsePostfixExpressionSuffix()
2013 Loc = PT.getOpenLocation(); in ParsePostfixExpressionSuffix()
2020 getCurScope(), LHS.get(), ArgExprs, PT.getOpenLocation()); in ParsePostfixExpressionSuffix()
2354 return Actions.ActOnSYCLUniqueStableNameExpr(OpLoc, T.getOpenLocation(), in ParseSYCLUniqueStableNameExpression()
2387 LParenLoc = T.getOpenLocation(); in ParseUnaryExprOrTypeTraitExpression()
2583 Comps.back().LocStart = ST.getOpenLocation(); in ParseBuiltinPrimaryExpression()
2802 SourceLocation OpenLoc = T.getOpenLocation(); in ParseParenExpression()
3328 return Actions.ActOnCXXFoldExpr(getCurScope(), T.getOpenLocation(), LHS.get(), in ParseFoldExpression()
H A DParseOpenMP.cpp469 SourceLocation LParLoc = T.getOpenLocation(); in ParseOpenMPReductionInitializerForDecl()
495 Actions.ActOnParenListExpr(T.getOpenLocation(), RLoc, Exprs); in ParseOpenMPReductionInitializerForDecl()
2700 ValExprs, ClauseNameLoc, T.getOpenLocation(), T.getCloseLocation()); in ParseOpenMPSizesClause()
2735 D.LParenLoc = T.getOpenLocation(); in ParseOpenMPUsesAllocatorClause()
2745 return Actions.ActOnOpenMPUsesAllocatorClause(Loc, T.getOpenLocation(), in ParseOpenMPUsesAllocatorClause()
3198 IsTargetSync, Loc, T.getOpenLocation(), in ParseOpenMPInteropClause()
3202 T.getOpenLocation(), VarLoc, RLoc); in ParseOpenMPInteropClause()
3206 T.getOpenLocation(), VarLoc, RLoc); in ParseOpenMPInteropClause()
3455 Kind, Arg, Val.get(), Loc, T.getOpenLocation(), KLoc, DelimLoc, RLoc); in ParseOpenMPSingleExprWithArgClause()
3629 SourceLocation LLoc = T.getOpenLocation(); in ParseOpenMPIteratorsExpr()
[all …]
H A DParseDeclCXX.cpp149 Diag(T.getOpenLocation(), diag::err_namespace_nonnamespace_scope); in ParseNamespace()
217 T.getOpenLocation(), attrs, ImplicitUsingDirectiveDecl); in ParseNamespace()
264 Tracker.getOpenLocation(), attrs, ImplicitUsingDirectiveDecl); in ParseInnerNamespace()
1019 return T.getOpenLocation() == Tok.getLocation() ? in ParseDecltypeSpecifier()
1020 StartLoc : T.getOpenLocation(); in ParseDecltypeSpecifier()
3470 T.getOpenLocation()); in ParseCXXMemberSpecification()
3502 T.getOpenLocation(), in ParseCXXMemberSpecification()
3717 T.getOpenLocation()); in ParseMemInitializer()
3741 T.getOpenLocation(), ArgExprs, in ParseMemInitializer()
H A DParseStmt.cpp1169 return Actions.ActOnCompoundStmt(T.getOpenLocation(), CloseLoc, in ParseCompoundStatementBody()
1223 *LParenLoc = T.getOpenLocation(); in ParseParenExprOrCondition()
1731 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
2116 return Actions.ActOnForStmt(ForLoc, T.getOpenLocation(), FirstPart.get(), in ParseForStatement()
H A DParseDecl.cpp2400 ThisDecl->getLocation(), Exprs, T.getOpenLocation()); in ParseDeclarationAfterDeclaratorAndAttributes()
2420 ThisDecl->getLocation(), Exprs, T.getOpenLocation()); in ParseDeclarationAfterDeclaratorAndAttributes()
2434 ExprResult Initializer = Actions.ActOnParenListExpr(T.getOpenLocation(), in ParseDeclarationAfterDeclaratorAndAttributes()
2854 ExprResult ArgExpr = ParseAlignArgument(T.getOpenLocation(), EllipsisLoc); in ParseAlignmentSpecifier()
4385 T.getOpenLocation(), T.getCloseLocation(), attrs); in ParseStructUnionBody()
6326 return D.setDecompositionBindings(T.getOpenLocation(), Bindings, in ParseDecompositionDeclarator()
6412 DeclaratorChunk::getParen(T.getOpenLocation(), T.getCloseLocation()), in ParseParenDeclarator()
6538 LParenLoc = Tracker.getOpenLocation(); in ParseFunctionDeclarator()
7048 T.getOpenLocation(), in ParseBracketDeclarator()
7064 T.getOpenLocation(), in ParseBracketDeclarator()
[all …]
H A DParseObjc.cpp1880 T.getOpenLocation(), T.getCloseLocation(), in HelperActionsForIvarDeclarations()
3404 SourceLocation LPLoc = T.getOpenLocation(), RPLoc = T.getCloseLocation(); in ParseObjCBoxedExpr()
3541 return Actions.ParseObjCEncodeExpression(AtLoc, EncLoc, T.getOpenLocation(), in ParseObjCEncodeExpression()
3566 T.getOpenLocation(), ProtoIdLoc, in ParseObjCProtocolExpression()
3632 T.getOpenLocation(), in ParseObjCSelectorExpression()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h427 SourceLocation getOpenLocation() const { return LOpen; } in getOpenLocation() function