/external/clang/tools/scan-build/ |
c++-analyzer | 460 my $Cnt = $CompileOptionMap{$ArgKey}; 462 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; } 468 my $Cnt = $LinkerOptionMap{$ArgKey}; 470 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; } 477 my $Cnt = $CompilerLinkerOptionMap{$ArgKey}; 483 $i += $Cnt; 492 while ($Cnt > 0) { 493 ++$i; --$Cnt; [all...] |
ccc-analyzer | 460 my $Cnt = $CompileOptionMap{$ArgKey}; 462 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; } 468 my $Cnt = $LinkerOptionMap{$ArgKey}; 470 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; } 477 my $Cnt = $CompilerLinkerOptionMap{$ArgKey}; 483 $i += $Cnt; 492 while ($Cnt > 0) { 493 ++$i; --$Cnt; [all...] |
/external/clang/include/clang/Analysis/Support/ |
BumpVector.h | 162 iterator insert(iterator I, size_t Cnt, const_reference E, 165 if (End + Cnt <= Capacity) { 167 move_range_right(I, End, Cnt); 168 construct_range(I, I + Cnt, E); 169 End += Cnt; 170 return I + Cnt; 173 grow(C, size() + Cnt);
|
/external/clang/include/clang/Analysis/ |
CFG.h | 282 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E, 284 return Impl.insert(I, Cnt, E, C); 530 iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt, 532 return iterator(Elements.insert(I.base(), Cnt, CFGElement(), C));
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
MemRegion.h | 325 unsigned Cnt; // Block counter. Used to distinguish different pieces of 329 AllocaRegion(const Expr *ex, unsigned cnt, const MemRegion *superRegion) 330 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {} 343 unsigned Cnt, const MemRegion *superRegion); 966 const AllocaRegion *getAllocaRegion(const Expr *Ex, unsigned Cnt, [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
RetainCountChecker.cpp | 177 unsigned Cnt; 181 RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t) 182 : kind(k), okind(o), Cnt(cnt), ACnt(acnt), T(t) {} 189 unsigned getCount() const { return Cnt; } 191 unsigned getCombinedCounts() const { return Cnt + ACnt; } 192 void clearCounts() { Cnt = 0; ACnt = 0; } 193 void setCount(unsigned i) { Cnt = i; } 227 return kind == X.kind && Cnt == X.Cnt && T == X.T && ACnt == X.ACnt 268 unsigned cnt = getCount(); local 269 if (cnt) Out << " (+ " << cnt << ")"; local 275 unsigned cnt = getCount(); local 276 if (cnt) Out << " (+ " << cnt << ")"; local 282 unsigned cnt = getCount(); local 283 if (cnt) Out << " (+ " << cnt << ")"; local 289 unsigned cnt = getCount(); local 290 if (cnt) Out << " (+ " << cnt << ")"; local 1583 const unsigned *cnt = (*cnts).lookup(sym); local 3090 unsigned cnt = X.getCount(); local 3098 unsigned cnt = X.getCount(); local [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
MemRegion.cpp | 253 const Expr *Ex, unsigned cnt, 257 ID.AddInteger(cnt); 261 ProfileRegion(ID, Ex, Cnt, superRegion); 406 os << "alloca{" << (void*) Ex << ',' << Cnt << '}'; 728 MemRegionManager::getAllocaRegion(const Expr *E, unsigned cnt, 732 return getSubRegion<AllocaRegion>(E, cnt, getStackLocalsRegion(STC));
|
/external/llvm/lib/Target/ARM/ |
ARMISelLowering.cpp | [all...] |