Searched defs:LineCol (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Support/
H A DDebugLoc.h33 DL.LineCol = 1;
41 DL.LineCol = 2;
45 /// LineCol - This 32-bit value encodes the line and column number for the
48 unsigned LineCol; member in class:llvm::DebugLoc
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/clang/tools/c-index-test/
H A Dc-index-test.c565 } LineCol; typedef in typeref:struct:__anon5049
568 const LineCol *lhs = p1;
569 const LineCol *rhs = p2;
739 LineCol lineCols[50];
749 qsort(lineCols, num_overridden, sizeof(LineCol), lineCol_cmp);

Completed in 93 milliseconds