HomeSort by relevance Sort by last modified time
    Searched refs:NumLines (Results 1 - 16 of 16) 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.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...]
CoverageSummaryInfo.cpp 33 size_t NumLines = 0, CoveredLines = 0;
65 NumLines += LineCount;
70 LineCoverageInfo(CoveredLines, 0, NumLines));
CoverageReport.cpp 161 (unsigned)Function.LineCoverage.NumLines);
  /external/clang/include/clang/Frontend/
ASTUnit.h 191 mutable unsigned NumLines;
194 PreambleData() : File(nullptr), NumLines(0) { }
199 NumLines = 0;
202 void clear() { Buffer.clear(); File = nullptr; NumLines = 0; }
210 if (NumLines)
211 return NumLines;
213 return NumLines;
    [all...]
  /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)
791 unsigned NumLines = C->getNumLines();
792 if (NumLines == 0)
803 for (unsigned i = 0; i != NumLines; ++i) {
805 if (i + 1 != NumLines)
    [all...]
  /external/pdfium/core/src/fxcodec/codec/
fx_codec.cpp 82 if (m_pDataCache && line < m_pDataCache->NumLines())
103 if (m_pDataCache && line < m_pDataCache->NumLines())
129 if (m_pDataCache && m_NextLine == m_pDataCache->NumLines())
codec_int.h 69 int NumLines() const { return m_nCachedLines; }
  /external/llvm/lib/ProfileData/
CoverageMappingReader.cpp 180 uint64_t LineStartDelta, ColumnStart, NumLines, ColumnEnd;
188 if (auto Err = readIntMax(NumLines, std::numeric_limits<unsigned>::max()))
208 << ColumnStart << " -> " << (LineStart + NumLines) << ":"
219 LineStart + NumLines, ColumnEnd, Kind));
  /external/clang/include/clang/Basic/
SourceManager.h 125 unsigned NumLines;
147 SourceLineCache(nullptr), NumLines(0), BufferOverridden(false),
165 NumLines = RHS.NumLines;
    [all...]
  /art/tools/
cpplint.py     [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
cpplint.py     [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/libvpx/libvpx/tools/
cpplint.py     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
cpplint.py     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]

Completed in 198 milliseconds