/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
H A D | AnalysisOrderChecker.cpp | 37 check::PostStmt<CXXConstructExpr>, check::PreStmt<OffsetOfExpr>, 38 check::PostStmt<OffsetOfExpr>, check::PreCall, check::PostCall, 115 void checkPreStmt(const OffsetOfExpr *OOE, CheckerContext &C) const { in checkPreStmt() 120 void checkPostStmt(const OffsetOfExpr *OOE, CheckerContext &C) const { in checkPostStmt()
|
/openbsd/gnu/llvm/clang/include/clang/AST/ |
H A D | ComputeDependence.h | 88 class OffsetOfExpr; variable 180 ExprDependence computeDependence(OffsetOfExpr *E);
|
H A D | EvaluatedExprVisitor.h | 45 void VisitOffsetOfExpr(PTR(OffsetOfExpr) E) { } in VisitOffsetOfExpr()
|
H A D | Expr.h | 2455 class OffsetOfExpr final 2457 private llvm::TrailingObjects<OffsetOfExpr, OffsetOfNode, Expr *> { 2470 OffsetOfExpr(const ASTContext &C, QualType type, 2475 explicit OffsetOfExpr(unsigned numComps, unsigned numExprs) in OffsetOfExpr() function 2481 static OffsetOfExpr *Create(const ASTContext &C, QualType type, 2486 static OffsetOfExpr *CreateEmpty(const ASTContext &C,
|
H A D | Stmt.h | 308 friend class OffsetOfExpr; // ctor in alignas() local
|
H A D | RecursiveASTVisitor.h | 2591 DEF_TRAVERSE_STMT(OffsetOfExpr, {
|
/openbsd/gnu/llvm/clang/include/clang/Tooling/Refactoring/ |
H A D | RecursiveSymbolVisitor.h | 72 bool VisitOffsetOfExpr(const OffsetOfExpr *S) { in VisitOffsetOfExpr()
|
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
H A D | CheckerHelpers.cpp | 70 if (isa<OffsetOfExpr>(S)) in containsBuiltinOffsetOf()
|
H A D | ExprEngineC.cpp | 855 VisitOffsetOfExpr(const OffsetOfExpr *OOE, in VisitOffsetOfExpr()
|
H A D | ExprEngine.cpp | 2320 VisitOffsetOfExpr(cast<OffsetOfExpr>(S), Node, PostVisit); in Visit()
|
/openbsd/gnu/llvm/clang/lib/AST/ |
H A D | Expr.cpp | 1639 OffsetOfExpr *OffsetOfExpr::Create(const ASTContext &C, QualType type, in Create() 1648 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs, in Create() 1652 OffsetOfExpr *OffsetOfExpr::CreateEmpty(const ASTContext &C, in CreateEmpty() 1656 return new (Mem) OffsetOfExpr(numComps, numExprs); in CreateEmpty() 1659 OffsetOfExpr::OffsetOfExpr(const ASTContext &C, QualType type, in OffsetOfExpr() function in OffsetOfExpr
|
H A D | ComputeDependence.cpp | 606 ExprDependence clang::computeDependence(OffsetOfExpr *E) { in computeDependence()
|
H A D | StmtProfile.cpp | 1356 void StmtProfiler::VisitOffsetOfExpr(const OffsetOfExpr *S) { in VisitOffsetOfExpr()
|
H A D | StmtPrinter.cpp | 1401 void StmtPrinter::VisitOffsetOfExpr(OffsetOfExpr *Node) { in VisitOffsetOfExpr()
|
H A D | ASTImporter.cpp | 650 ExpectedStmt VisitOffsetOfExpr(OffsetOfExpr *OE); 7568 ExpectedStmt ASTNodeImporter::VisitOffsetOfExpr(OffsetOfExpr *E) { in VisitOffsetOfExpr() 7626 return OffsetOfExpr::Create( in VisitOffsetOfExpr()
|
H A D | ExprConstant.cpp | 11056 bool VisitOffsetOfExpr(const OffsetOfExpr *E); 13415 bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) { in VisitOffsetOfExpr()
|
/openbsd/gnu/llvm/clang/lib/Index/ |
H A D | IndexBody.cpp | 450 bool VisitOffsetOfExpr(OffsetOfExpr *S) { in VisitOffsetOfExpr()
|
/openbsd/gnu/llvm/clang/include/clang/Basic/ |
H A D | StmtNodes.td | 70 def OffsetOfExpr : StmtNode<Expr>;
|
/openbsd/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | ExprEngine.h | 538 void VisitOffsetOfExpr(const OffsetOfExpr *Ex, ExplodedNode *Pred,
|
/openbsd/gnu/llvm/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 717 void ASTStmtReader::VisitOffsetOfExpr(OffsetOfExpr *E) { in VisitOffsetOfExpr() 2984 S = OffsetOfExpr::CreateEmpty(Context, in ReadStmtFromStream()
|
H A D | ASTWriterStmt.cpp | 743 void ASTStmtWriter::VisitOffsetOfExpr(OffsetOfExpr *E) { in VisitOffsetOfExpr()
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | CGExprScalar.cpp | 478 Value *VisitOffsetOfExpr(OffsetOfExpr *E); 2934 Value *ScalarExprEmitter::VisitOffsetOfExpr(OffsetOfExpr *E) { in VisitOffsetOfExpr()
|
/openbsd/gnu/llvm/clang/tools/libclang/ |
H A D | CIndex.cpp | 2123 void VisitOffsetOfExpr(const OffsetOfExpr *E); 2928 void EnqueueVisitor::VisitOffsetOfExpr(const OffsetOfExpr *E) { in VisitOffsetOfExpr()
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | TreeTransform.h | 10876 TreeTransform<Derived>::TransformOffsetOfExpr(OffsetOfExpr *E) { in TransformOffsetOfExpr()
|
H A D | SemaExpr.cpp | 16368 return OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, TInfo, in BuildBuiltinOffsetOf()
|