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

1 2 3 4 5 6 7 8 9

  /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.
78 find-project-dir = $(strip $(call find-project-dir-inner,$(abspath $1),$2))
80 find-project-dir-inner = \
84 $(call find-project-dir-inner-2)\
87 find-project-dir-inner-2 = \
97 $(call find-project-dir-inner-2)\
104 # current directory is the top of our project path. If this is the case, w
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseClasspathContainerInitializer.java 2 * Copyright (C) 2012 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
40 * Adds an error to a project, or remove all markers if error message is null
41 * @param project the project to modify
46 protected static void processError(final IProject project, final String errorMessage,
49 // log the error and put the marker on the project if we can.
51 AdtPlugin.printErrorToConsole(project, errorMessage);
55 BaseProjectHelper.markProject(project, markerType,
66 BaseProjectHelper.markProject(project,
    [all...]
SupportLibraryHelper.java 2 * Copyright (C) 2012 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
41 * project rather than a jar library since it has resources. This class provides
42 * support for finding the library project, or downloading and installing it on
56 * <li> (The tool may also offer to adjust the minimum SDK of the project
59 * <li> Check whether the compatibility library is included in the project, and
66 * @param project the project to add the dependency into
72 public static String getTagFor(@NonNull IProject project, @NonNull String tag) {
76 int minSdk = ManifestInfo.get(project).getMinSdkVersion()
164 IProject project = javaProject.getProject(); local
    [all...]
FolderDecorator.java 2 * Copyright (C) 2008 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
50 // get the project and make sure this is an android project
51 IProject project = folder.getProject(); local
52 if (project == null || !project.exists() || !folder.exists()) {
57 if (project.hasNature(AdtConstants.NATURE_DEFAULT)) {
58 // check the folder is directly under the project.
59 if (folder.getParent().getType() == IResource.PROJECT) {
    [all...]
AndroidClasspathContainer.java 2 * Copyright (C) 2007 The Android Open Source Project
17 package 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.
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...]
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...]
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...]
AndroidManifestHelper.java 2 * Copyright (C) 2007 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
22 import com.android.ide.eclipse.adt.internal.project.XmlErrorHandler.XmlErrorListener;
132 * Parses the Android Manifest for a given project, and returns an object containing
141 * @param javaProject the project containing the manifest to parse.
182 * @param project the project containing the manifest.
185 public static ManifestData parseForData(IProject project) {
186 IFile manifestFile = ProjectHelper.getManifest(project);
BaseProjectHelper.java 2 * Copyright (C) 2007 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
69 * Project filter to be used with {@link BaseProjectHelper#getAndroidProjects(IProjectFilter)}.
72 boolean accept(IProject project);
76 * returns a list of source classpath for a specified project
94 * returns a list of source classpath for a specified project
95 * @param project
98 public static List<IPath> getSourceClasspaths(IProject project) {
99 IJavaProject javaProject = JavaCore.create(project);
161 // on Windows, when adding a marker to a project, it takes a refresh for the marke
442 IProject project = javaProject.getProject(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
FixImportsJob.java 2 * Copyright (C) 2010 The Android Open Source Project
78 IProject project = mAndroidManifest.getProject(); local
79 IJavaProject javaProject = JavaCore.create(project);
84 project.build(IncrementalProjectBuilder.INCREMENTAL_BUILD, monitor);
86 IMarker[] markers = project.findMarkers(IMarker.PROBLEM, true, IResource.DEPTH_INFINITE);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
JavaQuickAssistant.java 2 * Copyright (C) 2011 The Android Open Source Project
19 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
58 IProject project = context.getCompilationUnit().getJavaProject().getProject(); local
59 if (project == null || !BaseProjectHelper.isAndroidProject(project)) {
  /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
59 IProject project = file.getProject(); local
60 IncludeFinder includeFinder = IncludeFinder.get(project);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/project/
ProjectHelperTest.java 2 * Copyright (C) 2008 The Android Open Source Project
17 package com.android.ide.eclipse.adt.internal.project;
31 "com.android.ide.eclipse.adt.project.AndroidClasspathContainerInitializer"; //$NON-NLS-1$
48 // create a project with a path to an android .zip
51 Mocks.createClasspathEntry(new Path("Project/src"), //$NON-NLS-1$
56 new Path("Project/bin"));
62 assertEquals("Project/src", fixedEntries[0].getPath().toString());
  /external/chromium_org/third_party/mesa/src/src/gallium/docs/source/
conf.py 39 # General information about the project.
40 project = u'Gallium' variable
43 # The version info for the project you're documenting, acts as replacement for
108 # "<project> v<release> documentation".
  /external/clang/docs/analyzer/
conf.py 42 # General information about the project.
43 project = u'Clang Static Analyzer' variable
46 # The version info for the project you're documenting, acts as replacement for
105 # "<project> v<release> documentation".
231 u'Analyzer Team', 'ClangStaticAnalyzer', 'One line description of project.',
  /external/clang/docs/
conf.py 42 # General information about the project.
43 project = u'Clang' variable
46 # The version info for the project you're documenting, acts as replacement for
105 # "<project> v<release> documentation".
231 u'The Clang Team', 'Clang', 'One line description of project.',
  /external/mesa3d/src/gallium/docs/source/
conf.py 39 # General information about the project.
40 project = u'Gallium' variable
43 # The version info for the project you're documenting, acts as replacement for
108 # "<project> v<release> documentation".
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
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/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.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/files/
android.el 1 ;;;; Copyright 2007 The Android Open Source Project
9 (defvar android-jdb-project-root-history '()
10 "history of project roots supplied to `android-jdb'")
26 (defcustom android-project-root nil
27 "This is where your Android project root is stored."
41 (defun android-read-project-root ()
44 (read-file-name "Android project root: "
45 android-project-root
51 (read-file-name "Android project root: "
52 android-project-roo
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
Projector.java 2 * Copyright (C) 2007 The Android Open Source Project
41 public void project(float[] obj, int objOffset, float[] win, int winOffset) { method in class:Projector
  /external/ceres-solver/docs/source/
conf.py 42 # General information about the project.
43 project = u'Ceres Solver' variable
46 # The version info for the project you're documenting, acts as replacement for
105 # "<project> v<release> documentation".
230 u'Sameer Agarwal & Keir Mierle', 'CeresSolver', 'One line description of project.',
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ShowWithinMenu.java 34 IProject project = file.getProject(); local
35 IncludeFinder finder = IncludeFinder.get(project);

Completed in 433 milliseconds

1 2 3 4 5 6 7 8 9