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

  /external/clang/lib/StaticAnalyzer/Checkers/
DereferenceChecker.cpp 36 SmallVectorImpl<SourceRange> &Ranges,
42 SmallVectorImpl<SourceRange> &Ranges,
54 Ranges.push_back(DR->getSourceRange());
63 Ranges.push_back(SourceRange(L, L));
110 SmallVector<SourceRange, 2> Ranges;
122 AddDerefSource(os, Ranges, AE->getBase()->IgnoreParenCasts());
130 AddDerefSource(os, Ranges, U->getSubExpr()->IgnoreParens(), true);
139 AddDerefSource(os, Ranges, M->getBase()->IgnoreParenCasts(), true);
153 Ranges.push_back(IV->getSourceRange());
169 I = Ranges.begin(), E = Ranges.end(); I!=E; ++I
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 72 /// RangeSet contains a set of ranges. If the set is empty, then
77 PrimRangeSet ranges; // no need to make const, since it is an member in class:__anon4608::RangeSet
84 RangeSet(PrimRangeSet RS) : ranges(RS) {}
86 iterator begin() const { return ranges.begin(); }
87 iterator end() const { return ranges.end(); }
89 bool isEmpty() const { return ranges.isEmpty(); }
93 : ranges(F.add(F.getEmptySet(), Range(from, to))) {}
97 void Profile(llvm::FoldingSetNodeID &ID) const { ranges.Profile(ID); }
103 return ranges.isSingleton() ? ranges.begin()->getConcreteValue() : 0
    [all...]
  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 121 /// extractLexicalScopes - Extract instruction ranges for each lexical scopes
174 SmallVector<InsnRange, 4> &getRanges() { return Ranges; }
202 Ranges.push_back(InsnRange(FirstInsn, LastInsn));
237 SmallVector<InsnRange, 4> Ranges;
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 74 SmallVector<SourceRange, 4> Ranges;
132 /// Ranges are used to highlight regions of interest in the source code.
136 /// ranges.
138 assert((R.isValid() || Ranges.empty()) && "Invalid range can only be used "
140 Ranges.push_back(R);
  /external/chromium/base/metrics/
histogram.h 268 typedef int Sample; // Used for samples (and ranges of samples).
275 typedef std::vector<Sample> Ranges;
409 // 0x8000 means print ranges in hex.
429 // Check to see if bucket ranges, counts and tallies in the snapshot are
430 // consistent with the bucket ranges and checksums in our histogram. This can
443 virtual Sample ranges(size_t i) const;
566 Ranges ranges_;
568 // For redundancy, we store a checksum of all the sample ranges when ranges
628 // For some ranges, we store a printable description of a bucket range
    [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 127 /// two ranges into [0, 3) which is memset'able.
191 /// Ranges - A sorted list of the memset ranges. We use std::list here
193 std::list<MemsetRange> Ranges;
200 const_iterator begin() const { return Ranges.begin(); }
201 const_iterator end() const { return Ranges.end(); }
202 bool empty() const { return Ranges.empty(); }
233 /// existing ranges as appropriate.
235 /// Do a linear search of the ranges to see if this can be joined and/or to
236 /// find the insertion point in the list. We keep the ranges sorted fo
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 489 bool TGParser::ParseRangePiece(std::vector<unsigned> &Ranges) {
502 Ranges.push_back(Start);
522 Ranges.push_back(Start);
525 Ranges.push_back(Start);
530 /// ParseRangeList - Parse a list of scalars and ranges into scalar values.
553 bool TGParser::ParseOptionalRangeList(std::vector<unsigned> &Ranges) {
561 Ranges = ParseRangeList();
562 if (Ranges.empty()) return true;
575 bool TGParser::ParseOptionalBitList(std::vector<unsigned> &Ranges) {
583 Ranges = ParseRangeList()
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 256 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
257 if (Ranges.empty())
260 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
261 if (Ranges.size() > 1) {
268 for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(),
269 RE = Ranges.end(); RI != RE; ++RI) {
298 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
299 assert (Ranges.empty() == false
312 SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin();
329 if (Ranges.size() > 1)
    [all...]
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 

Completed in 3510 milliseconds