Home
last modified time | relevance | path

Searched refs:OperatorLoc (Results 1 – 10 of 10) sorted by relevance

/external/clang/lib/AST/
DExprCXX.cpp163 Expr *Base, bool isArrow, SourceLocation OperatorLoc, in CXXPseudoDestructorExpr() argument
193 OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc), in CXXPseudoDestructorExpr()
1110 SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, in CXXDependentScopeMemberExpr() argument
1124 OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc), in CXXDependentScopeMemberExpr()
1145 SourceLocation OperatorLoc, in Create() argument
1159 IsArrow, OperatorLoc, in Create()
1213 SourceLocation OperatorLoc, in UnresolvedMemberExpr() argument
1231 Base(Base), BaseType(BaseType), OperatorLoc(OperatorLoc) { in UnresolvedMemberExpr()
1248 bool IsArrow, SourceLocation OperatorLoc, in Create() argument
1260 C, HasUnresolvedUsing, Base, BaseType, IsArrow, OperatorLoc, QualifierLoc, in Create()
[all …]
DExpr.cpp1311 SourceLocation OperatorLoc, in Create() argument
1319 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs, in Create()
1331 SourceLocation OperatorLoc, TypeSourceInfo *tsi, in OffsetOfExpr() argument
1339 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi), in OffsetOfExpr()
1403 const ASTContext &C, Expr *base, bool isarrow, SourceLocation OperatorLoc, in Create() argument
1422 MemberExpr(base, isarrow, OperatorLoc, memberdecl, nameinfo, ty, vk, ok); in Create()
/external/clang/include/clang/AST/
DExprCXX.h2138 SourceLocation OperatorLoc; variable
2162 Expr *Base, bool isArrow, SourceLocation OperatorLoc,
2196 SourceLocation getOperatorLoc() const { return OperatorLoc; } in getOperatorLoc()
3150 SourceLocation OperatorLoc; variable
3176 SourceLocation OperatorLoc,
3186 SourceLocation OperatorLoc,
3193 SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc,
3221 SourceLocation getOperatorLoc() const { return OperatorLoc; } in getOperatorLoc()
3388 SourceLocation OperatorLoc; variable
3396 SourceLocation OperatorLoc,
[all …]
DExpr.h1877 SourceLocation OperatorLoc, RParenLoc; variable
1890 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
1901 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
1909 SourceLocation getOperatorLoc() const { return OperatorLoc; } in getOperatorLoc()
1910 void setOperatorLoc(SourceLocation L) { OperatorLoc = L; } in setOperatorLoc()
1956 SourceLocation getLocStart() const LLVM_READONLY { return OperatorLoc; } in getLocStart()
2336 SourceLocation OperatorLoc; variable
2374 MemberLoc(NameInfo.getLoc()), OperatorLoc(operatorloc), in MemberExpr()
2391 OperatorLoc(operatorloc), IsArrow(isarrow), in MemberExpr()
2396 SourceLocation OperatorLoc,
[all …]
/external/clang/lib/Sema/
DDeclSpec.cpp1238 void UnqualifiedId::setOperatorFunctionId(SourceLocation OperatorLoc, in setOperatorFunctionId() argument
1242 StartLocation = OperatorLoc; in setOperatorFunctionId()
1243 EndLocation = OperatorLoc; in setOperatorFunctionId()
DTreeTransform.h2009 SourceLocation OperatorLoc,
2031 ExprResult RebuildOffsetOfExpr(SourceLocation OperatorLoc, in RebuildOffsetOfExpr() argument
2035 return getSema().BuildBuiltinOffsetOf(OperatorLoc, Type, Components, in RebuildOffsetOfExpr()
2763 SourceLocation OperatorLoc, in RebuildCXXDependentScopeMemberExpr() argument
2773 OperatorLoc, IsArrow, in RebuildCXXDependentScopeMemberExpr()
2785 SourceLocation OperatorLoc, in RebuildUnresolvedMemberExpr() argument
2796 OperatorLoc, IsArrow, in RebuildUnresolvedMemberExpr()
2811 ExprResult RebuildSizeOfPackExpr(SourceLocation OperatorLoc, in RebuildSizeOfPackExpr() argument
2817 return SizeOfPackExpr::Create(SemaRef.Context, OperatorLoc, Pack, PackLoc, in RebuildSizeOfPackExpr()
11862 SourceLocation OperatorLoc, in RebuildCXXPseudoDestructorExpr() argument
[all …]
/external/clang/include/clang/Sema/
DDeclSpec.h1003 void setOperatorFunctionId(SourceLocation OperatorLoc,
1015 void setConversionFunctionId(SourceLocation OperatorLoc, in setConversionFunctionId() argument
1019 StartLocation = OperatorLoc; in setConversionFunctionId()
DSema.h5567 AccessResult CheckAllocationAccess(SourceLocation OperatorLoc,
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1440 E->OperatorLoc = ReadSourceLocation(Record, Idx); in VisitCXXPseudoDestructorExpr()
1479 E->OperatorLoc = ReadSourceLocation(Record, Idx); in VisitCXXDependentScopeMemberExpr()
1538 E->OperatorLoc = ReadSourceLocation(Record, Idx); in VisitUnresolvedMemberExpr()
1599 E->OperatorLoc = ReadSourceLocation(Record, Idx); in VisitSizeOfPackExpr()
3044 SourceLocation OperatorLoc = ReadSourceLocation(F, Record, Idx); in ReadStmtFromStream() local
3046 S = MemberExpr::Create(Context, Base, IsArrow, OperatorLoc, QualifierLoc, in ReadStmtFromStream()
DASTWriterStmt.cpp1604 Record.AddSourceLocation(E->OperatorLoc); in VisitSizeOfPackExpr()