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

  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
MergeRootFrameLayoutDetector.java 27 import static com.android.tools.lint.detector.api.LintConstants.LAYOUT_RESOURCE_PREFIX;
153 if (layout.startsWith(LAYOUT_RESOURCE_PREFIX)) { // Ignore @android:layout/ layouts
154 layout = layout.substring(LAYOUT_RESOURCE_PREFIX.length());
ObsoleteLayoutParamsDetector.java 59 import static com.android.tools.lint.detector.api.LintConstants.LAYOUT_RESOURCE_PREFIX;
301 if (layout.startsWith(LAYOUT_RESOURCE_PREFIX)) { // Ignore @android:layout/ layouts
302 layout = layout.substring(LAYOUT_RESOURCE_PREFIX.length());
DuplicateIdDetector.java 24 import static com.android.tools.lint.detector.api.LintConstants.LAYOUT_RESOURCE_PREFIX;
209 if (layout.startsWith(LAYOUT_RESOURCE_PREFIX)) { // Ignore @android:layout/ layouts
210 layout = layout.substring(LAYOUT_RESOURCE_PREFIX.length());
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
LintConstants.java 278 public static final String LAYOUT_RESOURCE_PREFIX = "@layout/"; //$NON-NLS-1$

Completed in 39 milliseconds