| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ComputeDependence.h | 86 class PredefinedExpr; variable 178 ExprDependence computeDependence(PredefinedExpr *E);
|
| H A D | IgnoreExpr.h | 169 else if (auto *PE = dyn_cast<PredefinedExpr>(E)) { in IgnoreParensSingleStep()
|
| H A D | StmtDataCollectors.td | 28 class PredefinedExpr {
|
| H A D | TextNodeDumper.h | 266 void VisitPredefinedExpr(const PredefinedExpr *Node);
|
| H A D | JSONNodeDumper.h | 283 void VisitPredefinedExpr(const PredefinedExpr *PE);
|
| H A D | Expr.h | 1961 class PredefinedExpr final 1963 private llvm::TrailingObjects<PredefinedExpr, Stmt *> { 1971 PredefinedExpr(SourceLocation L, QualType FNTy, PredefinedIdentKind IK, 1974 explicit PredefinedExpr(EmptyShell Empty, bool HasFunctionName); 1990 static PredefinedExpr *Create(const ASTContext &Ctx, SourceLocation L, 1995 static PredefinedExpr *CreateEmpty(const ASTContext &Ctx,
|
| H A D | Stmt.h | 405 friend class PredefinedExpr; in alignas() local
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Expr.cpp | 607 PredefinedExpr::PredefinedExpr(SourceLocation L, QualType FNTy, in PredefinedExpr() function in PredefinedExpr 623 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName) in PredefinedExpr() function in PredefinedExpr 628 PredefinedExpr *PredefinedExpr::Create(const ASTContext &Ctx, SourceLocation L, in Create() 633 alignof(PredefinedExpr)); in Create() 634 return new (Mem) PredefinedExpr(L, FNTy, IK, IsTransparent, SL); in Create() 637 PredefinedExpr *PredefinedExpr::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() 640 alignof(PredefinedExpr)); in CreateEmpty() 641 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName); in CreateEmpty() 644 StringRef PredefinedExpr::getIdentKindName(PredefinedIdentKind IK) { in getIdentKindName() 668 std::string PredefinedExpr::ComputeName(PredefinedIdentKind IK, in ComputeName() [all …]
|
| H A D | VTableBuilder.cpp | 1959 std::string Str = PredefinedExpr::ComputeName( in dumpLayout() 2038 std::string Str = PredefinedExpr::ComputeName( in dumpLayout() 2116 std::string MethodName = PredefinedExpr::ComputeName( in dumpLayout() 2181 std::string MethodName = PredefinedExpr::ComputeName( in dumpLayout() 3175 std::string Str = PredefinedExpr::ComputeName( in dumpLayout() 3230 std::string MethodName = PredefinedExpr::ComputeName( in dumpLayout() 3662 std::string MethodName = PredefinedExpr::ComputeName( in dumpMethodLocations()
|
| H A D | JSONNodeDumper.cpp | 1318 void JSONNodeDumper::VisitPredefinedExpr(const PredefinedExpr *PE) { in VisitPredefinedExpr() 1319 JOS.attribute("name", PredefinedExpr::getIdentKindName(PE->getIdentKind())); in VisitPredefinedExpr()
|
| H A D | TextNodeDumper.cpp | 1204 void TextNodeDumper::VisitPredefinedExpr(const PredefinedExpr *Node) { in VisitPredefinedExpr() 1205 OS << " " << PredefinedExpr::getIdentKindName(Node->getIdentKind()); in VisitPredefinedExpr()
|
| H A D | ComputeDependence.cpp | 599 ExprDependence clang::computeDependence(PredefinedExpr *E) { in computeDependence()
|
| H A D | StmtPrinter.cpp | 1257 void StmtPrinter::VisitPredefinedExpr(PredefinedExpr *Node) { in VisitPredefinedExpr() 1258 OS << PredefinedExpr::getIdentKindName(Node->getIdentKind()); in VisitPredefinedExpr()
|
| H A D | StmtProfile.cpp | 1331 void StmtProfiler::VisitPredefinedExpr(const PredefinedExpr *S) { in VisitPredefinedExpr()
|
| H A D | ExprConstant.cpp | 2230 else if (auto *PE = dyn_cast_or_null<PredefinedExpr>(BaseE)) { in CheckLValueConstantExpression() 3445 if (auto PE = dyn_cast<PredefinedExpr>(Lit)) in extractStringLiteralCharacter() 4351 } else if (isa<StringLiteral>(Base) || isa<PredefinedExpr>(Base)) { in handleLValueToRValueConversion() 7690 bool VisitPredefinedExpr(const PredefinedExpr *E) { in VisitPredefinedExpr() 8431 bool VisitPredefinedExpr(const PredefinedExpr *E) { return Success(E); } in VisitPredefinedExpr()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | ByteCodeExprGen.h | 102 bool VisitPredefinedExpr(const PredefinedExpr *E);
|
| H A D | ByteCodeExprGen.cpp | 1616 bool ByteCodeExprGen<Emitter>::VisitPredefinedExpr(const PredefinedExpr *E) { in VisitPredefinedExpr()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 59 def PredefinedExpr : StmtNode<Expr>;
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | SValBuilder.cpp | 354 const auto *PE = cast<PredefinedExpr>(E); in getConstantVal()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 992 const internal::VariadicDynCastAllOfMatcher<Stmt, PredefinedExpr>
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExprConstant.cpp | 1841 ConstantLValue VisitPredefinedExpr(const PredefinedExpr *E); 2024 ConstantLValueEmitter::VisitPredefinedExpr(const PredefinedExpr *E) { in VisitPredefinedExpr()
|
| H A D | CGExprAgg.cpp | 155 void VisitPredefinedExpr(const PredefinedExpr *E) { in VisitPredefinedExpr()
|
| H A D | CGExpr.cpp | 1576 return EmitPredefinedLValue(cast<PredefinedExpr>(E)); in EmitLValueHelper() 3270 LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) { in EmitPredefinedLValue() 3277 PredefinedExpr::getIdentKindName(E->getIdentKind()), FnName}; in EmitPredefinedLValue()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiate.cpp | 1393 ExprResult TransformPredefinedExpr(PredefinedExpr *E); 1834 TemplateInstantiator::TransformPredefinedExpr(PredefinedExpr *E) { in TransformPredefinedExpr()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 588 void ASTStmtReader::VisitPredefinedExpr(PredefinedExpr *E) { in VisitPredefinedExpr() 2984 S = PredefinedExpr::CreateEmpty( in ReadStmtFromStream()
|