HomeSort by relevance Sort by last modified time
    Searched full:project (Results 276 - 300 of 45849) sorted by null

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
CompatibilityLibraryHelper.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...]
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...]
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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
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...]
AddCompatibilityJarAction.java 2 * Copyright (C) 2011 The Android Open Source Project
25 import com.android.sdklib.internal.project.ProjectProperties;
26 import com.android.sdklib.internal.project.ProjectProperties.PropertyType;
27 import com.android.sdklib.internal.project.ProjectPropertiesWorkingCopy;
65 * to the selected project.
90 IProject project = null; local
92 project = (IProject) element;
94 project = (IProject) ((IAdaptable) element)
97 if (project != null) {
98 install(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...]
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
LintClient.java 2 * Copyright (C) 2011 The Android Open Source Project
25 import com.android.tools.lint.detector.api.Project;
60 * Returns a configuration for use by the given project. The configuration
66 * @param project the project to obtain a configuration for
69 public Configuration getConfiguration(@NonNull Project project) {
70 return DefaultConfiguration.create(this, project, null);
75 * provided by {@link #getConfiguration(Project)} has reported the corresponding
175 * @param project the project to look up Java source file locations fo
371 Project project = mDirToProject.get(canonicalDir); local
    [all...]
  /ndk/build/tools/
dev-cleanup.sh 3 # Copyright (C) 2010 The Android Open Source Project
77 for PROJECT in $DIR/tests/build/*; do
78 cleanup_project $PROJECT
80 for PROJECT in $DIR/tests/device/*; do
81 cleanup_project $PROJECT
90 for PROJECT in $DIR/samples/*; do
91 cleanup_project $PROJECT
93 for PROJECT in $DIR/platforms/android-*/samples/*; do
94 cleanup_project $PROJECT
  /docs/source.android.com/src/source/
roles.md 2 Copyright 2010 The Android Open Source Project
19 The Android Open Source Project (AOSP) includes individuals working in a variety
22 the project considers contributions from any source, not just Google. This
26 Android Open Source Project resources. Anyone can join the mailing lists, ask
53 have submitted a significant amount of high-quality code to the project, the
54 Project Leads might invite them to become Verifiers. *Note: at this
59 "Approvers" are experienced members of the project who have demonstrated their
61 project. In the code-review process, an Approver decides whether to include or
62 exclude a change. Project Leads (who are typically employed by Google) choose
64 demonstrated their expertise within a specific project
    [all...]
  /external/libpng/projects/cbuilder5/
libpng.readme.txt 0 Project files to build libpng using Borland C++ Builder v5.0
12 3). Add the following conditional define to your project:
15 4). Add libpng.lib or libpngstat.lib to the project.
16 Build the project.
21 By default, the libpng project uses zlib as a static library. If
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
NewProjectAction.java 2 * Copyright (C) 2009 The Android Open Source Project
25 * Delegate for the toolbar action "Android Project".
26 * It displays the Android New Project wizard to create a new Android Project (not a test project).
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
ApiServiceListener.java 2 * Copyright (C) 2011 The Android Open Source Project
43 * The project edit state
45 * @param projectPath The project path
46 * @param projectEdited true if the project is edited
51 * A new project was created
53 * @param projectPath The project path
54 * @param project The VideoEditor project
59 public void onVideoEditorCreated(String projectPath, VideoEditorProject project,
63 * The project was loade
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
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;
83 /** This ID is used in plugin.xml and in each project's .project file.
99 * stored in the project persistent properties. This allows the builder to remember its state
100 * when the project is closed/opened
219 IProject project = getProject(); local
651 IProject project = getProject(); local
    [all...]
  /external/guava/guava/
pom.xml 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17 This project is a complete packaging of all the Guava libraries
31 <groupId>${project.groupId}</groupId>
33 <version>${project.version}</version>
53 <compilerArgument>-Xbootclasspath/p:${project.build.directory}/dependency/guava-bootstrap-${project.version}.jar</compilerArgument>
135 <docletPath>${project.basedir}/lib/jdiff.jar</docletPath>
137 -XDignore.symbol.file -apiname 'Guava ${project.version}'
140 <reportOutputDirectory>${project.reporting.outputDirectory}</reportOutputDirectory>
147 <finalName>${project.artifactId}-${project.version}</finalName
    [all...]
  /external/smali/maven-smali-plugin/
pom.xml 2 <project>
23 <artifactId>maven-project</artifactId>
32 </project>
  /external/v8/build/
README.txt 1 This directory contains the V8 GYP files used to generate actual project files
8 the V8 project do the following:
34 To generate Xcode project files on Mac OS:
39 This will make an Xcode project for the ia32 architecture. To build and run do:
41 $ xcodebuild -project build/all.xcodeproj
43 $ xcodebuild -project build/all.xcodeproj -configuration Release
47 To generate Visual Studio solution and project files on Windows:
51 the same version as is used by the Chromium project. This can be checked out
52 from the Chromium repository. From the root of the V8 project do the following:
57 is used by the Chromium project. This can also be checked out from the Chromiu
    [all...]
  /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/testapps/buildConfigTest/app/
project.properties 8 # project structure.
11 #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
13 # Project target.
  /sdk/testapps/gridlayoutTest/app/
project.properties 8 # project structure.
11 #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
13 # Project target.
  /sdk/testapps/javaProjectTest/app/
project.properties 8 # project structure.
11 proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
13 # Project target.
  /sdk/testapps/libsAndJarTest/app/
project.properties 8 # project structure.
11 proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
13 # Project target.
  /sdk/testapps/libsAndJarTest/lib1/
project.properties 8 # project structure.
11 #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
13 # Project target.
  /sdk/testapps/testProjectTest/app/
project.properties 8 # project structure.
11 #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
13 # Project target.
  /sdk/testapps/testProjectTest/testlib/
project.properties 8 # project structure.
11 #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
13 # Project target.
  /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 634 milliseconds

<<11121314151617181920>>