Lines Matching refs:components
421 components = func_regexp.match(line)
422 if components:
424 current_symbol_addr = int(components.group(1), 16)
425 current_symbol = components.group(2)
428 components = offset_regexp.match(current_symbol)
429 if components:
430 current_symbol = components.group(1)
431 offset = components.group(2)
437 components = asm_regexp.match(line)
438 if components:
439 addr = components.group(1)