Searched refs:line_idx (Results 1 – 6 of 6) sorted by relevance
/external/perfetto/tools/ |
D | fix_include_guards | 38 for line_idx in xrange(len(lines) - 1, -1, -1): 39 if lines[line_idx].startswith('#endif'): 40 endif_line_idx = line_idx 44 line_idx = 0 52 elif line_idx == endif_line_idx and replacements == 2: 56 line_idx += 1
|
/external/llvm-project/lldb/source/Symbol/ |
D | CompileUnit.cpp | 280 uint32_t line_idx; in ResolveSymbolContext() local 287 line_idx = line_table->FindLineEntryIndexByFileIndex( in ResolveSymbolContext() 293 line_idx = line_table->FindLineEntryIndexByFileIndex(0, file_indexes, line, in ResolveSymbolContext() 303 while (line_idx != UINT32_MAX) { in ResolveSymbolContext() 316 line_idx = line_table->FindLineEntryIndexByFileIndex( in ResolveSymbolContext() 317 line_idx + 1, file_indexes.front(), found_line, true, &line_entry); in ResolveSymbolContext() 319 line_idx = line_table->FindLineEntryIndexByFileIndex( in ResolveSymbolContext() 320 line_idx + 1, file_indexes, found_line, true, &line_entry); in ResolveSymbolContext()
|
/external/tensorflow/tensorflow/tools/compatibility/ |
D | ipynb.py | 122 for line_idx, code_line in enumerate(cell_lines): 139 if (line_idx == len(cell_lines) -
|
/external/llvm-project/lldb/examples/python/ |
D | lldb_module_utils.py | 73 for line_idx in range(cu.GetNumLineEntries()): 74 line_entry = cu.GetLineEntryAtIndex(line_idx)
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
D | SymbolFilePDB.cpp | 855 for (uint32_t line_idx = 0; line && line_idx < num_line_entries; in ResolveSymbolContext() local 856 ++line_idx) { in ResolveSymbolContext() 857 if (!line_table->GetLineEntryAtIndex(line_idx, sc.line_entry)) in ResolveSymbolContext()
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARF.cpp | 1998 uint32_t line_idx = line_table->FindLineEntryIndexByFileIndex( in ResolveSymbolContext() local 2002 while (line_idx != UINT32_MAX) { in ResolveSymbolContext() 2016 line_idx = line_table->FindLineEntryIndexByFileIndex( in ResolveSymbolContext() 2017 line_idx + 1, file_idx, found_line, true, &sc.line_entry); in ResolveSymbolContext()
|