HomeSort by relevance Sort by last modified time
    Searched defs:NumLines (Results 1 - 3 of 3) 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/clang/include/clang/Basic/
SourceManager.h 103 /// NumLines - The number of lines in this ContentCache. This is only valid
105 unsigned NumLines;
164 SourceLineCache(0), NumLines(0) {}
168 SourceLineCache(0), NumLines(0) {}
184 NumLines = RHS.NumLines;
    [all...]
  /external/clang/include/clang/Frontend/
ASTUnit.h 172 mutable unsigned NumLines;
175 PreambleData() : File(0), NumLines(0) { }
180 NumLines = 0;
183 void clear() { Buffer.clear(); File = 0; NumLines = 0; }
191 if (NumLines)
192 return NumLines;
194 return NumLines;

Completed in 399 milliseconds