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

  /external/llvm/utils/count/
count.c 14 unsigned Count, NumLines, NumRead;
28 NumLines = 0;
36 ++NumLines;
44 if (Count != NumLines) {
45 fprintf(stderr, "Expected %d lines, got %d.\n", Count, NumLines);
  /external/llvm/tools/llvm-cov/
CoverageSummaryInfo.cpp 33 size_t NumLines = 0, CoveredLines = 0;
65 NumLines += LineCount;
70 LineCoverageInfo(CoveredLines, 0, NumLines));
CoverageSummaryInfo.h 66 size_t NumLines;
69 : Covered(0), NotCovered(0), NonCodeLines(0), NumLines(0) {}
71 LineCoverageInfo(size_t Covered, size_t NumNonCodeLines, size_t NumLines)
72 : Covered(Covered), NotCovered(NumLines - NumNonCodeLines - Covered),
73 NonCodeLines(NumNonCodeLines), NumLines(NumLines) {}
79 NumLines += RHS.NumLines;
83 bool isFullyCovered() const { return Covered == (NumLines - NonCodeLines); }
86 return double(Covered) / double(NumLines - NonCodeLines) * 100.0
    [all...]
  /external/llvm/lib/ProfileData/
CoverageMappingReader.cpp 179 uint64_t LineStartDelta, ColumnStart, NumLines, ColumnEnd;
187 if (auto Err = readIntMax(NumLines, std::numeric_limits<unsigned>::max()))
207 << ColumnStart << " -> " << (LineStart + NumLines) << ":"
218 LineStart + NumLines, ColumnEnd, Kind));
  /external/clang/lib/Index/
CommentToXML.cpp 416 unsigned NumLines = C->getNumLines();
417 if (NumLines == 0)
421 for (unsigned i = 0; i != NumLines; ++i) {
423 if (i + 1 != NumLines)
792 unsigned NumLines = C->getNumLines();
793 if (NumLines == 0)
804 for (unsigned i = 0; i != NumLines; ++i) {
806 if (i + 1 != NumLines)
    [all...]
  /external/clang/include/clang/Frontend/
ASTUnit.h 189 mutable unsigned NumLines;
192 PreambleData() : File(nullptr), NumLines(0) { }
197 NumLines = 0;
200 void clear() { Buffer.clear(); File = nullptr; NumLines = 0; }
208 if (NumLines)
209 return NumLines;
211 return NumLines;
    [all...]
  /art/tools/
cpplint.py     [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
cpplint.py     [all...]
  /external/libvpx/libvpx/tools/
cpplint.py     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
cpplint.py     [all...]

Completed in 462 milliseconds