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

1 2 3 4 5 6 7 8 91011>>

  /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.
90 find-project-dir = $(strip $(call find-project-dir-inner,$(abspath $1),$2))
92 find-project-dir-inner = \
96 $(call find-project-dir-inner-2)\
99 find-project-dir-inner-2 = \
109 $(call find-project-dir-inner-2)\
138 # current directory is the top of our project path. If this is the case, w
    [all...]
  /external/chromium-trace/trace-viewer/third_party/WebOb/docs/
conf.py 11 project = 'WebOb' variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/bipartite/
projection.py 13 __all__ = ['project',
33 Nodes to project onto (the "bottom" nodes).
135 Nodes to project onto (the "bottom" nodes).
232 Nodes to project onto (the "bottom" nodes).
324 Nodes to project onto (the "bottom" nodes).
407 Nodes to project onto (the "bottom" nodes).
496 def project(B, nodes, create_using=None): function
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
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...]
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);
60 BaseProjectHelper.markProject(project,
85 if (project.isAccessible())
    [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);
  /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);
  /external/chromium-trace/trace-viewer/third_party/Paste/docs/
conf.py 36 project = 'Paste' variable
  /external/chromium-trace/trace-viewer/tracing/build/
benchmarks.py 20 from tvcm import project namespace
vulcanize_trace_viewer.py 26 project = tracing_project.TracingProject() variable
27 project.AddConfigNameOptionToParser(parser)
74 project = tracing_project.TracingProject()
77 project.source_paths.append(p)
79 config_name = project.GetDefaultConfigName()
81 module_names = [project.GetModuleNameForConfigName(config_name)]
84 load_sequence = project.CalcLoadSequenceForModuleNames(
88 sys.stdout.write(project.GetDepsGraphFromModuleNames(module_names))
  /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-trace/trace-viewer/third_party/six/documentation/
conf.py 34 # General information about the project.
35 project = u"six" variable
42 # The version info for the project you're documenting, acts as replacement for
101 # "<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()

Completed in 285 milliseconds

1 2 3 4 5 6 7 8 91011>>