Home
last modified time | relevance | path

Searched refs:SourceExpr (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h947 Expr *SourceExpr; variable
952 Expr *SourceExpr = nullptr)
955 (SourceExpr && SourceExpr->isTypeDependent()),
957 (SourceExpr && SourceExpr->isValueDependent()),
959 (SourceExpr && SourceExpr->isInstantiationDependent()),
961 SourceExpr(SourceExpr) {
978 return SourceExpr ? SourceExpr->getBeginLoc() : getLocation(); in getBeginLoc()
981 return SourceExpr ? SourceExpr->getEndLoc() : getLocation(); in getEndLoc()
984 return SourceExpr ? SourceExpr->getExprLoc() : getLocation(); in getExprLoc()
1003 Expr *getSourceExpr() const { return SourceExpr; } in getSourceExpr()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOverload.cpp10967 Expr* SourceExpr; member in __anon832832a01811::AddressOfFunctionResolver
10987 AddressOfFunctionResolver(Sema &S, Expr *SourceExpr, in AddressOfFunctionResolver() argument
10989 : S(S), SourceExpr(SourceExpr), TargetType(TargetType), in AddressOfFunctionResolver()
10996 OvlExprInfo(OverloadExpr::find(SourceExpr)), in AddressOfFunctionResolver()
11175 if (completeFunctionType(S, FunDecl, SourceExpr->getBeginLoc(), in AddMatchingNonTemplateFunction()
11251 SourceExpr->getBeginLoc(), S.PDiag(), in EliminateAllExceptMostSpecializedTemplate()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp1817 E->SourceExpr = Record.readSubExpr(); in VisitOpaqueValueExpr()