Home | History | Annotate | Download | only in tools

Lines Matching defs:Function

12 FUNCTION = re.compile("^RUNTIME_FUNCTION\(Runtime_(\w+)")
29 class Function(object):
114 function = None
130 match = FUNCTION.match(line)
132 function = Function(match)
134 if function is None: continue
137 if function is not None:
138 functions.append(function)
139 function = None
156 regexp = re.compile("^function (\w+)\s*\((.*?)\) {")
165 if line.startswith("function") and not '{' in line: