| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ComputeDependence.h | 83 class PredefinedExpr; variable 172 ExprDependence computeDependence(PredefinedExpr *E);
|
| H A D | StmtDataCollectors.td | 28 class PredefinedExpr {
|
| H A D | TextNodeDumper.h | 256 void VisitPredefinedExpr(const PredefinedExpr *Node);
|
| H A D | JSONNodeDumper.h | 270 void VisitPredefinedExpr(const PredefinedExpr *PE);
|
| H A D | Expr.h | 1946 class PredefinedExpr final 1948 private llvm::TrailingObjects<PredefinedExpr, Stmt *> { 1971 PredefinedExpr(SourceLocation L, QualType FNTy, IdentKind IK, 1974 explicit PredefinedExpr(EmptyShell Empty, bool HasFunctionName); 1987 static PredefinedExpr *Create(const ASTContext &Ctx, SourceLocation L, 1991 static PredefinedExpr *CreateEmpty(const ASTContext &Ctx,
|
| H A D | Stmt.h | 350 friend class PredefinedExpr; in alignas() local
|
| H A D | RecursiveASTVisitor.h | 2680 DEF_TRAVERSE_STMT(PredefinedExpr, {})
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | VTableBuilder.cpp | 1952 PredefinedExpr::ComputeName(PredefinedExpr::PrettyFunctionNoVirtual, in dumpLayout() 2032 PredefinedExpr::ComputeName(PredefinedExpr::PrettyFunctionNoVirtual, in dumpLayout() 2111 PredefinedExpr::ComputeName(PredefinedExpr::PrettyFunctionNoVirtual, in dumpLayout() 2177 PredefinedExpr::ComputeName(PredefinedExpr::PrettyFunctionNoVirtual, in dumpLayout() 3173 std::string Str = PredefinedExpr::ComputeName( in dumpLayout() 3174 PredefinedExpr::PrettyFunctionNoVirtual, MD); in dumpLayout() 3228 std::string MethodName = PredefinedExpr::ComputeName( in dumpLayout() 3229 PredefinedExpr::PrettyFunctionNoVirtual, MD); in dumpLayout() 3662 std::string MethodName = PredefinedExpr::ComputeName( in dumpMethodLocations() 3663 PredefinedExpr::PrettyFunctionNoVirtual, MD); in dumpMethodLocations()
|
| H A D | Expr.cpp | 573 PredefinedExpr::PredefinedExpr(SourceLocation L, QualType FNTy, IdentKind IK, in PredefinedExpr() function in PredefinedExpr 587 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName) in PredefinedExpr() function in PredefinedExpr 592 PredefinedExpr *PredefinedExpr::Create(const ASTContext &Ctx, SourceLocation L, in Create() 597 alignof(PredefinedExpr)); in Create() 598 return new (Mem) PredefinedExpr(L, FNTy, IK, SL); in Create() 601 PredefinedExpr *PredefinedExpr::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() 604 alignof(PredefinedExpr)); in CreateEmpty() 605 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName); in CreateEmpty() 608 StringRef PredefinedExpr::getIdentKindName(PredefinedExpr::IdentKind IK) { in getIdentKindName() 635 if (IK == PredefinedExpr::FuncDName) { in ComputeName() [all …]
|
| H A D | JSONNodeDumper.cpp | 1212 void JSONNodeDumper::VisitPredefinedExpr(const PredefinedExpr *PE) { in VisitPredefinedExpr() 1213 JOS.attribute("name", PredefinedExpr::getIdentKindName(PE->getIdentKind())); in VisitPredefinedExpr()
|
| H A D | TextNodeDumper.cpp | 1067 void TextNodeDumper::VisitPredefinedExpr(const PredefinedExpr *Node) { in VisitPredefinedExpr() 1068 OS << " " << PredefinedExpr::getIdentKindName(Node->getIdentKind()); in VisitPredefinedExpr()
|
| H A D | ComputeDependence.cpp | 563 ExprDependence clang::computeDependence(PredefinedExpr *E) { in computeDependence()
|
| H A D | StmtPrinter.cpp | 1097 void StmtPrinter::VisitPredefinedExpr(PredefinedExpr *Node) { in VisitPredefinedExpr() 1098 OS << PredefinedExpr::getIdentKindName(Node->getIdentKind()); in VisitPredefinedExpr()
|
| H A D | StmtProfile.cpp | 1210 void StmtProfiler::VisitPredefinedExpr(const PredefinedExpr *S) { in VisitPredefinedExpr()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 59 def PredefinedExpr : StmtNode<Expr>;
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | SValBuilder.cpp | 324 const auto *PE = cast<PredefinedExpr>(E); in getConstantVal()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 966 const internal::VariadicDynCastAllOfMatcher<Stmt, PredefinedExpr>
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExprConstant.cpp | 1783 ConstantLValue VisitPredefinedExpr(const PredefinedExpr *E); 1973 ConstantLValueEmitter::VisitPredefinedExpr(const PredefinedExpr *E) { in VisitPredefinedExpr()
|
| H A D | CGExpr.cpp | 1332 return EmitPredefinedLValue(cast<PredefinedExpr>(E)); in EmitLValue() 2947 LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) { in EmitPredefinedLValue() 2954 PredefinedExpr::getIdentKindName(E->getIdentKind()), FnName}; in EmitPredefinedLValue()
|
| H A D | CGExprAgg.cpp | 147 void VisitPredefinedExpr(const PredefinedExpr *E) { in VisitPredefinedExpr()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExpr.cpp | 3468 PredefinedExpr::IdentKind IK) { in BuildPredefinedExpr() 3492 auto Str = PredefinedExpr::ComputeName(IK, currentDecl); in BuildPredefinedExpr() 3496 if (IK == PredefinedExpr::LFunction || IK == PredefinedExpr::LFuncSig) { in BuildPredefinedExpr() 3517 return PredefinedExpr::Create(Context, Loc, ResTy, IK, SL); in BuildPredefinedExpr() 3543 PredefinedExpr::IdentKind IK; in ActOnPredefinedExpr() 3547 case tok::kw___func__: IK = PredefinedExpr::Func; break; // [C99 6.4.2.2] in ActOnPredefinedExpr() 3548 case tok::kw___FUNCTION__: IK = PredefinedExpr::Function; break; in ActOnPredefinedExpr() 3549 case tok::kw___FUNCDNAME__: IK = PredefinedExpr::FuncDName; break; // [MS] in ActOnPredefinedExpr() 3550 case tok::kw___FUNCSIG__: IK = PredefinedExpr::FuncSig; break; // [MS] in ActOnPredefinedExpr() 3551 case tok::kw_L__FUNCTION__: IK = PredefinedExpr::LFunction; break; // [MS] in ActOnPredefinedExpr() [all …]
|
| H A D | SemaTemplateInstantiate.cpp | 1080 ExprResult TransformPredefinedExpr(PredefinedExpr *E); 1424 TemplateInstantiator::TransformPredefinedExpr(PredefinedExpr *E) { in TransformPredefinedExpr()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 594 void ASTStmtReader::VisitPredefinedExpr(PredefinedExpr *E) { in VisitPredefinedExpr() 2824 S = PredefinedExpr::CreateEmpty( in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 594 void ASTStmtWriter::VisitPredefinedExpr(PredefinedExpr *E) { in VisitPredefinedExpr()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 2671 extern const internal::VariadicDynCastAllOfMatcher<Stmt, PredefinedExpr>
|