/sdk/common/src/com/android/io/ |
H A D | IAbstractResource.java | 37 * Returns whether the resource actually exists. 39 boolean exists(); method in interface:IAbstractResource
|
/sdk/sdkmanager/app/tests/com/android/sdkmanager/ |
H A D | AvdManagerTest.java | 65 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 D | DebugBridge.java | 41 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 D | ApplicationAttributesPart.java | 161 // 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 D | ApiLookupTest.java | 125 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 D | LintClient.java | 262 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 D | GeneratorTest.java | 68 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 D | MainWindow.java | 259 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 D | Addr2Line.java | 169 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 D | SetFolders.java | 65 if (!project.exists()) 87 if (!folder.exists()) 94 if (!folder.exists())
|
H A D | SimpleFile.java | 81 if (!project.exists()) 92 if (destFile.exists()) 119 if (container.exists())
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/ |
H A D | ProjectProperties.java | 247 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 D | FolderDecorator.java | 52 if (project == null || !project.exists() || !folder.exists()) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/ |
H A D | IFileWrapper.java | 101 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 D | AdtTestData.java | 121 if (!path.exists()) { 130 assert path.exists();
|
/sdk/anttasks/src/com/android/ant/ |
H A D | BuildConfigTask.java | 56 boolean missingFile = buildConfigFile.exists() == false;
|
/sdk/common/src/com/android/prefs/ |
H A D | AndroidLocation.java | 64 // 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 D | XmlStorageEditorInput.java | 56 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 D | TemplateTestWizard.java | 59 if (file != null && file.exists()) {
|
H A D | TemplateTestPage.java | 96 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 D | SdkToolsLocator.java | 82 if (!f.exists()) {
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/ |
H A D | IFileOp.java | 88 /** 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 D | ResourceManagerBuilder.java | 156 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 D | Project.java | 122 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 D | ProjectNamePage.java | 219 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...] |