HomeSort by relevance Sort by last modified time
    Searched refs:LineCol (Results 1 - 3 of 3) 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/llvm/lib/IR/
DebugLoc.cpp 104 Result.LineCol = Line | (Col << 24);
197 return static_cast<unsigned>(hash_combine(Key.LineCol, Key.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 59 milliseconds