HomeSort by relevance Sort by last modified time
    Searched full:project (Results 301 - 325 of 51887) sorted by null

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RuleLoader.java 2 * Copyright (C) 2011 The Android Open Source Project
23 import com.android.sdklib.internal.project.ProjectProperties;
41 * per project.
45 * Qualified name for the per-project non-persistent property storing the
46 * {@link RuleLoader} for this project
63 * Returns the {@link RuleLoader} for the given project
65 * @param project the project the loader is associated with
66 * @return an {@RuleLoader} for the given project,
69 public static RuleLoader get(IProject project) {
    [all...]
  /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
19 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
20 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...]
  /development/samples/TicTacToeMain/
README.txt 17 TicTacToeMain is the main project. It defines a main activity that is first
21 To define that TicTacToeMain uses TicTacToeLib as a "project library", the
26 TicTacToeLib is the "project library". It can contain both source code (.java)
28 APK. To define this is a library, the file TicTacToeLib/default.project
35 the main project and the result is used to generate the APK. This means that
36 the main project can either use or redefine behavior from the libraries.
39 To use the main vs library project:
40 - In ADT, just open import both projects and launch the main project.
41 - In Ant, use 'android update project' to create the build files and set the SDK location,
42 and then run 'ant debug' on the main project.
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AndroidPrintStream.java 2 * Copyright (C) 2010 The Android Open Source Project
26 * Custom PrintStream allowing to precede the message with a tag containing data/project info.
37 * Default constructor with project and output stream.
38 * The project is used to get the project name for the output tag.
40 * @param project The Project
44 public AndroidPrintStream(IProject project, String prefix, OutputStream stream) {
46 mProject = project;
59 // write the date/project tag first
    [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...]
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).
  /external/qemu/distrib/sdl-1.2.15/Xcode/SDL/pkg-support/devel-resources/
install.sh 38 echo "Installing project stationary for XCode"
41 echo "Installing project stationary for Project Builder"
46 mkdir -p "$PBXDIR/Project Templates/Application"
49 cp -r "$ROOT/Project Stationary/SDL Application" "$PBXDIR/Project Templates/Application/"
50 cp -r "$ROOT/Project Stationary/SDL Cocoa Application" "$PBXDIR/Project Templates/Application/"
51 cp -r "$ROOT/Project Stationary/SDL Custom Cocoa Application" "$PBXDIR/Project Templates/Application/
    [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;
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...]
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...]
  /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
25 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
26 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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
ProjectCheckPage.java 2 * Copyright (C) 2008 The Android Open Source Project
22 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
23 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
24 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper;
25 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper.NonLibraryProjectOnlyFilter;
26 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
67 setTitle("Project Checks");
83 // composite for the project selection.
92 label.setText("Select the project to export:");
94 new Label(projectComposite, SWT.NONE).setText("Project:")
130 IProject project = mWizard.getProject(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
GlobalProjectMonitor.java 2 * Copyright (C) 2007 The Android Open Source Project
25 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
47 * The Global Project Monitor tracks project file changes, and forward them to simple project,
51 * To track project resource changes, use the monitor in the {@link ResourceManager}. It is more
80 * @param isAndroidProject whether the parent project is an Android Project
87 * Classes which implements this interface provide methods dealing with project events.
91 * Sent for each opened android project at the time the listener is put in place
256 IProject project = (IProject)r; local
    [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
58 * Runs dexdump on the classes.dex of a selected project.
74 IProject project = null; local
76 project = (IProject)element;
78 project = (IProject)((IAdaptable)element).getAdapter(IProject.class);
80 if (project != null) {
81 dexDumpProject(project);
95 * @param project on which to run dexdump.
97 private void dexDumpProject(final IProject project) {
101 return runDexDump(project, monitor)
    [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
91 * @param libraryModified <code>true</code> if the changeFlags are not for the project
119 * @param project
122 public void addListener(IProject project, ILayoutReloadListener listener) {
124 List<ILayoutReloadListener> list = mListenerMap.get(project);
127 mListenerMap.put(project, list);
137 public void removeListener(IProject project, ILayoutReloadListener listener) {
139 List<ILayoutReloadListener> list = mListenerMap.get(project);
174 * This records the changes for each project, but does not notify listeners.
186 // 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
26 import com.android.tools.lint.detector.api.Project;
43 ProjectLintConfiguration(LintClient client, Project project,
45 super(client, project, parent);
49 private static ProjectLintConfiguration create(LintClient client, IProject project,
51 File dir = AdtUtils.getAbsolutePath(project).toFile();
52 Project lintProject = client.getProject(dir, dir);
56 public static ProjectLintConfiguration get(LintClient client, IProject project,
61 return create(client, project, GlobalLintConfiguration.get(), true)
    [all...]
  /ndk/build/tools/
dev-cleanup.sh 3 # Copyright (C) 2010 The Android Open Source Project
79 for PROJECT in $DIR/tests/build/*; do
80 cleanup_project $PROJECT
82 for PROJECT in $DIR/tests/device/*; do
83 cleanup_project $PROJECT
92 for PROJECT in $DIR/samples/*; do
93 cleanup_project $PROJECT
95 for PROJECT in $DIR/platforms/android-*/samples/*; do
96 cleanup_project $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
25 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
26 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
66 // Get the project.
67 IProject project = getProject(); local
69 // Clear the project of the generic markers
70 removeMarkersFromContainer(project, AdtConstants.MARKER_ADT);
73 // build() returns a list of project from which this project depends for future compilation.
78 // Get the project
79 final IProject project = getProject(); local
    [all...]
PostCompilerBuilder.java 2 * Copyright (C) 2007 The Android Open Source Project
36 import com.android.ide.eclipse.adt.internal.project.ApkInstallManager;
37 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
38 import com.android.ide.eclipse.adt.internal.project.LibraryClasspathContainerInitializer;
39 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
85 /** This ID is used in plugin.xml and in each project's .project file.
138 // Get the project.
139 IProject project = getProject(); local
142 AdtPlugin.log(IStatus.INFO, "%s CLEAN(POST)", project.getName())
172 IProject project = getProject(); local
    [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
  /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...]
  /development/samples/training/InteractiveChart/
project.properties 2 # Copyright 2013 The Android Open Source Project
24 # project structure.
26 # Project target.
  /external/clang/bindings/python/tests/cindex/INPUTS/
compile_commands.json 4 "command": "clang++ -o project.o -c /home/john.doe/MyProject/project.cpp",
5 "file": "/home/john.doe/MyProject/project.cpp"
  /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/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...]
  /frameworks/volley/
build.xml 2 <project name="volley" default="help">
22 Properties related to the SDK location or the project target should
33 This must be done before we load project.properties since
40 <!-- The project.properties file is created and updated by the 'android'
43 This contains project specific properties such as project target, and library
49 <loadproperties srcFile="project.properties" />
53 message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
58 Import per project custom build rules if present at the root of the project
    [all...]

Completed in 7506 milliseconds

<<11121314151617181920>>