/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprCXX.cpp | 373 SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, in CXXPseudoDestructorExpr() argument 379 OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc), in CXXPseudoDestructorExpr() 594 SourceLocation OperatorLoc, in CXXOperatorCallExpr() argument 598 OperatorLoc, FPFeatures, /*MinNumArgs=*/0, UsesADL) { 615 ExprValueKind VK, SourceLocation OperatorLoc, in Create() argument 623 return new (Mem) CXXOperatorCallExpr(OpKind, Fn, Args, Ty, VK, OperatorLoc, in Create() 1494 SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, in CXXDependentScopeMemberExpr() argument 1507 CXXDependentScopeMemberExprBits.OperatorLoc = OperatorLoc; in CXXDependentScopeMemberExpr() 1536 SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, in Create() argument 1551 Ctx, Base, BaseType, IsArrow, OperatorLoc, QualifierLoc, TemplateKWLoc, in Create() [all …]
|
H A D | Expr.cpp | 1658 SourceLocation OperatorLoc, in Create() argument 1666 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs, in Create() 1678 SourceLocation OperatorLoc, TypeSourceInfo *tsi, in OffsetOfExpr() argument 1682 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi), in OffsetOfExpr() 1714 MemberExpr::MemberExpr(Expr *Base, bool IsArrow, SourceLocation OperatorLoc, in MemberExpr() argument 1735 MemberExprBits.OperatorLoc = OperatorLoc; in MemberExpr() 1755 const ASTContext &C, Expr *Base, bool IsArrow, SourceLocation OperatorLoc, in Create() argument 1771 return new (Mem) MemberExpr(Base, IsArrow, OperatorLoc, QualifierLoc, in Create()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ExprCXX.h | 94 SourceLocation OperatorLoc, FPOptionsOverride FPFeatures, 103 SourceLocation OperatorLoc, FPOptionsOverride FPFeatures, 2628 SourceLocation OperatorLoc; variable 2650 Expr *Base, bool isArrow, SourceLocation OperatorLoc, 2683 SourceLocation getOperatorLoc() const { return OperatorLoc; } in getOperatorLoc() 3743 SourceLocation OperatorLoc, 3756 SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, 3789 return CXXDependentScopeMemberExprBits.OperatorLoc; in getOperatorLoc() 3957 SourceLocation OperatorLoc; variable 3975 SourceLocation OperatorLoc, [all …]
|
H A D | Expr.h | 2476 SourceLocation OperatorLoc, RParenLoc; variable 2489 SourceLocation OperatorLoc, TypeSourceInfo *tsi, 2500 SourceLocation OperatorLoc, TypeSourceInfo *tsi, 2508 SourceLocation getOperatorLoc() const { return OperatorLoc; } in getOperatorLoc() 2509 void setOperatorLoc(SourceLocation L) { OperatorLoc = L; } in setOperatorLoc() 2555 SourceLocation getBeginLoc() const LLVM_READONLY { return OperatorLoc; } in getBeginLoc() 3226 MemberExpr(Expr *Base, bool IsArrow, SourceLocation OperatorLoc, 3237 SourceLocation OperatorLoc, 3369 SourceLocation getOperatorLoc() const { return MemberExprBits.OperatorLoc; } in getOperatorLoc()
|
H A D | Stmt.h | 614 SourceLocation OperatorLoc; 1034 SourceLocation OperatorLoc;
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | DeclSpec.cpp | 1504 void UnqualifiedId::setOperatorFunctionId(SourceLocation OperatorLoc, in setOperatorFunctionId() argument 1508 StartLocation = OperatorLoc; in setOperatorFunctionId() 1509 EndLocation = OperatorLoc; in setOperatorFunctionId()
|
H A D | TreeTransform.h | 2700 SourceLocation OperatorLoc, 2722 ExprResult RebuildOffsetOfExpr(SourceLocation OperatorLoc, in RebuildOffsetOfExpr() argument 2726 return getSema().BuildBuiltinOffsetOf(OperatorLoc, Type, Components, in RebuildOffsetOfExpr() 3579 SourceLocation OperatorLoc, in RebuildCXXDependentScopeMemberExpr() argument 3589 OperatorLoc, IsArrow, in RebuildCXXDependentScopeMemberExpr() 3601 SourceLocation OperatorLoc, in RebuildUnresolvedMemberExpr() argument 3612 OperatorLoc, IsArrow, in RebuildUnresolvedMemberExpr() 3627 ExprResult RebuildSizeOfPackExpr(SourceLocation OperatorLoc, NamedDecl *Pack, in RebuildSizeOfPackExpr() argument 3632 return SizeOfPackExpr::Create(SemaRef.Context, OperatorLoc, Pack, PackLoc, in RebuildSizeOfPackExpr() 16431 SourceLocation OperatorLoc, in RebuildCXXPseudoDestructorExpr() argument [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | DeclSpec.h | 1128 void setOperatorFunctionId(SourceLocation OperatorLoc, 1140 void setConversionFunctionId(SourceLocation OperatorLoc, in setConversionFunctionId() argument 1144 StartLocation = OperatorLoc; in setConversionFunctionId()
|
H A D | Sema.h | 1355 AccessResult CheckAllocationAccess(SourceLocation OperatorLoc,
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 1061 E->MemberExprBits.OperatorLoc = Record.readSourceLocation(); in VisitMemberExpr() 1955 E->OperatorLoc = readSourceLocation(); in VisitCXXPseudoDestructorExpr() 2023 E->CXXDependentScopeMemberExprBits.OperatorLoc = readSourceLocation(); in VisitCXXDependentScopeMemberExpr() 2106 E->OperatorLoc = readSourceLocation(); in VisitUnresolvedMemberExpr() 2169 E->OperatorLoc = readSourceLocation(); in VisitSizeOfPackExpr()
|
H A D | ASTWriterStmt.cpp | 2169 Record.AddSourceLocation(E->OperatorLoc); in VisitSizeOfPackExpr()
|