HomeSort by relevance Sort by last modified time
    Searched refs:Cnt (Results 1 - 10 of 10) sorted by null

  /external/clang/tools/scan-build/
ccc-analyzer 481 my $Cnt = $CompileOptionMap{$ArgKey};
483 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
498 my $Cnt = $LinkerOptionMap{$ArgKey};
500 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
507 my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
513 $i += $Cnt;
522 while ($Cnt > 0) {
523 ++$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/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 179 unsigned Cnt;
183 RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t)
184 : kind(k), okind(o), Cnt(cnt), ACnt(acnt), T(t) {}
191 unsigned getCount() const { return Cnt; }
193 unsigned getCombinedCounts() const { return Cnt + ACnt; }
194 void clearCounts() { Cnt = 0; ACnt = 0; }
195 void setCount(unsigned i) { Cnt = i; }
229 return kind == X.kind && Cnt == X.Cnt && T == X.T && ACnt == X.ACnt
270 unsigned cnt = getCount(); local
271 if (cnt) Out << " (+ " << cnt << ")"; local
277 unsigned cnt = getCount(); local
278 if (cnt) Out << " (+ " << cnt << ")"; local
284 unsigned cnt = getCount(); local
285 if (cnt) Out << " (+ " << cnt << ")"; local
291 unsigned cnt = getCount(); local
292 if (cnt) Out << " (+ " << cnt << ")"; local
3274 unsigned cnt = X.getCount(); local
3282 unsigned cnt = X.getCount(); local
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 315 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E,
317 return Impl.insert(I, Cnt, E, C);
570 iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt,
572 return iterator(Elements.insert(I.base(), Cnt, CFGAutomaticObjDtor(0, 0), C));
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 451 unsigned Cnt; // Block counter. Used to distinguish different pieces of
455 AllocaRegion(const Expr *ex, unsigned cnt, const MemRegion *superRegion)
456 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
469 unsigned Cnt, const MemRegion *superRegion);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 350 const ConstantFP *Cnt = MO.getFPImm();
351 APFloat Val = Cnt->getValueAPF();
353 switch (Cnt->getType()->getTypeID()) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 279 const Expr *Ex, unsigned cnt,
283 ID.AddInteger(cnt);
288 ProfileRegion(ID, Ex, Cnt, superRegion);
455 os << "alloca{" << (const void*) Ex << ',' << Cnt << '}';
1011 MemRegionManager::getAllocaRegion(const Expr *E, unsigned cnt,
    [all...]
  /external/llvm/utils/TableGen/
CodeGenSchedule.cpp     [all...]
  /external/clang/lib/Sema/
SemaType.cpp     [all...]

Completed in 303 milliseconds