HomeSort by relevance Sort by last modified time
    Searched full:dyn_cast (Results 301 - 325 of 502) sorted by null

<<11121314151617181920>>

  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 63 if (nonloc::ConcreteInt* CI = dyn_cast<nonloc::ConcreteInt>(&val)) {
225 if (nonloc::LocAsInteger *LV = dyn_cast<nonloc::LocAsInteger>(&val)) {
ExprEngine.cpp 38 using llvm::dyn_cast;
108 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
130 dyn_cast<DefinedOrUnknownSVal>(&Constraint_untested);
141 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
148 if (const Loc *LV = dyn_cast<Loc>(&V)) {
432 if (const Expr *Ex = dyn_cast<Expr>(S))
769 if (Expr* LastExpr = dyn_cast<Expr>(*SE->getSubStmt()->body_rbegin())) {
901 const Expr *Ex = dyn_cast<Expr>(Condition);
908 while (const CastExpr *CE = dyn_cast<CastExpr>(Ex)) {
956 if (const Expr *Ex = dyn_cast<Expr>(Condition))
    [all...]
  /external/llvm/include/llvm/
Metadata.h 64 /// Methods for support type inquiry through isa, cast, and dyn_cast:
159 /// Methods for support type inquiry through isa, cast, and dyn_cast:
  /external/llvm/include/llvm/Support/
CallSite.h 62 if (InstrTy *II = dyn_cast<InstrTy>(V)) {
95 return dyn_cast<FunTy>(getCalledValue());
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 166 BranchInst * BI = dyn_cast<BranchInst>(BB->getTerminator());
171 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 527 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
529 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
694 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
707 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
720 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
733 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
774 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 272 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
325 if (const Instruction *I = dyn_cast<Instruction>(V)) {
334 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
339 if (PointerType *Ty = dyn_cast<PointerType>(V->getType()))
378 if (const ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
402 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
412 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
467 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
472 if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
576 if (const Instruction *I = dyn_cast<Instruction>(V))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 82 if (PHINode *PN = dyn_cast<PHINode>(UseInst)) {
156 if (LoadInst *L = dyn_cast<LoadInst>(Inst)) {
  /external/llvm/lib/VMCore/
ValueTypes.cpp 80 if (IntegerType *ITy = dyn_cast<IntegerType>(LLVMTy))
82 if (VectorType *VTy = dyn_cast<VectorType>(LLVMTy))
  /external/clang/lib/Sema/
SemaExpr.cpp 87 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
168 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
179 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
189 } else if (VarDecl *V = dyn_cast<VarDecl>(D)) {
196 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) {
295 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts()))
    [all...]
SemaInit.cpp 47 StringLiteral *SL = dyn_cast<StringLiteral>(Init);
81 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
99 if (StringLiteral *SL = dyn_cast<StringLiteral>(Str)) {
308 = dyn_cast<InitListExpr>(ILE->getInit(Init)))
365 if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType))
430 = dyn_cast<InitListExpr>(ILE->getInit(Init)))
678 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 221 while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) {
235 llvm::BranchInst *BI = dyn_cast<llvm::BranchInst>(BB->getTerminator());
461 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
535 if (llvm::ConstantInt *C = dyn_cast<llvm::ConstantInt>(BoolCondVal))
914 const CaseStmt *NextCase = dyn_cast<CaseStmt>(S.getSubStmt());
922 NextCase = dyn_cast<CaseStmt>(CurCase->getSubStmt());
    [all...]
ModuleBuilder.cpp 81 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*M))
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
  /external/clang/include/clang/AST/
ASTConsumer.h 102 // Support isa/cast/dyn_cast
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 53 ref = dyn_cast<BlockDeclRefExpr>(castE->getSubExpr())) {
  /external/clang/lib/AST/
ExprConstant.cpp 138 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
141 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
146 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(E))
170 const DeclRefExpr* DeclRef = dyn_cast<DeclRefExpr>(Base);
499 } else if (const VarDecl* VD = dyn_cast<VarDecl>(E->getDecl())) {
533 const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl());
    [all...]
  /external/clang/lib/Analysis/
CocoaConventions.cpp 69 while (const TypedefType *TD = dyn_cast<TypedefType>(RetTy.getTypePtr())) {
  /external/clang/lib/Index/
CallGraph.cpp 76 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) {
Indexer.cpp 41 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 271 nonloc::ConcreteInt* V = dyn_cast<nonloc::ConcreteInt>(&TheTypeVal);
289 loc::MemRegionVal* LV = dyn_cast<loc::MemRegionVal>(&TheValueExpr);
293 const TypedRegion* R = dyn_cast<TypedRegion>(LV->stripCasts());
391 DefinedSVal *DefArgVal = dyn_cast<DefinedSVal>(&ArgVal);
ChrootChecker.cpp 115 if (const StringRegion* StrRegion= dyn_cast<StringRegion>(R)) {
UndefBranchChecker.cpp 94 if (PostStmt* PS = dyn_cast<PostStmt>(&P))
VLASizeChecker.cpp 41 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
  /external/llvm/lib/Analysis/IPA/
FindUsedTypes.cpp 48 if (const Constant *C = dyn_cast<Constant>(V)) {

Completed in 842 milliseconds

<<11121314151617181920>>