HomeSort by relevance Sort by last modified time
    Searched refs:project (Results 51 - 75 of 1060) sorted by null

1 23 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
ProjectCheckPage.java 2 * Copyright (C) 2008 The Android Open Source Project
21 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
22 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
23 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper;
24 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper.NonLibraryProjectOnlyFilter;
25 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
70 setTitle("Project Checks");
85 // composite for the project selection.
94 label.setText("Select the project to export:");
96 new Label(projectComposite, SWT.NONE).setText("Project:")
131 IProject project = mWizard.getProject(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AddCompatibilityJarAction.java 2 * Copyright (C) 2011 The Android Open Source Project
20 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
59 * to the selected project.
82 IProject project = null; local
84 project = (IProject) element;
86 project = (IProject) ((IAdaptable) element)
89 if (project != null) {
90 install(project, false /* waitForFinish */);
101 * Install the compatibility jar into the given project.
103 * @param project The Android project to install the compatibility jar int
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 2 * Copyright (C) 2008 The Android Open Source Project
46 * View classes per project.
63 * Map where keys are the project, and values are another map containing all the known
64 * custom View class for this project. The custom View class are stored in a map
87 * @param project the project containing the class.
91 public void updatedClassInfo(IProject project,
115 * Returns the {@link ViewElementDescriptor} for a particular project/class when the
116 * fully qualified class name actually matches a class from the given project.
125 * @param project the project containing the class
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchConfigDelegate.java 2 * Copyright (C) 2009 The Android Open Source Project
28 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
62 IProgressMonitor monitor, IProject project, final AndroidLaunch androidLaunch,
66 String runner = getRunner(project, configuration, manifestData);
70 project.getName()));
79 project.getName(), runner, SdkConstants.FN_ANDROID_MANIFEST_XML));
84 AndroidJUnitLaunchInfo junitLaunchInfo = new AndroidJUnitLaunchInfo(project,
92 controller.launch(project, mode, applicationPackage, testAppPackage, targetAppPackage,
101 * @param manifestParser the {@link ManifestData} for the test project
161 * Otherwise, will try to find the first valid runner for the project
    [all...]
InstrumentationRunnerValidator.java 2 * Copyright (C) 2009 The Android Open Source Project
20 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
21 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
44 * @param javaProject the {@link IJavaProject} for the Android project to validate
55 * @param project the {@link IProject} for the Android project to validate
58 InstrumentationRunnerValidator(IProject project) throws CoreException {
59 this(BaseProjectHelper.getJavaProject(project));
65 * @param javaProject the {@link IJavaProject} for the Android project to validate
66 * @param manifestData the {@link ManifestData} for the Android project
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ProjectChooserHelper.java 2 * Copyright (C) 2008 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
19 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper.IProjectFilter;
41 * Helper class to deal with displaying a project choosing dialog that lists only the
56 * Interface to filter out some project displayed by {@link ProjectChooserHelper}.
62 * Whether the Project Chooser can compute the project list once and cache the result.
63 * </p>If false the project list is recomputed every time the dialog is opened.
72 public boolean accept(IProject project) {
73 ProjectState state = Sdk.getProjectState(project);
234 IProject project = mAvailableProjects[i].getProject(); local
    [all...]
AndroidManifestHelper.java 2 * Copyright (C) 2007 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
20 import com.android.ide.eclipse.adt.internal.project.XmlErrorHandler.XmlErrorListener;
102 * Parses the Android Manifest for a given project, and returns an object containing
111 * @param javaProject the project containing the manifest to parse.
152 * @param project the project containing the manifest.
155 public static ManifestData parseForData(IProject project) {
156 IFile manifestFile = ProjectHelper.getManifest(project);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/
NdkManager.java 2 * Copyright (C) 2010, 2011 The Android Open Source Project
60 public static void addNativeSupport(final IProject project, Map<String, String> templateArgs,
63 // Launch our template to set up the project contents
66 valueStore.put("projectName", project.getName()); //$NON-NLS-1$
70 // refresh project resources
71 project.refreshLocal(IResource.DEPTH_INFINITE, new SubProgressMonitor(monitor, 10));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
CreateAssetSetWizard.java 2 * Copyright (C) 2011 The Android Open Source Project
21 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
22 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper.IProjectFilter;
99 IProject project = getProject(); local
101 // Write out the images into the project
109 IFile file = project.getFile(dest);
172 selectFiles(project, mCreatedFiles);
177 private void selectFiles(IProject project, List<? extends IResource> createdFiles) {
186 javaProject = BaseProjectHelper.getJavaProject(project);
208 // project
280 IProject project = res != null ? res.getProject() : null; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
RenderScriptProcessor.java 2 * Copyright (C) 2011 The Android Open Source Project
25 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
136 IProject project, IAndroidTarget projectTarget, int targetApi,
144 IFolder rawFolder = project.getFolder(
178 // remove the generic marker from the project
179 builder.removeMarkersFromResource(project, AdtConstants.MARKER_RENDERSCRIPT);
191 AdtPlugin.printToConsole(project, "RenderScript: " + name);
212 if (execLlvmRsCc(builder, project, command, sourceFile, verbose) == false) {
231 private boolean execLlvmRsCc(BaseBuilder builder, IProject project, String[] command,
242 AdtPlugin.printToConsole(project, cmd_line)
310 IProject project = getJavaProject().getProject(); local
482 IProject project = getJavaProject().getProject(); local
    [all...]
AidlProcessor.java 2 * Copyright (C) 2011 The Android Open Source Project
24 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
94 IProject project, IAndroidTarget projectTarget, int targetApi,
103 // since the path are relative to the workspace and not the project itself, we need
115 // remove the generic marker from the project
116 builder.removeMarkersFromResource(project, AdtConstants.MARKER_AIDL);
128 AdtPlugin.printToConsole(project, "AIDL: " + name);
156 if (execAidl(builder, project, command, sourceFile, verbose) == false) {
192 private boolean execAidl(BaseBuilder builder, IProject project, String[] command, IFile file,
203 AdtPlugin.printToConsole(project, cmd_line)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewExportPart.java 2 * Copyright (C) 2007 The Android Open Source Project
21 import com.android.ide.eclipse.adt.internal.project.ExportHelper;
54 final IProject project = getProject(); local
56 if (project != null) {
57 ProjectState state = Sdk.getProjectState(project);
64 section.setDescription("Library project cannot be exported.");
89 if (project != null) {
91 // now we can export an unsigned apk for the project.
92 ExportHelper.exportUnsignedReleaseApk(project);
95 StructuredSelection selection = new StructuredSelection(project);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 2 * Copyright (C) 2007 The Android Open Source Project
24 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
25 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
26 import com.android.ide.eclipse.adt.internal.project.XmlErrorHandler;
27 import com.android.ide.eclipse.adt.internal.project.XmlErrorHandler.XmlErrorListener;
179 * Adds a marker to the current project. This methods catches thrown {@link CoreException},
241 * Saves a String property into the persistent storage of the project.
247 IProject project = getProject(); local
248 return ProjectHelper.saveStringProperty(project, propertyName, value);
253 * Loads a String property from the persistent storage of the project
258 IProject project = getProject(); local
269 IProject project = getProject(); local
280 IProject project = getProject(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 2 * Copyright (C) 2008 The Android Open Source Project
25 import com.android.ide.eclipse.adt.internal.project.AndroidClasspathContainerInitializer;
26 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
27 import com.android.ide.eclipse.adt.internal.project.LibraryClasspathContainerInitializer;
42 import com.android.sdklib.internal.project.ProjectProperties;
43 import com.android.sdklib.internal.project.ProjectPropertiesWorkingCopy;
44 import com.android.sdklib.internal.project.ProjectProperties.PropertyType;
132 * Sent when project has its target changed.
161 * if {@link #getProject()} and the {@link IAndroidTarget} associated with the project
174 IProject project = getProject() local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 2 * Copyright (C) 2008 The Android Open Source Project
42 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
43 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper.IProjectFilter;
44 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper;
45 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper.ProjectCombo;
98 * This page is used to select the project, resource type and file name.
106 // to edit the default text field (the project name)
187 * @param project the associated project, or null if not known
189 String getDefaultRoot(IProject project) {
634 IProject project = res != null ? res.getProject() : null; local
803 IProject project = mValues.project; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 2 * Copyright (C) 2010 The Android Open Source Project
20 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper;
21 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper.IProjectChooserFilter;
25 import com.android.sdklib.internal.project.ProjectProperties;
26 import com.android.sdklib.internal.project.ProjectPropertiesWorkingCopy;
55 * Self-contained UI to edit the library dependencies of a Project.
87 IProject project; field in class:LibraryProperties.ItemData
95 public boolean accept(IProject project) {
97 ProjectState state = Sdk.getProjectState(project);
99 if (state.isLibrary() == false || project == mState.getProject())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
GlobalProjectMonitor.java 2 * Copyright (C) 2007 The Android Open Source Project
22 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
44 * The Global Project Monitor tracks project file changes, and forward them to simple project,
48 * To track project resource changes, use the monitor in the {@link ResourceManager}. It is more
77 * Classes which implements this interface provide methods dealing with project events.
81 * Sent for each opened android project at the time the listener is put in place.
82 * @param project the opened project
233 IProject project = (IProject)r; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceExplorerView.java 2 * Copyright (C) 2007 The Android Open Source Project
68 * of the project of the current selected item (either item in the package explorer, or of the
195 // get the file project
196 IProject project = file.getProject(); local
198 handleProjectSelection(project);
205 IProject project = null; local
210 project = ((IResource) element).getProject();
216 project = javaProject.getProject();
219 // finally we try to get a project object from IAdaptable.
220 project = (IProject) ((IAdaptable) element
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreator.java 2 * Copyright (C) 2007 The Android Open Source Project
28 import com.android.ide.eclipse.adt.internal.project.AndroidNature;
29 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
86 * The actual project creator invoked from the New Project Wizard
202 * Before actually creating the project for a new project (as opposed to using an
203 * existing project), we check if the target location is a directory that either does
208 * @param destination The destination folder where the new project is to be created.
215 return AdtPlugin.displayPrompt("New Android Project",
293 final IProject project = workspace.getRoot().getProject(mValues.projectName); local
349 final IProject project = workspace.getRoot().getProject(projectName); local
1047 IProject project = javaProject.getProject(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/templates/
SimpleFile.java 2 * Copyright (C) 2011 The Android Open Source Project
80 IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(projectName); local
81 if (!project.exists())
91 IFile destFile = project.getFile(new Path(op.destination));
97 mkDirs(project, destFile.getParent(), monitor);
117 private void mkDirs(IProject project, IContainer container, IProgressMonitor monitor)
121 mkDirs(project, container.getParent(), monitor);
  /ndk/tests/device/test-gabi++/jni/
Application.mk 2 # build.sh in the project tree will check
  /sdk/build/
windows_sdk_tools.mk 4 # to device which tools we want to build from the sdk.git project.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AndroidPrintStream.java 2 * Copyright (C) 2010 The Android Open Source Project
26 * Custom PrintStream allowing to precede the message with a tag containing data/project info.
37 * Default constructor with project and output stream.
38 * The project is used to get the project name for the output tag.
40 * @param project The Project
44 public AndroidPrintStream(IProject project, String prefix, OutputStream stream) {
46 mProject = project;
59 // write the date/project tag first
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
AndroidJUnitLaunchInfo.java 2 * Copyright (C) 2009 The Android Open Source Project
38 public AndroidJUnitLaunchInfo(IProject project, String appPackage, String runner) {
39 mProject = project;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringDescriptor.java 2 * Copyright (C) 2009 The Android Open Source Project
37 public ExtractStringDescriptor(String project, String description, String comment,
39 super(ID, project, description, comment,

Completed in 428 milliseconds

1 23 4 5 6 7 8 91011>>