Home | History | Annotate | Download | only in scripts

Lines Matching refs:components

242     components = func_regexp.match(line)
243 if components:
245 current_symbol_addr = int(components.group(1), 16)
246 current_symbol = components.group(2)
249 components = offset_regexp.match(current_symbol)
250 if components:
251 current_symbol = components.group(1)
252 offset = components.group(2)
258 components = asm_regexp.match(line)
259 if components:
260 addr = components.group(1)