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

  /external/llvm/include/llvm/Support/
DebugLoc.h 33 DL.LineCol = 1;
41 DL.LineCol = 2;
45 /// LineCol - This 32-bit value encodes the line and column number for the
48 unsigned LineCol;
54 DebugLoc() : LineCol(0), ScopeIdx(0) {} // Defaults to unknown.
71 return (LineCol << 8) >> 8; // Mask out column.
75 return LineCol >> 24;
96 return LineCol == DL.LineCol && ScopeIdx == DL.ScopeIdx;
  /external/llvm/lib/IR/
DebugLoc.cpp 84 Result.LineCol = Line | (Col << 24);
154 return static_cast<unsigned>(hash_combine(Key.LineCol, Key.ScopeIdx));
  /external/clang/tools/c-index-test/
c-index-test.c 565 } LineCol;
568 const LineCol *lhs = p1;
569 const LineCol *rhs = p2;
739 LineCol lineCols[50];
749 qsort(lineCols, num_overridden, sizeof(LineCol), lineCol_cmp);
    [all...]

Completed in 35 milliseconds