HomeSort by relevance Sort by last modified time
    Searched refs:DOT_XML (Results 1 - 25 of 27) sorted by null

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceNameValidator.java 19 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
76 if (mAllowXmlExtension && newText.endsWith(DOT_XML)) {
77 newText = newText.substring(0, newText.length() - DOT_XML.length());
85 if (newText.indexOf('.') != -1 && !newText.endsWith(DOT_XML)) {
ResourceHelper.java 24 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
566 if (file.exists() && file.getName().endsWith(DOT_XML)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoringTest.java 18 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
154 IPath newPath = sourcePath.removeLastSegments(1).append(layoutName + DOT_XML);
155 fileToGolden.put(newPath, layoutName + DOT_XML);
RefactoringTest.java 19 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
178 if (goldenName.endsWith(DOT_XML)) {
180 goldenName.length() - DOT_XML.length())
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
LintUtils.java 19 import static com.android.tools.lint.detector.api.LintConstants.DOT_XML;
106 return string.regionMatches(true, string.length() - DOT_XML.length(),
107 DOT_XML, 0, DOT_XML.length());
397 if (endsWith(file.getName(), DOT_XML)) {
LintConstants.java 259 public static final String DOT_XML = ".xml"; //$NON-NLS-1$
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
OverdrawDetector.java 26 import static com.android.tools.lint.detector.api.LintConstants.DOT_XML;
210 if (endsWith(layoutName, DOT_XML)) {
211 layoutName = layoutName.substring(0, layoutName.length() - DOT_XML.length());
325 if (endsWith(context.file.getName(), DOT_XML)) {
359 if (endsWith(resource, DOT_XML)) {
360 resource = resource.substring(0, resource.length() - DOT_XML.length());
ApiLookup.java 19 import static com.android.tools.lint.detector.api.LintConstants.DOT_XML;
150 if (LintUtils.endsWith(name, DOT_XML)) {
151 name = name.substring(0, name.length() - DOT_XML.length());
    [all...]
ObsoleteLayoutParamsDetector.java 56 import static com.android.tools.lint.detector.api.LintConstants.DOT_XML;
333 if (layout.endsWith(DOT_XML)) {
334 layout = layout.substring(0, layout.length() - DOT_XML.length());
UnusedResourceDetector.java 25 import static com.android.tools.lint.detector.api.LintConstants.DOT_XML;
148 boolean isXmlFile = endsWith(fileName, DOT_XML);
158 String baseName = fileName.substring(0, fileName.length() - DOT_XML.length());
IconDetector.java 26 import static com.android.tools.lint.detector.api.LintConstants.DOT_XML;
338 endsWith(name, DOT_XML);
    [all...]
DuplicateIdDetector.java 22 import static com.android.tools.lint.detector.api.LintConstants.DOT_XML;
414 File candidate = new File(folder, name + DOT_XML);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddSuppressAttribute.java 20 import static com.android.tools.lint.detector.api.LintConstants.DOT_XML;
172 if (!fileName.endsWith(DOT_XML)) {
EclipseLintRunner.java 18 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
257 && AdtUtils.endsWithIgnoreCase(resource.getName(), DOT_XML)) {
RunLintAction.java 19 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
202 if (file != null && LintUtils.endsWith(file.getName(), DOT_XML)) {
LintFixGenerator.java 19 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
259 boolean isXml = AdtUtils.endsWith(file.getName(), DOT_XML);
LintViewPart.java 19 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
355 if (!LintUtils.endsWith(name, DOT_XML) && !LintUtils.endsWith(name, DOT_JAVA)) {
EclipseLintClient.java 18 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
547 if (AdtUtils.endsWithIgnoreCase(file.getName(), DOT_XML)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtConstants.java 104 public final static String DOT_XML = DOT + EXT_XML;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java 21 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
149 if (value.startsWith("#") || value.endsWith(DOT_XML) //$NON-NLS-1$
183 if (value.endsWith(DOT_XML) && value.contains("res/drawable")) { // TBD: Filesep?
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileWizard.java 417 fileName = fileName + AdtConstants.DOT_XML;
NewXmlFileCreationPage.java 26 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
654 if (AdtUtils.endsWithIgnoreCase(res.getName(), DOT_XML)) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.extensionlocation_1.2.0.v20100518.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoring.java 28 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
238 String newFileName = mLayoutName + DOT_XML;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 19 import static com.android.ide.eclipse.adt.AdtConstants.DOT_XML;
    [all...]

Completed in 631 milliseconds

1 2