Searched refs:_RE_FIRST_COMPONENT (Results 1 - 1 of 1) sorted by relevance

/art/tools/
H A Dcpplint.py2916 # _RE_FIRST_COMPONENT.match('foo').group(0) == 'foo'
2917 # _RE_FIRST_COMPONENT.match('foo.cc').group(0) == 'foo'
2918 # _RE_FIRST_COMPONENT.match('foo-bar_baz.cc').group(0) == 'foo'
2919 # _RE_FIRST_COMPONENT.match('foo_bar-baz.cc').group(0) == 'foo'
2920 _RE_FIRST_COMPONENT = re.compile(r'^[^-_.]+') variable
3017 target_first_component = _RE_FIRST_COMPONENT.match(target_base)
3018 include_first_component = _RE_FIRST_COMPONENT.match(include_base)

Completed in 8 milliseconds