Searched refs:exists (Results 1 - 25 of 166) sorted by relevance

1234567

/sdk/common/src/com/android/io/
H A DIAbstractResource.java37 * Returns whether the resource actually exists.
39 boolean exists(); method in interface:IAbstractResource
/sdk/sdkmanager/app/tests/com/android/sdkmanager/
H A DAvdManagerTest.java65 new File(mAvdFolder, "config.ini").exists());
73 new File(mAvdFolder, "userdata.img").exists());
75 new File(mAvdFolder, "snapshots.img").exists());
96 new File(mAvdFolder, "snapshots.img").exists());
/sdk/uiautomatorviewer/src/com/android/uiautomator/
H A DDebugBridge.java41 if (adb.exists()) {
47 if (adb.exists()) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
H A DApplicationAttributesPart.java161 // The UiElementNode for the application XML node always exists, even
166 boolean exists = (ui_node.getXmlNode() != null);
167 if (table != null && table.getEnabled() != exists) {
168 table.setEnabled(exists);
170 c.setEnabled(exists);
/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/
H A DApiLookupTest.java125 assertTrue(cacheFile.exists());
137 assertTrue(cacheFile.exists());
156 assertTrue(cacheFile.exists());
172 if (create && !mCacheDir.exists()) {
/sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
H A DLintClient.java262 if (create && !dir.exists()) {
338 if (file.exists()) {
409 if (classpathFile.exists()) {
433 if (folder.exists()) {
459 if (folder.exists()) {
465 if (folder.exists()) {
475 if (src.exists()) {
479 if (src.exists()) {
488 if (gen.exists()) {
499 if (src.exists()) {
[all...]
/sdk/assetstudio/tests/src/com/android/assetstudiolib/
H A DGeneratorTest.java68 assertFalse(fileName.exists());
69 if (!fileName.getParentFile().exists()) {
177 if (output.exists()) {
215 if (sdkPath.exists()) {
218 if (testData.exists()) {
/sdk/traceview/src/com/android/traceview/
H A DMainWindow.java259 if (file.exists() && file.isDirectory()) {
265 if (!file.exists()) {
267 if (new File(traceName + ".trace").exists()) {
270 } else if (new File(traceName + ".data").exists()
271 && new File(traceName + ".key").exists()) {
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
H A DAddr2Line.java169 if (new File(path).exists()) {
176 if (new File(fullPath).exists()) {
182 if (new File(fullPath).exists()) {
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
H A DSetFolders.java65 if (!project.exists())
87 if (!folder.exists())
94 if (!folder.exists())
H A DSimpleFile.java81 if (!project.exists())
92 if (destFile.exists())
119 if (container.exists())
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/
H A DProjectProperties.java247 if (projectFolder.exists()) {
249 if (propFile.exists()) {
267 if (projectFolder.exists()) {
269 if (propFile.exists()) {
406 if (mProjectFolder.exists()) {
408 if (propFile.exists()) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
H A DFolderDecorator.java52 if (project == null || !project.exists() || !folder.exists()) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
H A DIFileWrapper.java101 public boolean exists() { method in class:IFileWrapper
102 return mFile.exists();
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
H A DAdtTestData.java121 if (!path.exists()) {
130 assert path.exists();
/sdk/anttasks/src/com/android/ant/
H A DBuildConfigTask.java56 boolean missingFile = buildConfigFile.exists() == false;
/sdk/common/src/com/android/prefs/
H A DAndroidLocation.java64 // make sure the folder exists!
66 if (f.exists() == false) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/
H A DXmlStorageEditorInput.java56 public boolean exists() { method in class:XmlStorageEditorInput
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
H A DTemplateTestWizard.java59 if (file != null && file.exists()) {
H A DTemplateTestPage.java96 if (!mTemplate.exists()) {
103 if (!new File(mTemplate, TemplateHandler.TEMPLATE_XML).exists()) {
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
H A DSdkToolsLocator.java82 if (!f.exists()) {
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/
H A DIFileOp.java88 /** Invokes {@link File#exists()} on the given {@code file}. */
89 public abstract boolean exists(File file); method in interface:IFileOp
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
H A DResourceManagerBuilder.java156 boolean genFolderPresent = false; // whether the gen folder actually exists
158 genFolderPresent = resource != null && resource.exists();
165 // folder exists already! This is an error. If the folder had been created
167 message = String.format("%1$s already exists but is not a source folder. Convert to a source folder or rename it.",
170 // resource exists but is not a folder.
239 if (androidOutput.exists() == false || javaOutput == null ||
244 if (androidOutput.exists() == false) {
248 if (newJavaOutput.exists() == false) {
272 if (binResFolder.exists() == false) {
/sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
H A DProject.java122 if (propFile.exists()) {
546 * Gets the path to the manifest file in this project, if it exists
552 if (manifestFile.exists()) {
665 if (src.exists()) {
672 if (classes.exists()) {
691 if (classes.exists()) {
695 if (classes.exists()) {
732 assert new File(out.replace('/', File.separatorChar)).exists() : out;
737 if (file.exists()) {
750 if (makefile.exists()) {
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
H A DProjectNamePage.java219 if (f.exists() && f.isDirectory() && !f.equals(mValues.projectLocation)) {
325 if (!f.exists()) {
417 && mValues.projectLocation.exists() && mValues.mode != Mode.SAMPLE) {
451 if (!file.exists()) {
494 if (f.exists() && !f.isDirectory()) {
498 // However if the directory exists, we should put a
515 if (dest.exists()) {
563 if (path.append(".project").toFile().exists()) { //$NON-NLS-1$
565 "An Eclipse project already exists in this directory.\n" +
584 if (handle.exists()) {
[all...]

Completed in 387 milliseconds

1234567