Searched defs:ParenRange (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/Parse/
H A DParser.cpp107 /// \param ParenRange Source range enclosing code that should be parenthesized.
109 SourceRange ParenRange) {
110 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
111 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
119 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
108 SuggestParentheses(SourceLocation Loc, unsigned DK, SourceRange ParenRange) argument
/external/clang/lib/Sema/
H A DSemaInit.cpp6113 SourceRange ParenRange = Kind.getParenRange(); local
6114 return S.ActOnParenListExpr(ParenRange.getBegin(), ParenRange.getEnd(),
H A DSemaDeclCXX.cpp11306 SourceRange ParenRange) {
11329 ConstructKind, ParenRange);
11343 SourceRange ParenRange) {
11350 ParenRange);
11298 BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, CXXConstructorDecl *Constructor, MultiExprArg ExprArgs, bool HadMultipleCandidates, bool IsListInitialization, bool IsStdInitListInitialization, bool RequiresZeroInit, unsigned ConstructKind, SourceRange ParenRange) argument
11335 BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, CXXConstructorDecl *Constructor, bool Elidable, MultiExprArg ExprArgs, bool HadMultipleCandidates, bool IsListInitialization, bool IsStdInitListInitialization, bool RequiresZeroInit, unsigned ConstructKind, SourceRange ParenRange) argument
H A DSemaExpr.cpp6500 /// ParenRange in parentheses.
6503 SourceRange ParenRange) {
6504 SourceLocation EndLoc = Self.getLocForEndOfToken(ParenRange.getEnd());
6505 if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() &&
6508 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
6512 Self.Diag(Loc, Note) << ParenRange;
6501 SuggestParentheses(Sema &Self, SourceLocation Loc, const PartialDiagnostic &Note, SourceRange ParenRange) argument
H A DTreeTransform.h2629 SourceRange ParenRange) {
2641 ParenRange);
2619 RebuildCXXConstructExpr(QualType T, SourceLocation Loc, CXXConstructorDecl *Constructor, bool IsElidable, MultiExprArg Args, bool HadMultipleCandidates, bool ListInitialization, bool StdInitListInitialization, bool RequiresZeroInit, CXXConstructExpr::ConstructionKind ConstructKind, SourceRange ParenRange) argument

Completed in 183 milliseconds