Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExprCXX.cpp236 Expr *Base, bool isArrow, SourceLocation OperatorLoc, in CXXPseudoDestructorExpr() argument
266 OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc), in CXXPseudoDestructorExpr()
1201 SourceLocation OperatorLoc, in CXXDependentScopeMemberExpr() argument
1217 OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc), in CXXDependentScopeMemberExpr()
1238 SourceLocation OperatorLoc, in CXXDependentScopeMemberExpr() argument
1251 OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc), in CXXDependentScopeMemberExpr()
1258 SourceLocation OperatorLoc, in Create() argument
1266 IsArrow, OperatorLoc, in Create()
1277 IsArrow, OperatorLoc, in Create()
1335 SourceLocation OperatorLoc, in UnresolvedMemberExpr() argument
[all …]
DExpr.cpp1323 SourceLocation OperatorLoc, in Create() argument
1332 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs, in Create()
1345 SourceLocation OperatorLoc, TypeSourceInfo *tsi, in OffsetOfExpr() argument
1353 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi), in OffsetOfExpr()
1417 const ASTContext &C, Expr *base, bool isarrow, SourceLocation OperatorLoc, in Create() argument
1437 MemberExpr(base, isarrow, OperatorLoc, memberdecl, nameinfo, ty, vk, ok); in Create()
/external/clang/include/clang/AST/
DExprCXX.h2069 SourceLocation OperatorLoc; variable
2093 Expr *Base, bool isArrow, SourceLocation OperatorLoc,
2127 SourceLocation getOperatorLoc() const { return OperatorLoc; } in getOperatorLoc()
3104 SourceLocation OperatorLoc; variable
3137 SourceLocation OperatorLoc,
3147 SourceLocation OperatorLoc,
3154 SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc,
3182 SourceLocation getOperatorLoc() const { return OperatorLoc; } in getOperatorLoc()
3362 SourceLocation OperatorLoc; variable
3366 SourceLocation OperatorLoc,
[all …]
DExpr.h1921 SourceLocation OperatorLoc, RParenLoc;
1930 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
1941 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
1949 SourceLocation getOperatorLoc() const { return OperatorLoc; } in getOperatorLoc()
1950 void setOperatorLoc(SourceLocation L) { OperatorLoc = L; } in setOperatorLoc()
1996 SourceLocation getLocStart() const LLVM_READONLY { return OperatorLoc; } in getLocStart()
2368 SourceLocation OperatorLoc; variable
2411 MemberLoc(NameInfo.getLoc()), OperatorLoc(operatorloc), in MemberExpr()
2428 OperatorLoc(operatorloc), IsArrow(isarrow), in MemberExpr()
2433 SourceLocation OperatorLoc,
[all …]
/external/clang/lib/Sema/
DDeclSpec.cpp1211 void UnqualifiedId::setOperatorFunctionId(SourceLocation OperatorLoc, in setOperatorFunctionId() argument
1215 StartLocation = OperatorLoc; in setOperatorFunctionId()
1216 EndLocation = OperatorLoc; in setOperatorFunctionId()
DTreeTransform.h1936 SourceLocation OperatorLoc,
1958 ExprResult RebuildOffsetOfExpr(SourceLocation OperatorLoc, in RebuildOffsetOfExpr() argument
1962 return getSema().BuildBuiltinOffsetOf(OperatorLoc, Type, Components, in RebuildOffsetOfExpr()
2679 SourceLocation OperatorLoc, in RebuildCXXDependentScopeMemberExpr() argument
2689 OperatorLoc, IsArrow, in RebuildCXXDependentScopeMemberExpr()
2701 SourceLocation OperatorLoc, in RebuildUnresolvedMemberExpr() argument
2712 OperatorLoc, IsArrow, in RebuildUnresolvedMemberExpr()
2727 ExprResult RebuildSizeOfPackExpr(SourceLocation OperatorLoc, in RebuildSizeOfPackExpr() argument
2733 return SizeOfPackExpr::Create(SemaRef.Context, OperatorLoc, Pack, PackLoc, in RebuildSizeOfPackExpr()
11516 SourceLocation OperatorLoc, in RebuildCXXPseudoDestructorExpr() argument
[all …]
/external/clang/include/clang/Sema/
DDeclSpec.h984 void setOperatorFunctionId(SourceLocation OperatorLoc,
996 void setConversionFunctionId(SourceLocation OperatorLoc, in setConversionFunctionId() argument
1000 StartLocation = OperatorLoc; in setConversionFunctionId()
DSema.h5443 AccessResult CheckAllocationAccess(SourceLocation OperatorLoc,
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1427 E->OperatorLoc = ReadSourceLocation(Record, Idx); in VisitCXXPseudoDestructorExpr()
1462 E->OperatorLoc = ReadSourceLocation(Record, Idx); in VisitCXXDependentScopeMemberExpr()
1518 E->OperatorLoc = ReadSourceLocation(Record, Idx); in VisitUnresolvedMemberExpr()
1579 E->OperatorLoc = ReadSourceLocation(Record, Idx); in VisitSizeOfPackExpr()
2742 SourceLocation OperatorLoc = ReadSourceLocation(F, Record, Idx); in ReadStmtFromStream() local
2744 S = MemberExpr::Create(Context, Base, IsArrow, OperatorLoc, QualifierLoc, in ReadStmtFromStream()
DASTWriterStmt.cpp1584 Writer.AddSourceLocation(E->OperatorLoc, Record); in VisitSizeOfPackExpr()