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

1 23 4 5 6 7 8 91011>>

  /external/clang/lib/StaticAnalyzer/Core/
SVals.cpp 34 if (isa<SymbolConjured>(sym))
42 if (isa<SymbolConjured>(sym))
143 while (!isa<SymbolData>(itr.back())) expand();
148 assert(isa<SymbolData>(itr.back()));
151 while (!isa<SymbolData>(itr.back())) expand();
202 return isa<nonloc::ConcreteInt>(this) || isa<loc::ConcreteInt>(this);
206 if (isa<loc::ConcreteInt>(*this))
208 else if (isa<nonloc::ConcreteInt>(*this))
Store.cpp 71 if (isa<CodeTextRegion>(R) || isa<SymbolicRegion>(R))
280 if (Base.isUnknownOrUndef() || isa<loc::ConcreteInt>(Base))
307 if (!isa<nonloc::ConcreteInt>(BaseIdx))
315 if (!isa<nonloc::ConcreteInt>(Offset)) {
316 if (isa<ElementRegion>(BaseRegion->StripCasts()))
BugReporterVisitors.cpp 180 if (isa<loc::ConcreteInt>(V)) {
194 else if (isa<nonloc::ConcreteInt>(V)) {
198 if (isa<VarRegion>(R)) {
210 if (isa<loc::ConcreteInt>(V)) {
227 else if (isa<nonloc::ConcreteInt>(V)) {
282 if (isa<Loc>(Constraint)) {
335 if (isa<loc::ConcreteInt>(V) || isa<nonloc::ConcreteInt>(V)
351 while (R && !isa<SymbolicRegion>(R)) {
356 assert(isa<SymbolicRegion>(R))
    [all...]
ExprEngineCallAndReturn.cpp 89 if (isa<BlockDataRegion>(Callee))
101 else if (!isa<Loc>(V))
124 if (isa<VarRegion>(superReg) || isa<FieldRegion>(superReg) ||
125 isa<ObjCIvarRegion>(superReg))
  /external/clang/lib/Index/
ASTVisitor.h 83 if (isa<FunctionDecl>(D) || isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D))
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 81 if (isa<FunctionDecl>(D) || isa<ObjCMethodDecl>(D)) {
85 else if (isa<BlockDecl>(D)) {
MallocOverflowSecurityChecker.cpp 72 if (isa<BinaryOperator>(e)) {
91 else if (isa<DeclRefExpr>(e) || isa<MemberExpr>(e))
145 else if (isa<MemberExpr>(E)) {
150 if (isa<MemberExpr>(i->variable)) {
  /external/llvm/lib/Transforms/Utils/
UnifyFunctionExitNodes.cpp 56 if (isa<ReturnInst>(I->getTerminator()))
58 else if (isa<UnwindInst>(I->getTerminator()))
60 else if (isa<UnreachableInst>(I->getTerminator()))
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 159 if (isa<GlobalValue>(C)) return false;
185 if (!isa<PointerType>(CE->getType())) return true;
217 } else if (isa<LoadInst>(StoredVal) &&
234 } else if (isa<GetElementPtrInst>(I)) {
236 } else if (isa<SelectInst>(I)) {
244 } else if (isa<CmpInst>(I)) {
285 } else if (isa<ConstantAggregateZero>(Agg)) {
293 } else if (isa<UndefValue>(Agg)) {
347 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
390 if (isa<LoadInst>(I)) return true
    [all...]
PruneEH.cpp 104 if (CheckUnwind && (isa<UnwindInst>(BB->getTerminator()) ||
105 isa<ResumeInst>(BB->getTerminator()))) {
108 } else if (CheckReturn && isa<ReturnInst>(BB->getTerminator())) {
210 if (CI->doesNotReturn() && !isa<UnreachableInst>(I)) {
242 if (!isa<IntrinsicInst>(I))
  /external/clang/lib/AST/
DeclBase.cpp 133 return isa<FunctionDecl>(this) || isa<FunctionTemplateDecl>(this);
137 return isa<TemplateDecl>(this);
392 } else if (isa<ObjCPropertyDecl>(this) || isa<ObjCMethodDecl>(this))
395 isa<ObjCInterfaceDecl>(this)))
407 if (isa<WeakImportAttr>(*A))
622 if (isa<TranslationUnitDecl>(this) ||
623 isa<TemplateTypeParmDecl>(this) ||
624 isa<NonTypeTemplateParmDecl>(this) |
    [all...]
ExprClassification.cpp 184 return isa<FunctionDecl>(cast<DeclRefExpr>(E)->getDecl())
215 if (isa<ObjCPropertyRefExpr>(Op))
372 if (isa<CXXMethodDecl>(D) && cast<CXXMethodDecl>(D)->isInstance())
380 islvalue = isa<VarDecl>(D) || isa<FieldDecl>(D) ||
381 isa<IndirectFieldDecl>(D) ||
383 (isa<FunctionDecl>(D) || isa<FunctionTemplateDecl>(D)));
410 return (isa<FunctionDecl>(E->getMemberDecl())
422 if (isa<ObjCPropertyRefExpr>(Base)
    [all...]
  /external/llvm/include/llvm/MC/
MCDwarf.h 86 // Isa
87 unsigned Isa;
103 unsigned isa, unsigned discriminator)
104 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
123 /// getIsa - Get the Isa of this MCDwarfLoc.
124 unsigned getIsa() const { return Isa; }
141 /// setIsa - Set the Isa of this MCDwarfLoc.
142 void setIsa(unsigned isa) { Isa = isa;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 142 if (isa<DbgInfoIntrinsic>(Inst))
170 if (isa<TerminatorInst>(Inst) || isa<PHINode>(Inst))
267 while (InsertPos != SuccToSinkTo->end() && isa<PHINode>(InsertPos))
SimplifyCFGPass.cpp 131 if (!isa<UnreachableInst>(BBI)) {
149 if (isa<UndefValue>(Ptr) ||
150 (isa<ConstantPointerNull>(Ptr) &&
230 while (isa<DbgInfoIntrinsic>(I) && I != BB.begin())
232 if (!isa<DbgInfoIntrinsic>(I) &&
233 (!isa<PHINode>(I) || I != BB.begin() ||
JumpThreading.cpp 226 for (; !isa<TerminatorInst>(I); ++I) {
228 if (isa<DbgInfoIntrinsic>(I)) continue;
231 if (isa<BitCastInst>(I) && I->getType()->isPointerTy())
242 if (!isa<IntrinsicInst>(CI))
251 if (isa<SwitchInst>(I))
255 if (isa<IndirectBrInst>(I))
408 isa<UndefValue>(LHSVals[i].first)) {
415 isa<UndefValue>(RHSVals[i].first)) {
429 isa<ConstantInt>(I->getOperand(1)) &&
479 if (!isa<Constant>(RHS)
    [all...]
LICM.cpp 381 if (isa<DbgInfoIntrinsic>(I))
410 return isa<BinaryOperator>(I) || isa<CastInst>(I) ||
411 isa<SelectInst>(I) || isa<GetElementPtrInst>(I) || isa<CmpInst>(I) ||
412 isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) ||
413 isa<ShuffleVectorInst>(I);
448 if (isa<LoadInst>(I)) ++NumMovedLoads
    [all...]
  /external/llvm/tools/bugpoint-passes/
TestPasses.cpp 38 if (isa<CallInst>(*I))
  /frameworks/compile/libbcc/runtime/BlocksRuntime/
runtime.c 321 result->isa = _NSConcreteMallocBlock;
349 result->isa = _NSConcreteFinalizingBlock;
352 result->isa = _NSConcreteAutoBlock;
389 copy->isa = &_NSConcreteWeakBlockVariable; // mark isa field so it gets weak scanning
424 // by using an isa that directs the code to a finalizer that calls the byref_destroy method.
574 // flags will indicate if it holds a __weak reference and needs a special isa
634 if (closure->isa == NULL) {
635 cp += sprintf(cp, "isa: NULL\n");
637 else if (closure->isa == _NSConcreteStackBlock)
    [all...]
  /external/apache-http/src/org/apache/http/conn/scheme/
PlainSocketFactory.java 105 InetSocketAddress isa = local
107 sock.bind(isa);
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 201 (!Op0 || (isa<BinaryOperator>(Op0) && Op0->hasNoSignedWrap()))) {
282 isa<Constant>(Op0->getOperand(1)) &&
283 isa<Constant>(Op1->getOperand(1)) &&
526 bool ConstIsRHS = isa<Constant>(I.getOperand(1));
561 if (isa<Constant>(TV) || isa<Constant>(FV)) {
620 if (isa<Constant>(InVal) && !isa<ConstantExpr>(InVal))
623 if (isa<PHINode>(InVal)) return 0; // Itself a phi.
685 else if (isa<ICmpInst>(CI)
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp 59 if (!isa<ConstantInt>(CV->getOperand(i)) &&
60 !isa<ConstantFP>(CV->getOperand(i)))
141 if (isa<ConstantAggregateZero>(V))
151 if (isa<ConstantInt>(V) || isa<ConstantFP>(V))
157 if (isa<ConstantPointerNull>(V)) // ptr->ptr cast.
509 if (isa<UndefValue>(V)) {
615 bool isOne = isa<ConstantInt>(Idx) && cast<ConstantInt>(Idx)->isOne();
707 if ((CP1 || isa<ConstantAggregateZero>(V1)) &&
708 (CP2 || isa<ConstantAggregateZero>(V2)))
    [all...]
Value.cpp 48 if (isa<CallInst>(this) || isa<InvokeInst>(this))
51 else if (!isa<Constant>(this) && !isa<BasicBlock>(this))
142 } else if (isa<MDString>(V))
145 assert(isa<Constant>(V) && "Unknown value type!");
298 if (!isa<GlobalValue>(C)) {
352 if (isa<AllocaInst>(this)) return true;
374 if (isa<StructType>(Ty))
  /external/llvm/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
23 // isa<x> Support Templates
44 // The core of the implementation of isa<X> is here; To and From should be
46 // implementation of isa<> without rewriting it from scratch.
103 // isa<X> - Return true if the parameter to the template is an instance of the
106 // if (isa<Type>(myVal)) { ... }
109 inline bool isa(const Y &Val) { function in namespace:llvm
194 assert(isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
205 assert(isa<X>(Val) && "cast_or_null<Ty>() argument of incompatible type!");
220 return isa<X>(Val) ? cast<X, Y>(Val) : 0
    [all...]
  /external/llvm/lib/Analysis/
Lint.cpp 126 if (isa<Instruction>(V)) {
257 Assert1(!isa<AllocaInst>(Obj),
358 Assert1(!isa<AllocaInst>(Obj),
374 Assert1(!isa<ConstantPointerNull>(UnderlyingObject),
376 Assert1(!isa<UndefValue>(UnderlyingObject),
378 Assert1(!isa<ConstantInt>(UnderlyingObject) ||
381 Assert1(!isa<ConstantInt>(UnderlyingObject) ||
389 Assert1(!isa<Function>(UnderlyingObject) &&
390 !isa<BlockAddress>(UnderlyingObject),
394 Assert1(!isa<Function>(UnderlyingObject)
    [all...]

Completed in 667 milliseconds

1 23 4 5 6 7 8 91011>>