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.cpp6275 SourceRange ParenRange = Kind.getParenRange(); local
6276 return S.ActOnParenListExpr(ParenRange.getBegin(), ParenRange.getEnd(),
H A DSemaDeclCXX.cpp11441 SourceRange ParenRange) {
11466 ConstructKind, ParenRange);
11480 SourceRange ParenRange) {
11490 RequiresZeroInit, ConstructKind, ParenRange);
11505 SourceRange ParenRange) {
11517 ParenRange);
11432 BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, NamedDecl *FoundDecl, CXXConstructorDecl *Constructor, MultiExprArg ExprArgs, bool HadMultipleCandidates, bool IsListInitialization, bool IsStdInitListInitialization, bool RequiresZeroInit, unsigned ConstructKind, SourceRange ParenRange) argument
11470 BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, NamedDecl *FoundDecl, CXXConstructorDecl *Constructor, bool Elidable, MultiExprArg ExprArgs, bool HadMultipleCandidates, bool IsListInitialization, bool IsStdInitListInitialization, bool RequiresZeroInit, unsigned ConstructKind, SourceRange ParenRange) argument
11496 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.cpp6888 /// ParenRange in parentheses.
6891 SourceRange ParenRange) {
6892 SourceLocation EndLoc = Self.getLocForEndOfToken(ParenRange.getEnd());
6893 if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() &&
6896 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
6900 Self.Diag(Loc, Note) << ParenRange;
6889 SuggestParentheses(Sema &Self, SourceLocation Loc, const PartialDiagnostic &Note, SourceRange ParenRange) argument
H A DTreeTransform.h2702 SourceRange ParenRange) {
2715 ParenRange);
2692 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 190 milliseconds