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

  /external/llvm/include/llvm/IR/
DebugLoc.h 36 DL.LineCol = 1;
44 DL.LineCol = 2;
48 /// LineCol - This 32-bit value encodes the line and column number for the
51 uint32_t LineCol;
57 DebugLoc() : LineCol(0), ScopeIdx(0) {} // Defaults to unknown.
74 return (LineCol << 8) >> 8; // Mask out column.
78 return LineCol >> 24;
105 return LineCol == DL.LineCol && ScopeIdx == DL.ScopeIdx;
  /external/clang/tools/c-index-test/
c-index-test.c 632 } LineCol;
635 const LineCol *lhs = p1;
636 const LineCol *rhs = p2;
813 LineCol lineCols[50];
823 qsort(lineCols, num_overridden, sizeof(LineCol), lineCol_cmp);
    [all...]

Completed in 173 milliseconds