HomeSort by relevance Sort by last modified time
    Searched refs:isa (Results 226 - 250 of 451) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/Sema/
SemaLookup.cpp 309 isa<FunctionTemplateDecl>((*begin())->getUnderlyingDecl())));
338 if (isa<FunctionTemplateDecl>(D))
340 else if (isa<UnresolvedUsingValueDecl>(D))
387 if (isa<UnresolvedUsingValueDecl>(D)) {
389 } else if (isa<TagDecl>(D)) {
394 } else if (isa<FunctionTemplateDecl>(D)) {
397 } else if (isa<FunctionDecl>(D)) {
664 !isa<CXXRecordDecl>(DC))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 417 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
425 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
434 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
589 bool isAddress = isa<LoadInst>(Inst);
770 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
782 if (!isa<SCEVUnknown>(Reg) &&
783 !isa<SCEVConstant>(Reg) &&
784 !(isa<SCEVAddRecExpr>(Reg) &&
785 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
786 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart())))
    [all...]
ObjCARC.cpp 174 if (isa<Constant>(Op) || isa<AllocaInst>(Op))
184 if (!Ty || isa<FunctionType>(Ty->getElementType()))
514 if (isa<CallInst>(V) || isa<InvokeInst>(V) ||
515 isa<Argument>(V) || isa<Constant>(V) ||
516 isa<AllocaInst>(V))
    [all...]
LoopInstSimplify.cpp 121 if (IsSubloopHeader && !isa<PHINode>(I))
  /external/clang/examples/clang-interpreter/
main.cpp 97 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) {
  /external/clang/include/clang/Analysis/Visitors/
CFGStmtVisitor.h 97 if (isa<Expr>(S))
  /external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp 172 if (isa<ObjCAtFinallyStmt>(S))
TransUnbridgedCasts.cpp 188 if (isa<ParenExpr>(E->getSubExpr())) {
228 } while (parent && isa<ExprWithCleanups>(parent));
  /external/clang/lib/AST/
TemplateName.cpp 86 if (isa<TemplateTemplateParmDecl>(Template))
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 88 assert(isa<llvm::PointerType>(V->getType()) && "Arg type not PointerType");
CGObjC.cpp 102 if (isa<MemberExpr>(receiver) || isa<ObjCIvarRefExpr>(receiver))
234 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
278 bool isCategory = isa<ObjCCategoryImplDecl>(impl);
596 assert(isa<ExprWithCleanups>(getter));
798 assert(isa<ExprWithCleanups>(setter));
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ObjCMessage.cpp 116 isLVal = isa<ObjCMessageExpr>(Msg.getOriginExpr()) &&
ExplodedGraph.cpp 94 if (!isa<PostStmt>(progPoint))
101 if (isa<BinaryOperator>(ps.getStmt()))
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 286 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
325 if (isa<ConstantPointerNull>(SI->getOperand(0)))
456 if (isa<LoadInst>(*II)) {
462 } else if (isa<StoreInst>(*II)) {
  /external/llvm/lib/MC/
MCExpr.cpp 87 if (isa<MCConstantExpr>(BE.getLHS()) || isa<MCSymbolRefExpr>(BE.getLHS())) {
126 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) {
  /external/llvm/lib/Transforms/IPO/
PartialInlining.cpp 62 if (isa<ReturnInst>((*SI)->getTerminator())) {
  /external/skia/include/core/
SkColorPriv.h 335 unsigned isa = 255 - SkGetPackedA32(src); local
337 dr = (sr + SkMul16ShiftRound(dr, isa, SK_R16_BITS)) >> (8 - SK_R16_BITS);
338 dg = (sg + SkMul16ShiftRound(dg, isa, SK_G16_BITS)) >> (8 - SK_G16_BITS);
339 db = (sb + SkMul16ShiftRound(db, isa, SK_B16_BITS)) >> (8 - SK_B16_BITS);
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 580 InetSocketAddress isa = (InetSocketAddress) sa; local
581 return isa.getAddress();
590 InetSocketAddress isa = (InetSocketAddress) sa; local
591 return isa.getPort();
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
edd.h 89 } __attribute__ ((packed)) isa; member in union:edd_device_params::__anon20949
  /external/clang/include/clang/Sema/
Lookup.h 426 return getResultKind() == Found && isa<TagDecl>(getFoundDecl());
589 if (isa<UnresolvedUsingValueDecl>(*I))
  /external/clang/lib/Frontend/
ASTConsumers.cpp 79 if (isa<FunctionDecl>(D) || isa<ObjCMethodDecl>(D)) {
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 128 && !isa<ConstantPointerNull>(V);
148 if (!isa<Function>(Callee) && isInterestingPointer(Callee))
MemoryDependenceAnalysis.cpp 218 if (isa<DbgInfoIntrinsic>(Inst)) continue;
280 if (!isa<IntegerType>(LI->getType()) || !LI->isSimple()) return 0;
359 if (isa<DbgInfoIntrinsic>(II)) continue;
471 if (isa<AllocaInst>(Inst) ||
472 (isa<CallInst>(Inst) && extractMallocCall(Inst))) {
547 } else if (isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst)) {
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 173 if (isa<ConstantPoolSDNode>(LoVal.getOperand(0)) ||
174 isa<GlobalAddressSDNode>(LoVal.getOperand(0))) {
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 276 isa<MCBinaryExpr>(MI->getOperand(OpNo).getExpr())) {
293 isa<MCBinaryExpr>(MI->getOperand(OpNo).getExpr())) {

Completed in 773 milliseconds

1 2 3 4 5 6 7 8 91011>>