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

  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
IssueRegistry.java 115 Map<Class<? extends Detector>, EnumSet<Scope>> detectorToScope =
138 EnumSet<Scope> s = detectorToScope.get(detectorClass);
140 detectorToScope.put(detectorClass, issueScope);
144 detectorToScope.put(detectorClass, union);
156 EnumSet<Scope> union = detectorToScope.get(clz);
LintDriver.java 360 Map<Class<? extends Detector>, EnumSet<Scope>> detectorToScope =
367 // and simultaneously build up the detectorToScope map which tracks
388 EnumSet<Scope> s = detectorToScope.get(detectorClass);
391 detectorToScope.put(detectorClass, issueScope);
395 detectorToScope.put(detectorClass, union);
401 EnumSet<Scope> union = detectorToScope.get(detector.getClass());
    [all...]

Completed in 4641 milliseconds