Lines Matching refs:components
397 components = func_regexp.match(line)
398 if components:
400 current_symbol_addr = int(components.group(1), 16)
401 current_symbol = components.group(2)
404 components = offset_regexp.match(current_symbol)
405 if components:
406 current_symbol = components.group(1)
407 offset = components.group(2)
413 components = asm_regexp.match(line)
414 if components:
415 addr = components.group(1)