/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/elfutils/tests/ |
addrscopes.c | 44 int lineno, linecol; local 46 && (src = dwfl_lineinfo (line, &addr, &lineno, &linecol, 49 if (linecol != 0) 51 prefix, addr, src, lineno, linecol);
|
funcscopes.c | 45 int lineno, linecol; local 47 && (src = dwfl_lineinfo (line, &addr, &lineno, &linecol, 50 if (linecol != 0) 52 prefix, addr, src, lineno, linecol);
|
/external/elfutils/src/ |
addr2line.c | 460 int lineno, linecol; local 461 if (line != NULL && (src = dwfl_lineinfo (line, &addr, &lineno, &linecol, 476 if (linecol != 0) 478 comp_dir, comp_dir_sep, src, lineno, linecol);
|
/external/chromium_org/third_party/simplejson/ |
decoder.py | 51 self.lineno, self.colno = linecol(doc, pos) 53 self.endlineno, self.endcolno = linecol(doc, end) 58 def linecol(doc, pos): function 69 lineno, colno = linecol(doc, pos) 75 endlineno, endcolno = linecol(doc, end)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
decoder.py | 27 def linecol(doc, pos): function 38 lineno, colno = linecol(doc, pos) 44 endlineno, endcolno = linecol(doc, end)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/ |
decoder.py | 27 def linecol(doc, pos): function 38 lineno, colno = linecol(doc, pos) 44 endlineno, endcolno = linecol(doc, end)
|
/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; 745 LineCol lineCols[50]; 755 qsort(lineCols, num_overridden, sizeof(LineCol), lineCol_cmp); [all...] |