HomeSort by relevance Sort by last modified time
    Searched refs:CXXConstructExpr (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypePropagation.cpp 72 case CXXConstructExpr::CK_Complete:
73 case CXXConstructExpr::CK_Delegating:
76 case CXXConstructExpr::CK_NonVirtualBase:
77 case CXXConstructExpr::CK_VirtualBase:
155 case CXXConstructExpr::CK_Complete:
156 case CXXConstructExpr::CK_Delegating:
163 case CXXConstructExpr::CK_NonVirtualBase:
164 case CXXConstructExpr::CK_VirtualBase:
LLVMConventionsChecker.cpp 165 CXXConstructExpr *Ex2 = dyn_cast<CXXConstructExpr>(Ex1->getSubExpr());
171 CXXConstructExpr *Ex4 = dyn_cast<CXXConstructExpr>(Ex3->getSubExpr());
DeadStoresChecker.cpp 339 if (isa<CXXConstructExpr>(E))
  /external/chromium_org/tools/clang/empty_string/
EmptyStringConverter.cpp 128 const clang::CXXConstructExpr* call =
129 result.Nodes.getNodeAs<clang::CXXConstructExpr>("call");
141 const clang::CXXConstructExpr* call =
142 result.Nodes.getNodeAs<clang::CXXConstructExpr>("call");
152 const clang::CXXConstructExpr* call =
153 result.Nodes.getNodeAs<clang::CXXConstructExpr>("call");
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 107 const CXXConstructExpr *CE, ExplodedNode *Pred, ExprEngine &Eng,
177 void ExprEngine::VisitCXXConstructExpr(const CXXConstructExpr *CE,
190 case CXXConstructExpr::CK_Complete: {
194 case CXXConstructExpr::CK_VirtualBase:
198 const CXXConstructExpr *OuterCtor = dyn_cast<CXXConstructExpr>(Outer);
201 case CXXConstructExpr::CK_NonVirtualBase:
202 case CXXConstructExpr::CK_VirtualBase:
206 case CXXConstructExpr::CK_Complete:
207 case CXXConstructExpr::CK_Delegating
    [all...]
ExprEngineCallAndReturn.cpp 193 /// Returns true if the CXXConstructExpr \p E was intended to construct a
199 static bool isTemporaryPRValue(const CXXConstructExpr *E, SVal V) {
264 // Bind the constructed object value to CXXConstructExpr.
265 if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(CE)) {
558 if (isTemporaryPRValue(cast<CXXConstructExpr>(E), ThisV))
621 const CXXConstructExpr *CtorExpr = Ctor.getOriginExpr();
642 if (CtorExpr->getConstructionKind() == CXXConstructExpr::CK_Complete)
    [all...]
CallEvent.cpp 239 || isa<CXXConstructExpr>(S)
    [all...]
ExprEngineC.cpp 421 if (isa<CXXConstructExpr>(Init)) {
473 if (isa<CXXConstructExpr>(InitEx->IgnoreImplicit())) {
478 // We bound the temp obj region to the CXXConstructExpr. Now recover
    [all...]
  /external/clang/unittests/AST/
SourceLocationTest.cpp 214 TEST(CXXConstructExpr, SourceRange) {
215 RangeVerifier<CXXConstructExpr> Verifier;
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 355 CodeGenFunction::EmitCXXConstructExpr(const CXXConstructExpr *E,
366 case CXXConstructExpr::CK_Delegating:
367 case CXXConstructExpr::CK_Complete:
370 case CXXConstructExpr::CK_VirtualBase:
371 case CXXConstructExpr::CK_NonVirtualBase:
403 case CXXConstructExpr::CK_Delegating:
409 case CXXConstructExpr::CK_Complete:
413 case CXXConstructExpr::CK_VirtualBase:
417 case CXXConstructExpr::CK_NonVirtualBase:
433 assert(isa<CXXConstructExpr>(Exp) &&
    [all...]
CGObjC.cpp 773 if (const CXXConstructExpr *construct = dyn_cast<CXXConstructExpr>(getter))
    [all...]
CGClass.cpp 569 CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(MemberInit->getInit());
    [all...]
  /external/clang/tools/libclang/
IndexBody.cpp 122 bool VisitCXXConstructExpr(CXXConstructExpr *E) {
  /external/clang/lib/AST/
ExprCXX.cpp 485 SourceLocation CXXConstructExpr::getLocStart() const {
491 SourceLocation CXXConstructExpr::getLocEnd() const {
813 : CXXConstructExpr(C, CXXTemporaryObjectExprClass,
    [all...]
DeclPrinter.cpp 528 } else if (CXXConstructExpr *Construct
529 = dyn_cast<CXXConstructExpr>(Init)) {
682 if (CXXConstructExpr *Construct =
683 dyn_cast<CXXConstructExpr>(Init->IgnoreImplicit())) {
    [all...]
ASTDumper.cpp 334 void VisitCXXConstructExpr(const CXXConstructExpr *Node);
    [all...]
Expr.cpp     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 33 class CXXConstructExpr;
418 void VisitCXXConstructExpr(const CXXConstructExpr *E, ExplodedNode *Pred,
CallEvent.h 698 CXXConstructorCall(const CXXConstructExpr *CE, const MemRegion *Target,
710 virtual const CXXConstructExpr *getOriginExpr() const {
711 return cast<CXXConstructExpr>(AnyFunctionCall::getOriginExpr());
    [all...]
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 74 isa<CXXConstructExpr>(Expr) ||
JumpDiagnostics.cpp 182 // will be the CXXConstructExpr with no intervening nodes.
183 if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init)) {
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 744 CXXConstructExpr> constructExpr;
    [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp 502 } else if (const CXXConstructExpr *CE =
503 dyn_cast<CXXConstructExpr>(DeclExp)) {
    [all...]
  /external/clang/unittests/Tooling/
RecursiveASTVisitorTest.cpp 460 /// CXXConstructExpr.
463 /// is invoked by the CXXConstructExpr, not the name of the class whose
464 /// constructor the CXXConstructExpr is contained in.
476 bool VisitCXXConstructExpr(CXXConstructExpr* Expr) {

Completed in 244 milliseconds

1 2 3