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

1 2 3 4 5 6 7 8 91011>>

  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/
IPropertySource.java 2 * Copyright (C) 2012 The Android Open Source Project
17 package com.android.sdklib.internal.project;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ApkInstallManager.java 2 * Copyright (C) 2009 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
41 * (project generating the) APK. This ensures that disconnected and reconnected devices will
51 * Internal struct to associate a project and a device.
54 public ApkInstall(IProject project, String packageName, IDevice device) {
55 this.project = project;
65 return (device == apkObj.device && project.equals(apkObj.project) &&
74 return (device.getSerialNumber() + project.getName() + packageName).hashCode()
77 final IProject project; field in class:ApkInstallManager.ApkInstall
    [all...]
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.
51 * De-configures this nature for its project. This is called by the
52 * workspace when natures are removed from the project using
59 * removed from the project description
    [all...]
BaseClasspathContainerInitializer.java 2 * Copyright (C) 2012 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
39 * Adds an error to a project, or remove all markers if error message is null
40 * @param project the project to modify
45 protected static void processError(final IProject project, final String errorMessage,
48 // log the error and put the marker on the project if we can.
50 AdtPlugin.printErrorToConsole(project, errorMessage);
54 BaseProjectHelper.markProject(project, markerType,
65 BaseProjectHelper.markProject(project,
    [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.
66 * De-configures this nature for its project. This is called by the
67 * workspace when natures are removed from the project using
74 * removed from the project description
    [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;
116 // get the project
117 IProject project = getProject(configuration); local
126 AdtPlugin.printErrorToConsole(project, "Wrong Launch Type!");
137 if (project == null) {
138 AdtPlugin.printErrorToConsole("Couldn't get project object!");
143 // make sure the project and its dependencies are built
147 ProjectHelper.doFullIncrementalDebugBuild(project, monitor)
    [all...]
LaunchShortcut.java 2 * Copyright (C) 2007 The Android Open Source Project
48 // get the object and the project from it
56 // get the project from the resource
58 IProject project = r.getProject(); local
60 if (project != null) {
61 ProjectState state = Sdk.getProjectState(project);
70 launch(project, mode);
90 * Launch a config for the specified project.
91 * @param project The project to launc
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
DebuggerConnector.java 2 * Copyright (C) 2010 The Android Open Source Project
20 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
47 // search for an android project matching the process name
48 IProject project = ProjectHelper.findAndroidProjectByAppName(appName); local
49 if (project != null) {
50 AndroidLaunchController.debugRunningApp(project, appPort);
64 * A cache of Android application name to workspace project name mappings.
67 * (project open/close/delete etc), and keeps its internal mappings up-to-date.<br>
73 * number of user initiated project changes (project open/close/delete/rename) are bot
    [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;
  /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
20 import com.android.ide.eclipse.adt.internal.project.ExportHelper;
55 // get the project object from it.
56 IProject project = null; local
58 project = (IProject) element;
60 project = (IProject) ((IAdaptable) element).getAdapter(IProject.class);
64 if (project != null) {
65 if (!EclipseLintRunner.runLintOnExport(mShell, project)) {
69 ProjectState state = Sdk.getProjectState(project);
74 ExportHelper.exportUnsignedReleaseApk(project);
    [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
20 import com.android.ide.eclipse.adt.internal.project.AndroidNature;
21 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
42 * Action to fix the project properties:
66 IProject project = null; local
68 project = (IProject) element;
70 project = (IProject) ((IAdaptable) element)
73 if (project != null) {
74 fixProject(project);
85 private void fixProject(final IProject project) {
    [all...]
DexDumpAction.java 2 * Copyright (C) 2010 The Android Open Source Project
56 * Runs dexdump on the classes.dex of a selected project.
72 IProject project = null; local
74 project = (IProject)element;
76 project = (IProject)((IAdaptable)element).getAdapter(IProject.class);
78 if (project != null) {
79 dexDumpProject(project);
93 * @param project on which to run dexdump.
95 private void dexDumpProject(final IProject project) {
99 return runDexDump(project, monitor)
    [all...]
  /external/webkit/Tools/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/resources/manager/
ResourceManager.java 2 * Copyright (C) 2007 The Android Open Source Project
61 * It provide direct access to all the resources of a project as a {@link ProjectResources}
81 * Map associating project resource with project objects.
97 * @param project the project of the file.
101 void fileChanged(IProject project, ResourceFile file, int eventType);
104 * @param project the project of the file.
108 void folderChanged(IProject project, ResourceFolder folder, int eventType)
231 final IProject project = folder.getProject(); local
316 final IProject project = file.getProject(); local
451 IProject project = file.getProject(); local
466 IProject project = folder.getProject(); local
    [all...]
CompiledResourcesMonitor.java 2 * Copyright (C) 2007 The Android Open Source Project
22 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
23 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
84 IProject project = file.getProject(); local
88 String className = getRClassName(project);
92 "fileChanged: failed to find manifest package for project %1$s", //$NON-NLS-1$
93 project.getName());
99 loadAndParseRClass(project, className);
106 * For example, /project/bin/classes/com/foo/app/R.class should match com.foo.app.R
136 * Processes project close event
    [all...]
  /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
89 * @param libraryModified <code>true</code> if the changeFlags are not for the project
117 * @param project
120 public void addListener(IProject project, ILayoutReloadListener listener) {
122 List<ILayoutReloadListener> list = mListenerMap.get(project);
125 mListenerMap.put(project, list);
135 public void removeListener(IProject project, ILayoutReloadListener listener) {
137 List<ILayoutReloadListener> list = mListenerMap.get(project);
172 * This records the changes for each project, but does not notify listeners.
176 // get the file's project
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ProjectLintConfiguration.java 2 * Copyright (C) 2011 The Android Open Source Project
25 import com.android.tools.lint.detector.api.Project;
42 ProjectLintConfiguration(LintClient client, Project project,
44 super(client, project, parent);
48 private static ProjectLintConfiguration create(LintClient client, IProject project,
50 File dir = AdtUtils.getAbsolutePath(project).toFile();
51 Project lintProject = client.getProject(dir, dir);
55 public static ProjectLintConfiguration get(LintClient client, IProject project,
60 return create(client, project, GlobalLintConfiguration.get(), true)
    [all...]
  /external/llvm/utils/release/
merge.sh 11 # Merge a revision into a project.
22 echo " -proj PROJECT The project to merge the result into"
23 echo " -rev NUM The revision to merge into the project"
32 -proj | --proj | -project | --project | -p )
50 echo "error: need to specify project and revision"
56 if ! svn ls http://llvm.org/svn/llvm-project/$proj/trunk > /dev/null 2>&1 ; then
57 echo "error: invalid project: $proj"
64 svn log -c $rev http://llvm.org/svn/llvm-project/$proj/trunk >> $tempfile 2>&
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/actions/
AddNativeAction.java 2 * Copyright (C) 2011 The Android Open Source Project
37 IProject project = null; local
43 project = (IProject) obj;
45 project = (IProject) ((PlatformObject) obj).getAdapter(IProject.class);
50 if (project != null) {
51 AddNativeWizard wizard = new AddNativeWizard(project, mPart.getSite()
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkMainLaunchConfigTab.java 2 * Copyright (C) 2012 The Android Open Source Project
20 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper.IProjectChooserFilter;
33 public boolean accept(IProject project) {
34 ProjectState state = Sdk.getProjectState(project);
40 && (CoreModel.hasCCNature(project) || CoreModel.hasCNature(project));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
TestTargetPage.java 2 * Copyright (C) 2011 The Android Open Source Project
18 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
19 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper;
44 * Page shown when creating a test project which lets you choose between testing
45 * yourself and testing a different project
64 setDescription("Choose a project to test");
80 mCurrentRadioButton.setText("This project");
85 mExistingRadioButton.setText("An existing Android project:");
104 for (IJavaProject project : androidProjects) {
105 if (project.getProject() == mValues.testedProject)
133 IProject project = getSelectedProject(); local
172 IProject project = getSelectedProject(); local
183 IProject project = selection != null && selection.length == 1 local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
setup.sh 15 project=$2;
17 echo "[`date +%H:%M:%S`] Check out $checkoutdir/$project from $CVSROOT ...";
18 cvs -d :pserver:anonymous@dev.eclipse.org:$CVSROOT $quietcvs co $project;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
ResourceManagerBuilder.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;
68 // Get the project.
69 IProject project = getProject(); local
71 // Clear the project of the generic markers
72 removeMarkersFromContainer(project, AdtConstants.MARKER_ADT);
75 // build() returns a list of project from which this project depends for future compilation.
80 // Get the project
81 final 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
  /ndk/tests/build/project-properties/jni/
Android.mk 6 $(call ndk_log,Test OK: Correct target platform retrieved from project.properties: $(TARGET_PLATFORM))

Completed in 775 milliseconds

1 2 3 4 5 6 7 8 91011>>