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

12 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PostCompilerBuilder.java 2 * Copyright (C) 2007 The Android Open Source Project
32 import com.android.ide.eclipse.adt.internal.project.ApkInstallManager;
33 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
34 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
78 /** This ID is used in plugin.xml and in each project's .project file.
122 * Basic Resource Delta Visitor class to check if a referenced project had a change in its
218 // Get the project.
219 IProject project = getProject(); local
221 // Clear the project of the generic marker
246 IProject project = getProject(); local
    [all...]
PreCompilerBuilder.java 2 * Copyright (C) 2007 The Android Open Source Project
28 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
29 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
30 import com.android.ide.eclipse.adt.internal.project.FixLaunchConfig;
31 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
32 import com.android.ide.eclipse.adt.internal.project.XmlErrorHandler.BasicXmlErrorListener;
77 /** This ID is used in plugin.xml and in each project's .project file.
87 * stored in the project persistent properties. This allows the builder to remember its state
88 * when the project is closed/opened
195 IProject project = getProject(); local
576 IProject project = getProject(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 2 * Copyright (C) 2007 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
67 * Project filter to be used with {@link BaseProjectHelper#getAndroidProjects(IProjectFilter)}.
70 boolean accept(IProject project);
74 * returns a list of source classpath for a specified project
92 * returns a list of source classpath for a specified project
93 * @param project
96 public static List<IPath> getSourceClasspaths(IProject project) {
97 IJavaProject javaProject = JavaCore.create(project);
154 // on Windows, when adding a marker to a project, it takes a refresh for the marke
427 IProject project = javaProject.getProject(); local
    [all...]
ProjectHelper.java 2 * Copyright (C) 2007 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
55 * Utility class to manipulate Project parameters/properties.
65 * This method does not check whether the entry is already defined in the project.
81 * Adds the corresponding source folder to the project's class path entries.
82 * This method does not check whether the entry is already defined in the project.
84 * @param javaProject The java project of which path entries to update.
97 * Checks whether the given class path entry is already defined in the project.
99 * @param javaProject The java project of which path entries to check.
139 * attributes of a project
    [all...]
FolderDecorator.java 2 * Copyright (C) 2008 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
49 // get the project and make sure this is an android project
50 IProject project = folder.getProject(); local
51 if (project == null || !project.exists() || !folder.exists()) {
56 if (project.hasNature(AdtConstants.NATURE_DEFAULT)) {
57 // check the folder is directly under the project.
58 if (folder.getParent().getType() == IResource.PROJECT) {
    [all...]
ExportHelper.java 2 * Copyright (C) 2008 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
33 import com.android.sdklib.internal.project.ProjectProperties;
71 * Exports a release version of the application created by the given project.
72 * @param project the project to export
78 public static void exportReleaseApk(IProject project, File outputFile, PrivateKey key,
84 ProjectHelper.build(project, monitor, true, true);
96 IResource manifestResource = project.findMember(SdkConstants.FN_ANDROID_MANIFEST_XML);
112 BuildHelper helper = new BuildHelper(project,
    [all...]
  /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/actions/
ExportWizardAction.java 2 * Copyright (C) 2008 The Android Open Source Project
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) {
66 mWorkbench.getActiveWorkbenchWindow().getShell(), project)) {
70 ProjectState state = Sdk.getProjectState(project);
  /external/webkit/Source/gyp/
configure 44 class Project:
71 'xcode': os.path.join(self._name + '.xcodeproj', 'project.pbxproj'),
116 Project("JavaScriptCore"),
117 Project("WebCore"),
121 should_generate = [project for project in PROJECTS if project.should_generate(port)]
122 already_generated = [project.name() for project in set(PROJECTS) - set(should_generate)]
139 help="Generate all project files even if they appear to be up to date."
    [all...]
  /external/webkit/Tools/Scripts/
make-gypi 60 def build_gypi(project):
61 key = project.lower() + '_files'
  /ndk/build/core/
build-local.mk 1 # Copyright (C) 2010 The Android Open Source Project
44 # If NDK_PROJECT_PATH is not defined, find the application's project
53 # libraries without a full Android project tree.
57 find-project-dir = $(strip $(call find-project-dir-inner,$(abspath $1),$2))
59 find-project-dir-inner = \
63 $(call find-project-dir-inner-2)\
66 find-project-dir-inner-2 = \
76 $(call find-project-dir-inner-2)\
91 NDK_PROJECT_PATH := $(call find-project-dir,.,jni/Android.mk
    [all...]
  /ndk/tests/build/import-install/path1/
Android.mk 2 # by the main project's binary. Note that it imports
  /ndk/tests/build/import-install/path2/
Android.mk 2 # by 'libpath1', and hence by the project's main binary
  /ndk/tests/build/prebuild-stlport/jni/
Android.mk 1 # See README to understand what this project does.
  /ndk/tests/device/test-stlport-rtti/jni/
Application.mk 2 # build.sh in the project tree will check
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
OpenCreateAssetSetWizardAction.java 2 * Copyright (C) 2011 The Android Open Source Project
34 * @param project the initial project to associate with the wizard
36 public OpenCreateAssetSetWizardAction(IProject project) {
37 mProject = project;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutContribution.java 2 * Copyright (C) 2011 The Android Open Source Project
27 public RefactoringDescriptor createDescriptor(String id, String project, String description,
29 return new ChangeLayoutRefactoring.Descriptor(project, description, comment, arguments);
ChangeViewContribution.java 2 * Copyright (C) 2011 The Android Open Source Project
27 public RefactoringDescriptor createDescriptor(String id, String project, String description,
29 return new ChangeViewRefactoring.Descriptor(project, description, comment, arguments);
ExtractIncludeContribution.java 2 * Copyright (C) 2011 The Android Open Source Project
27 public RefactoringDescriptor createDescriptor(String id, String project, String description,
29 return new ExtractIncludeRefactoring.Descriptor(project, description, comment, arguments);
ExtractStyleContribution.java 2 * Copyright (C) 2011 The Android Open Source Project
27 public RefactoringDescriptor createDescriptor(String id, String project, String description,
29 return new ExtractStyleRefactoring.Descriptor(project, description, comment, arguments);
UnwrapContribution.java 2 * Copyright (C) 2011 The Android Open Source Project
27 public RefactoringDescriptor createDescriptor(String id, String project, String description,
29 return new UnwrapRefactoring.Descriptor(project, description, comment, arguments);
WrapInContribution.java 2 * Copyright (C) 2011 The Android Open Source Project
27 public RefactoringDescriptor createDescriptor(String id, String project, String description,
29 return new WrapInRefactoring.Descriptor(project, description, comment, arguments);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringContribution.java 2 * Copyright (C) 2009 The Android Open Source Project
36 String project,
42 return new ExtractStringDescriptor(project, description, comment, arguments);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
CyclicDependencyValidator.java 2 * Copyright (C) 2011 The Android Open Source Project
52 IProject project = file.getProject(); local
53 IncludeFinder includeFinder = IncludeFinder.get(project);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
SourceProcessor.java 2 * Copyright (C) 2011 The Android Open Source Project
20 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
21 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
92 IProject project = javaProject.getProject(); local
100 boolean mustCompile = loadState(project);
185 public final void prepareFullBuild(IProject project) {
196 saveState(project);
199 public final void doneVisiting(IProject project) {
205 saveState(project);
221 IProject project, IAndroidTarget projectTarget, int minSdkVersion
    [all...]

Completed in 132 milliseconds

12 3 4 5 6 7 8 91011>>