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

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidExportNature.java 2 * Copyright (C) 2010 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
24 * Project nature for the Android Export Projects.
28 /** the project this nature object is associated with */
32 * Configures this nature for its project. This is called by the workspace
33 * when natures are added to the project using
40 * the project description.
50 * De-configures this nature for its project. This is called by the
51 * workspace when natures are removed from the project using
58 * removed from the project description
    [all...]
ApkInstallManager.java 2 * Copyright (C) 2009 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
42 * (project generating the) APK. This ensures that disconnected and reconnected devices will
52 * Internal struct to associate a project and a device.
55 public ApkInstall(IProject project, String packageName, IDevice device) {
56 this.project = project;
66 return (device == apkObj.device && project.equals(apkObj.project) &&
75 return (device.getSerialNumber() + project.getName() + packageName).hashCode()
78 final IProject project; field in class:ApkInstallManager.ApkInstall
    [all...]
AndroidNature.java 2 * Copyright (C) 2007 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
35 * Project nature for the Android Projects.
39 /** the project this nature object is associated with */
43 * Configures this nature for its project. This is called by the workspace
44 * when natures are added to the project using
51 * the project description.
65 * De-configures this nature for its project. This is called by the
66 * workspace when natures are removed from the project using
73 * removed from the project description
    [all...]
ExportHelper.java 2 * Copyright (C) 2008 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
41 * Export helper for project.
48 void startExportWizard(IProject project);
55 public static void startExportWizard(IProject project) {
57 sCallback.startExportWizard(project);
62 * Exports an <b>unsigned</b> version of the application created by the given project.
63 * @param project the project to export
65 public static void exportProject(IProject project) {
    [all...]
BaseProjectHelper.java 2 * Copyright (C) 2007 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
65 * Project filter to be used with {@link BaseProjectHelper#getAndroidProjects(IProjectFilter)}.
68 boolean accept(IProject project);
72 * returns a list of source classpath for a specified project
90 * returns a list of source classpath for a specified project
91 * @param project
94 public static ArrayList<IPath> getSourceClasspaths(IProject project) {
95 IJavaProject javaProject = JavaCore.create(project);
127 // on Windows, when adding a marker to a project, it takes a refresh for the marke
389 IProject project = javaProject.getProject(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
FixProjectAction.java 2 * Copyright (C) 2007 The Android Open Source Project
19 import com.android.ide.eclipse.adt.internal.project.AndroidNature;
20 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
41 * Action to fix the project properties:
63 IProject project = null; local
65 project = (IProject) element;
67 project = (IProject) ((IAdaptable) element)
70 if (project != null) {
71 fixProject(project);
81 private void fixProject(final IProject project) {
    [all...]
ConvertToAndroidAction.java 2 * Copyright (C) 2007 The Android Open Source Project
21 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
43 * Converts a project created with the activity creator into an
44 * Android project.
68 IProject project = null; local
70 project = (IProject)element;
72 project = (IProject)((IAdaptable)element).getAdapter(IProject.class);
74 if (project != null) {
75 convertProject(project);
91 * Toggles sample nature on a project
    [all...]
MultiApkExportAction.java 2 * Copyright (C) 2010 The Android Open Source Project
21 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
31 import com.android.sdklib.internal.project.ProjectProperties;
32 import com.android.sdklib.internal.project.ProjectProperties.PropertyType;
67 * The action is triggered on a project selection, and performs a full APK export based on the
82 IProject project = null; local
84 project = (IProject)element;
86 project = (IProject)((IAdaptable)element).getAdapter(IProject.class);
88 if (project != null) {
90 final IProject fProject = project;
193 IProject project = (IProject)res; local
249 IProject project = projectState.getProject(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchConfigDelegate.java 2 * Copyright (C) 2007 The Android Open Source Project
23 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
24 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
117 // get the project
118 IProject project = getProject(configuration); local
127 AdtPlugin.printErrorToConsole(project, "Wrong Launch Type!");
138 if (project == null) {
139 AdtPlugin.printErrorToConsole("Couldn't get project object!");
144 // check if the project has errors, and abort in this case.
145 if (ProjectHelper.hasError(project, true))
328 IProject project = getProject(configuration); local
    [all...]
LaunchShortcut.java 2 * Copyright (C) 2007 The Android Open Source Project
47 // get the object and the project from it
55 // get the project from the resource
57 IProject project = r.getProject(); local
59 if (project != null) {
60 ProjectState state = Sdk.getProjectState(project);
69 launch(project, mode);
88 * Launch a config for the specified project.
89 * @param project The project to launc
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ResourceManager.java 2 * Copyright (C) 2007 The Android Open Source Project
54 * It provide direct access to all the resources of a project as a {@link ProjectResources}
76 * Map associating project resource with project objects.
92 * @param project the project of the file.
96 void fileChanged(IProject project, ResourceFile file, int eventType);
99 * @param project the project of the file.
103 void folderChanged(IProject project, ResourceFolder folder, int eventType)
383 IProject project = file.getProject(); local
398 IProject project = folder.getProject(); local
    [all...]
CompiledResourcesMonitor.java 2 * Copyright (C) 2007 The Android Open Source Project
21 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
22 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
84 * Processes project close event.
86 public void projectClosed(IProject project) {
91 * Processes project delete event.
93 public void projectDeleted(IProject project) {
98 * Processes project open event.
100 public void projectOpened(IProject project) {
101 // when the project is opened, we get an ADDED event for each file, so we don'
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringWizard.java 2 * Copyright (C) 2009 The Android Open Source Project
36 * @param project The project where the wizard was invoked from (e.g. where the user selection
37 * happened, so that we can retrieve project resources.)
39 public ExtractStringWizard(ExtractStringRefactoring ref, IProject project) {
41 mProject = project;
XmlStringFileHelper.java 2 * Copyright (C) 2009 The Android Open Source Project
44 * project path of the file, the data is a set of known string Ids for that file.
60 * @param project The project contain the XML file.
61 * @param xmlFileWsPath The project path of the XML file, e.g. "/res/values/strings.xml".
66 public String valueOfStringId(IProject project, String xmlFileWsPath, String stringId) {
67 Map<String, String> cache = getResIdsForFile(project, xmlFileWsPath);
76 * @param project The project contain the XML file.
77 * @param xmlFileWsPath The project path of the XML file, e.g. "/res/values/strings.xml"
    [all...]
  /external/webkit/WebKitTools/Scripts/
print-msvc-project-dependencies 60 if ($line =~ /^Project\([^\)]+\) = "([^"]+)", "[^"]+", "([^"]+)"\r?$/) {
64 warn "Warning: Project $name appears more than once in $sln; using first definition\n";
100 warn "Warning: UUID $uuid1 listed more than once as dependency of project ", $currentProject->{name}, "\n";
104 $uuid1 eq $uuid2 or warn "Warning: UUIDs in depedency section of project ", $currentProject->{name}, " don't match: $uuid1 $uuid2; using first UUID\n";
130 foreach my $project (values %projectsNotDependedUpon) {
131 printProjectAndDependencies($project, 0, \%projectsByUUID);
137 my ($project, $indentLevel, $projectsByUUID) = @_;
139 print " " x $indentLevel, $project->{name}, "\n";
140 foreach my $dependencyUUID (keys %{$project->{dependencies}}) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
ExportAction.java 2 * Copyright (C) 2007 The Android Open Source Project
19 import com.android.ide.eclipse.adt.internal.project.ExportHelper;
52 // get the project object from it.
53 IProject project = null; local
55 project = (IProject) element;
57 project = (IProject) ((IAdaptable) element).getAdapter(IProject.class);
61 if (project != null) {
62 ProjectState state = Sdk.getProjectState(project);
67 ExportHelper.exportProject(project);
ExportWizardAction.java 2 * Copyright (C) 2008 The Android Open Source Project
54 // get the project object from it.
55 IProject project = null; local
57 project = (IProject) element;
59 project = (IProject) ((IAdaptable) element).getAdapter(IProject.class);
63 if (project != null) {
64 ProjectState state = Sdk.getProjectState(project);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutReloadMonitor.java 2 * Copyright (C) 2008 The Android Open Source Project
86 * @param libraryModified <code>true</code> if the changeFlags are not for the project
114 * @param project
117 public void addListener(IProject project, ILayoutReloadListener listener) {
119 List<ILayoutReloadListener> list = mListenerMap.get(project);
122 mListenerMap.put(project, list);
132 public void removeListener(IProject project, ILayoutReloadListener listener) {
134 List<ILayoutReloadListener> list = mListenerMap.get(project);
166 * This records the changes for each project, but does not notify listeners.
169 // get the file project
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ResourceManagerBuilder.java 2 * Copyright (C) 2007 The Android Open Source Project
23 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
24 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
62 // Get the project.
63 IProject project = getProject(); local
65 // Clear the project of the generic markers
66 removeMarkersFromProject(project, AndroidConstants.MARKER_ADT);
69 // build() returns a list of project from which this project depends for future compilation.
74 // Get the project
75 IProject project = getProject(); local
    [all...]
BaseBuilder.java 2 * Copyright (C) 2007 The Android Open Source Project
22 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
23 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
24 import com.android.ide.eclipse.adt.internal.project.XmlErrorHandler;
25 import com.android.ide.eclipse.adt.internal.project.XmlErrorHandler.XmlErrorListener;
179 * Adds a marker to the current project. This methods catches thrown {@link CoreException},
227 * Removes markers from a project and its children.
228 * @param project The project from which to delete the markers
232 protected final static void removeMarkersFromProject(IProject project,
329 IProject project = getProject(); local
340 IProject project = getProject(); local
351 IProject project = getProject(); local
362 IProject project = getProject(); local
    [all...]
PostCompilerBuilder.java 2 * Copyright (C) 2007 The Android Open Source Project
22 import com.android.ide.eclipse.adt.internal.project.ApkInstallManager;
23 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
24 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
59 /** This ID is used in plugin.xml and in each project's .project file.
90 * Basic Resource Delta Visitor class to check if a referenced project had a change in its
179 // Get the project.
180 IProject project = getProject(); local
182 // Clear the project of the generic marker
193 IProject project = getProject(); local
    [all...]
PreCompilerBuilder.java 2 * Copyright (C) 2007 The Android Open Source Project
23 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
24 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
25 import com.android.ide.eclipse.adt.internal.project.FixLaunchConfig;
26 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
27 import com.android.ide.eclipse.adt.internal.project.XmlErrorHandler.BasicXmlErrorListener;
73 /** This ID is used in plugin.xml and in each project's .project file.
119 * stored in the project persistent properties. This allows the builder to remember its state
120 * when the project is closed/opened
217 IProject project = getProject(); local
548 IProject project = getProject(); local
    [all...]
  /ndk/build/tools/
cleanup-apps.sh 3 # This is used to cleanup the project directories before making a commit or
5 # apps/<name>/project directories.
7 for projectPath in `find apps/*/project` ; do
  /external/libpng/projects/visualc71/
README_zlib.txt 5 Microsoft Developer Studio Project File, Format Version 7.10 for zlib.
19 3) Set one of the project as the StartUp project. If you just want to build the
20 binaries set "zlib" as the startup project (Select "zlib" tree view item +
21 Project | Set as StartUp project). If you want to build and test the
22 binaries set it to "example" (Select "example" tree view item + Project |
23 Set as StartUp project), If you want to build the minigzip utility set it to
24 "minigzip" (Select "minigzip" tree view item + Project | Set as StartUp
25 project
    [all...]
  /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.ProjectHelper;
25 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper.NonLibraryProjectOnlyFilter;
71 setTitle("Project Checks");
87 // composite for the project selection.
96 label.setText("Select the project to export:");
98 new Label(projectComposite, SWT.NONE).setText("Project:")
133 IProject project = mWizard.getProject(); local
    [all...]

Completed in 2704 milliseconds

1 2 3 4 5 6 7 8 91011>>