Searched refs:MatchScope (Results 1 – 1 of 1) sorted by relevance
/art/tools/checker/match/ |
D | file.py | 22 MatchScope = namedtuple("MatchScope", ["start", "end"]) variable 61 return MatchInfo(MatchScope(i, i), newVariables) 83 return MatchInfo(MatchScope(min(matchedLines), max(matchedLines)), variables) 125 match = MatchInfo(MatchScope(c1Length, c1Length), None) 134 scope = MatchScope(matchFrom, c1Length) 139 scope = MatchScope(matchFrom, matchFrom + 1) 143 scope = MatchScope(matchFrom, c1Length) 147 scope = MatchScope(matchFrom, c1Length) 154 scope = MatchScope(matchFrom, match.scope.start)
|