Searched refs:colno (Results 1 - 11 of 11) sorted by relevance

/external/dtc/
H A Dsrcpos.c157 srcfile->colno = 1;
221 pos->first_column = current_srcfile->colno;
226 current_srcfile->colno = 1;
228 current_srcfile->colno =
229 ALIGN(current_srcfile->colno, TAB_SIZE);
231 current_srcfile->colno++;
235 pos->last_column = current_srcfile->colno;
H A Dsrcpos.h31 int lineno, colno; member in struct:srcfile_state
/external/elfutils/tests/
H A Ddwfllines.c67 int colno; local
70 const char *src = dwfl_lineinfo (line, &addr, &lineno, &colno,
98 assert (colno == dw_colno);
148 i, addr, src, lineno, colno, mtime, length,
H A Ddwflmodtest.c56 int lineno = 0, colno = 0; local
62 colno = val;
68 else if (colno == 0)
71 printf (" at %s:%u:%u", file, lineno, colno);
/external/python/cpython2/Lib/json/
H A Ddecoder.py28 colno = pos + 1
30 colno = pos - doc.rindex('\n', 0, pos)
31 return lineno, colno
36 lineno, colno = linecol(doc, pos)
39 return fmt.format(msg, lineno, colno, pos)
41 #return fmt % (msg, lineno, colno, pos)
44 return fmt.format(msg, lineno, colno, endlineno, endcolno, pos, end)
46 #return fmt % (msg, lineno, colno, endlineno, endcolno, pos, end)
/external/python/cpython2/Lib/
H A Dstring.py140 colno = 1
143 colno = i - len(''.join(lines[:-1]))
146 (lineno, colno))
/external/expat/tests/
H A Druntests.c519 XML_Size colno; local
523 colno = XML_GetCurrentColumnNumber(parser);
524 if (colno != 11) {
527 "expected 11 columns, saw %" XML_FMT_INT_MOD "u", colno);
625 XML_Size colno; local
629 colno = XML_GetCurrentColumnNumber(parser);
630 if (colno != 4) {
633 "expected 4 columns, saw %" XML_FMT_INT_MOD "u", colno);
/external/elfutils/src/
H A Daddr2line.c375 unsigned int colno = 0; local
383 colno = val;
407 else if (colno == 0)
412 comp_dir, comp_dir_sep, file, lineno, colno);
H A Dreadelf.c6422 int lineno, colno; local
6428 dwarf_linecol (line, &colno);
6442 lineno, colno,
8403 print_core_item (unsigned int colno, char sep, unsigned int wrap, argument
8420 if (colno == 0)
8423 colno = ITEM_INDENT + n;
8425 else if (colno + 2 + n < wrap)
8428 colno += 2 + n;
8433 colno = ITEM_INDENT + n;
8440 return colno;
8475 handle_core_item(Elf *core, const Ebl_Core_Item *item, const void *desc, unsigned int colno, size_t *repeated_size) argument
8752 unsigned int colno = 0; local
8841 handle_bit_registers(const Ebl_Register_Location *regloc, const void *desc, unsigned int colno) argument
8852 handle_core_register(Ebl *ebl, Elf *core, int maxregname, const Ebl_Register_Location *regloc, const void *desc, unsigned int colno) argument
9056 unsigned int colno = 0; local
9321 unsigned int colno = handle_core_items (ebl->elf, desc, local
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_sax.py958 def __init__(self, lineno, colno):
960 self._colno = colno
/external/google-breakpad/src/common/dwarf/
H A Ddwarf2reader.cc694 const uint64 colno = reader->ReadUnsignedLEB128(start, &templen); local
696 lsm->column_num = static_cast<uint32>(colno);

Completed in 812 milliseconds