Home
last modified time | relevance | path

Searched refs:projectLocation (Results 1 – 11 of 11) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
DProjectNamePage.java189 if (mValues.projectLocation != null) { in setVisible()
190 mLocationText.setText(mValues.projectLocation.getPath()); in setVisible()
219 mValues.projectLocation = f; in modifyText()
220 if (f.exists() && f.isDirectory() && !f.equals(mValues.projectLocation)) { in modifyText()
221 updateLocationPathField(mValues.projectLocation.getPath()); in modifyText()
402 mValues.projectLocation = new File(sCustomLocationOsPath); in updateLocationPathField()
409 mValues.projectLocation = new File(value); in updateLocationPathField()
417 if (mValues.useExisting && mValues.projectLocation != null in updateLocationPathField()
418 && mValues.projectLocation.exists() && mValues.mode != Mode.SAMPLE) { in updateLocationPathField()
419 mValues.extractFromAndroidManifest(new Path(mValues.projectLocation.getPath())); in updateLocationPathField()
[all …]
DNewProjectWizardState.java69 public File projectLocation = new File(Platform.getLocation().toOSString()); field in NewProjectWizardState
DNewProjectCreator.java444 IPath path = new Path(mValues.projectLocation.getPath()); in collectMainPageInfo()
518 IPath path = new Path(mValues.projectLocation.getPath()); in collectTestPageInfo()
885 @NonNull String projectLocation, in create() argument
901 if (projectLocation != null) { in create()
902 IPath path = new Path(projectLocation); in create()
DSampleSelectionPage.java212 mValues.projectLocation = Platform.getLocation().toFile(); in updatedProjectName()
DApplicationInfoPage.java513 Path path = new Path(mValues.projectLocation.getPath()); in validateTestProjectLocation()
573 File projectDir = mValues.projectLocation; in validateSourceFolder()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DProjectContentsPage.java152 mLocationText.setText(mValues.projectLocation); in setVisible()
215 mValues.projectLocation = mLocationText.getText().trim(); in modifyText()
233 String projectLocation = workspace.append(projectName).toOSString(); in updateProjectLocation() local
234 mLocationText.setText(projectLocation); in updateProjectLocation()
235 mValues.projectLocation = projectLocation; in updateProjectLocation()
261 mValues.projectLocation = dir; in widgetSelected()
DNewProjectWizardState.java109 public String projectLocation; field in NewProjectWizardState
DNewProjectPage.java519 String projectLocation = workspace.append(projectName).toOSString(); in updateProjectLocation() local
520 mValues.projectLocation = projectLocation; in updateProjectLocation()
DNewProjectWizard.java360 mValues.isLibrary, mValues.projectLocation, mValues.workingSets); in performFinish()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
DSdk.java511 String projectLocation = location.toOSString(); in getProjectState() local
513 ProjectProperties properties = ProjectProperties.load(projectLocation, in getProjectState()
517 properties = ProjectProperties.load(projectLocation, in getProjectState()
535 ProjectProperties.delete(projectLocation, PropertyType.LEGACY_DEFAULT); in getProjectState()
538 properties = ProjectProperties.load(projectLocation, in getProjectState()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DTemplateHandlerTest.java693 String projectLocation = workspace.append(projectValues.projectName).toOSString(); in checkProject() local
694 projectValues.projectLocation = projectLocation; in checkProject()