/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/ |
project.properties1 | 8 # project structure. 13 # Project target.
|
project.properties2 | 8 # project structure. 13 # Project target.
|
/sdk/sdkstats/ |
README | 7 Because the build path cannot contain relative path that are not inside the project directory, 10 In order to compile the project, make a user library called ANDROID_SWT containing the jar
|
/sdk/testapps/basicProjectWithAidl/ |
default.properties | 8 # project structure. 10 # Project target.
|
/sdk/testapps/customViewTest/libWithCustomView/ |
project.properties | 8 # project structure. 10 # Project target.
|
/sdk/testapps/customViewTest/mainProject/ |
project.properties | 8 # project structure. 10 # Project target.
|
/sdk/testapps/jarCheckTests1/lib1/ |
project.properties | 8 # project structure. 10 # Project target.
|
/sdk/testapps/jarCheckTests1/lib2/ |
project.properties | 8 # project structure. 10 # Project target.
|
/sdk/testapps/jarCheckTests2/lib1/ |
project.properties | 8 # project structure. 10 # Project target.
|
/sdk/testapps/jarCheckTests2/lib2/ |
project.properties | 8 # project structure. 10 # Project target.
|
/sdk/testapps/jarCheckTests3/lib1/ |
project.properties | 8 # project structure. 10 # Project target.
|
/sdk/testapps/jarCheckTests3/lib2/ |
project.properties | 8 # project structure. 10 # Project target.
|
/sdk/traceview/ |
README | 7 Because the build path cannot contain relative path that are not inside the project directory, 10 In order to compile the project, make a user library called ANDROID_SWT containing the jar
|
/external/openfst/src/script/ |
project.cc | 19 #include <fst/script/project.h> 24 void Project(MutableFstClass *ofst, ProjectType project_type) { 27 Apply<Operation<ProjectArgs> >("Project", ofst->ArcType(), &args); 30 REGISTER_FST_OPERATION(Project, StdArc, ProjectArgs); 31 REGISTER_FST_OPERATION(Project, LogArc, ProjectArgs); 32 REGISTER_FST_OPERATION(Project, Log64Arc, ProjectArgs);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringWizard.java | 2 * Copyright (C) 2009 The Android Open Source Project 36 * @param project The project where the wizard was invoked from (e.g. where the user selection 37 * happened, so that we can retrieve project resources.) 39 public ExtractStringWizard(ExtractStringRefactoring ref, IProject project) { 41 mProject = project;
|
/sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/ |
JavaContext.java | 2 * Copyright (C) 2011 The Android Open Source Project 42 * the given scope, in the given project reporting errors to the given 46 * @param project the project to run lint on which contains the given file 47 * @param main the main project if this project is a library project, or 48 * null if this is not a library project. The main project is 49 * the root project of all library projects, not necessarily th [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
DebuggerConnector.java | 2 * Copyright (C) 2010 The Android Open Source Project 20 import com.android.ide.eclipse.adt.internal.project.ProjectHelper; 47 // search for an android project matching the process name 48 IProject project = ProjectHelper.findAndroidProjectByAppName(appName); local 49 if (project != null) { 50 AndroidLaunchController.debugRunningApp(project, appPort); 64 * A cache of Android application name to workspace project name mappings. 67 * (project open/close/delete etc), and keeps its internal mappings up-to-date.<br> 73 * number of user initiated project changes (project open/close/delete/rename) are bot [all...] |
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/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 18 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper; 19 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/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.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
LaunchConfigDelegate.java | 2 * Copyright (C) 2007 The Android Open Source Project 23 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper; 24 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/build/builders/ |
ResourceManagerBuilder.java | 2 * Copyright (C) 2007 The Android Open Source Project 24 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper; 25 import com.android.ide.eclipse.adt.internal.project.ProjectHelper; 68 // Get the project. 69 IProject project = getProject(); local 71 // Clear the project of the generic markers 72 removeMarkersFromContainer(project, AdtConstants.MARKER_ADT); 75 // build() returns a list of project from which this project depends for future compilation. 80 // Get the project 81 final IProject project = getProject(); local [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 21 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper; 22 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper; 23 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper; 24 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper.NonLibraryProjectOnlyFilter; 25 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...] |