Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DVTableBuilder.cpp1952 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 DExpr.cpp507 PredefinedExpr::PredefinedExpr(SourceLocation L, QualType FNTy, IdentKind IK, in PredefinedExpr() function in PredefinedExpr
521 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName) in PredefinedExpr() function in PredefinedExpr
526 PredefinedExpr *PredefinedExpr::Create(const ASTContext &Ctx, SourceLocation L, in Create()
531 alignof(PredefinedExpr)); in Create()
532 return new (Mem) PredefinedExpr(L, FNTy, IK, SL); in Create()
535 PredefinedExpr *PredefinedExpr::CreateEmpty(const ASTContext &Ctx, in CreateEmpty()
538 alignof(PredefinedExpr)); in CreateEmpty()
539 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName); in CreateEmpty()
542 StringRef PredefinedExpr::getIdentKindName(PredefinedExpr::IdentKind IK) { in getIdentKindName()
566 std::string PredefinedExpr::ComputeName(IdentKind IK, const Decl *CurrentDecl) { in ComputeName()
[all …]
H A DJSONNodeDumper.cpp1167 void JSONNodeDumper::VisitPredefinedExpr(const PredefinedExpr *PE) { in VisitPredefinedExpr()
1168 JOS.attribute("name", PredefinedExpr::getIdentKindName(PE->getIdentKind())); in VisitPredefinedExpr()
H A DTextNodeDumper.cpp1021 void TextNodeDumper::VisitPredefinedExpr(const PredefinedExpr *Node) { in VisitPredefinedExpr()
1022 OS << " " << PredefinedExpr::getIdentKindName(Node->getIdentKind()); in VisitPredefinedExpr()
H A DComputeDependence.cpp559 ExprDependence clang::computeDependence(PredefinedExpr *E) { in computeDependence()
H A DStmtPrinter.cpp1084 void StmtPrinter::VisitPredefinedExpr(PredefinedExpr *Node) { in VisitPredefinedExpr()
1085 OS << PredefinedExpr::getIdentKindName(Node->getIdentKind()); in VisitPredefinedExpr()
H A DStmtProfile.cpp1193 void StmtProfiler::VisitPredefinedExpr(const PredefinedExpr *S) { in VisitPredefinedExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DComputeDependence.h81 class PredefinedExpr; variable
168 ExprDependence computeDependence(PredefinedExpr *E);
H A DStmtDataCollectors.td28 class PredefinedExpr {
H A DTextNodeDumper.h252 void VisitPredefinedExpr(const PredefinedExpr *Node);
H A DJSONNodeDumper.h266 void VisitPredefinedExpr(const PredefinedExpr *PE);
H A DExpr.h1949 class PredefinedExpr final
1951 private llvm::TrailingObjects<PredefinedExpr, Stmt *> {
1974 PredefinedExpr(SourceLocation L, QualType FNTy, IdentKind IK,
1977 explicit PredefinedExpr(EmptyShell Empty, bool HasFunctionName);
1990 static PredefinedExpr *Create(const ASTContext &Ctx, SourceLocation L,
1994 static PredefinedExpr *CreateEmpty(const ASTContext &Ctx,
H A DStmt.h350 friend class PredefinedExpr; variable
H A DRecursiveASTVisitor.h2654 DEF_TRAVERSE_STMT(PredefinedExpr, {})
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td59 def PredefinedExpr : StmtNode<Expr>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp310 const auto *PE = cast<PredefinedExpr>(E); in getConstantVal()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp965 const internal::VariadicDynCastAllOfMatcher<Stmt, PredefinedExpr>
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprConstant.cpp1783 ConstantLValue VisitPredefinedExpr(const PredefinedExpr *E);
1973 ConstantLValueEmitter::VisitPredefinedExpr(const PredefinedExpr *E) { in VisitPredefinedExpr()
H A DCGExpr.cpp1332 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 DCGExprAgg.cpp147 void VisitPredefinedExpr(const PredefinedExpr *E) { in VisitPredefinedExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp3457 PredefinedExpr::IdentKind IK) { in BuildPredefinedExpr()
3481 auto Str = PredefinedExpr::ComputeName(IK, currentDecl); in BuildPredefinedExpr()
3485 if (IK == PredefinedExpr::LFunction || IK == PredefinedExpr::LFuncSig) { in BuildPredefinedExpr()
3506 return PredefinedExpr::Create(Context, Loc, ResTy, IK, SL); in BuildPredefinedExpr()
3510 PredefinedExpr::IdentKind IK; in ActOnPredefinedExpr()
3514 case tok::kw___func__: IK = PredefinedExpr::Func; break; // [C99 6.4.2.2] in ActOnPredefinedExpr()
3515 case tok::kw___FUNCTION__: IK = PredefinedExpr::Function; break; in ActOnPredefinedExpr()
3516 case tok::kw___FUNCDNAME__: IK = PredefinedExpr::FuncDName; break; // [MS] in ActOnPredefinedExpr()
3517 case tok::kw___FUNCSIG__: IK = PredefinedExpr::FuncSig; break; // [MS] in ActOnPredefinedExpr()
3518 case tok::kw_L__FUNCTION__: IK = PredefinedExpr::LFunction; break; // [MS] in ActOnPredefinedExpr()
[all …]
H A DSemaTemplateInstantiate.cpp1080 ExprResult TransformPredefinedExpr(PredefinedExpr *E);
1424 TemplateInstantiator::TransformPredefinedExpr(PredefinedExpr *E) { in TransformPredefinedExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp584 void ASTStmtReader::VisitPredefinedExpr(PredefinedExpr *E) { in VisitPredefinedExpr()
2806 S = PredefinedExpr::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp583 void ASTStmtWriter::VisitPredefinedExpr(PredefinedExpr *E) { in VisitPredefinedExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2659 extern const internal::VariadicDynCastAllOfMatcher<Stmt, PredefinedExpr>

12