HomeSort by relevance Sort by last modified time
    Searched refs:macro_match (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/v8/tools/
js2c.py 195 macro_match = MACRO_PATTERN.match(line)
196 if macro_match:
197 name = macro_match.group(1)
198 args = [match.strip() for match in macro_match.group(2).split(',')]
199 body = macro_match.group(3).strip()
  /external/v8/tools/
js2c.py 195 macro_match = MACRO_PATTERN.match(line)
196 if macro_match:
197 name = macro_match.group(1)
198 args = map(string.strip, macro_match.group(2).split(','))
199 body = macro_match.group(3).strip()

Completed in 55 milliseconds