Home
last modified time | relevance | path

Searched refs:PredefinedExpr (Results 1 – 25 of 34) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DComputeDependence.h86 class PredefinedExpr; variable
178 ExprDependence computeDependence(PredefinedExpr *E);
H A DIgnoreExpr.h169 else if (auto *PE = dyn_cast<PredefinedExpr>(E)) { in IgnoreParensSingleStep()
H A DStmtDataCollectors.td28 class PredefinedExpr {
H A DTextNodeDumper.h266 void VisitPredefinedExpr(const PredefinedExpr *Node);
H A DJSONNodeDumper.h283 void VisitPredefinedExpr(const PredefinedExpr *PE);
H A DExpr.h1961 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 DStmt.h405 friend class PredefinedExpr; in alignas() local
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp607 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 DVTableBuilder.cpp1959 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 DJSONNodeDumper.cpp1318 void JSONNodeDumper::VisitPredefinedExpr(const PredefinedExpr *PE) { in VisitPredefinedExpr()
1319 JOS.attribute("name", PredefinedExpr::getIdentKindName(PE->getIdentKind())); in VisitPredefinedExpr()
H A DTextNodeDumper.cpp1204 void TextNodeDumper::VisitPredefinedExpr(const PredefinedExpr *Node) { in VisitPredefinedExpr()
1205 OS << " " << PredefinedExpr::getIdentKindName(Node->getIdentKind()); in VisitPredefinedExpr()
H A DComputeDependence.cpp599 ExprDependence clang::computeDependence(PredefinedExpr *E) { in computeDependence()
H A DStmtPrinter.cpp1257 void StmtPrinter::VisitPredefinedExpr(PredefinedExpr *Node) { in VisitPredefinedExpr()
1258 OS << PredefinedExpr::getIdentKindName(Node->getIdentKind()); in VisitPredefinedExpr()
H A DStmtProfile.cpp1331 void StmtProfiler::VisitPredefinedExpr(const PredefinedExpr *S) { in VisitPredefinedExpr()
H A DExprConstant.cpp2230 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 DByteCodeExprGen.h102 bool VisitPredefinedExpr(const PredefinedExpr *E);
H A DByteCodeExprGen.cpp1616 bool ByteCodeExprGen<Emitter>::VisitPredefinedExpr(const PredefinedExpr *E) { in VisitPredefinedExpr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td59 def PredefinedExpr : StmtNode<Expr>;
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp354 const auto *PE = cast<PredefinedExpr>(E); in getConstantVal()
/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp992 const internal::VariadicDynCastAllOfMatcher<Stmt, PredefinedExpr>
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp1841 ConstantLValue VisitPredefinedExpr(const PredefinedExpr *E);
2024 ConstantLValueEmitter::VisitPredefinedExpr(const PredefinedExpr *E) { in VisitPredefinedExpr()
H A DCGExprAgg.cpp155 void VisitPredefinedExpr(const PredefinedExpr *E) { in VisitPredefinedExpr()
H A DCGExpr.cpp1576 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 DSemaTemplateInstantiate.cpp1393 ExprResult TransformPredefinedExpr(PredefinedExpr *E);
1834 TemplateInstantiator::TransformPredefinedExpr(PredefinedExpr *E) { in TransformPredefinedExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp588 void ASTStmtReader::VisitPredefinedExpr(PredefinedExpr *E) { in VisitPredefinedExpr()
2984 S = PredefinedExpr::CreateEmpty( in ReadStmtFromStream()

12