HomeSort by relevance Sort by last modified time
    Searched refs:PROJECT (Results 1 - 25 of 25) sorted by null

  /ndk/build/tools/
dev-cleanup.sh 3 # Copyright (C) 2010 The Android Open Source Project
81 for PROJECT in $DIR/tests/build/*; do
82 cleanup_project $PROJECT
84 for PROJECT in $DIR/tests/device/*; do
85 cleanup_project $PROJECT
94 for PROJECT in $DIR/samples/*; do
95 cleanup_project $PROJECT
97 for PROJECT in $DIR/platforms/android-*/samples/*; do
98 cleanup_project $PROJECT
build-gnu-libstdc++.sh 3 # Copyright (C) 2011 The Android Open Source Project
205 PROJECT="gnustl_$LIBTYPE gcc-$GCC_VERSION $ABI $THUMB"
206 echo "$PROJECT: configuring"
222 fail_panic "Could not configure $PROJECT"
224 echo "$PROJECT: compiling"
226 fail_panic "Could not build $PROJECT"
228 echo "$PROJECT: installing"
  /external/harfbuzz/
autogen.sh 11 PROJECT=harfbuzz
34 echo "You must have libtool 1.4 installed to compile $PROJECT."
42 echo "You must have autoconf installed to compile $PROJECT."
66 echo "You must have automake 1.4-p1 installed to compile $PROJECT."
77 echo "You must run this script in the top-level $PROJECT directory"
115 echo "Now type 'make' to compile $PROJECT."
  /external/stlport/test/eh/
bcb.mak 12 # The following section of the project makefile is managed by the BCB IDE.
18 PROJECT = eh_test.exe
58 all : $(PROJECT)
62 $(PROJECT) : $(OBJFILES)
63 $(BCC32) -e$(PROJECT) $(CFLAG1) $(LDFLAGS) $(OBJFILES)
  /ndk/tests/
run-tests.sh 3 # Copyright (C) 2010 The Android Open Source Project
435 # $1: project directory
439 local PROJECT=$1
445 $GNUMAKE --no-print-dir -f $NDK/build/core/build-local.mk -C $PROJECT DUMP_$VAR | tail -1
449 # check if the project is broken and shouldn't be built
450 # $1: project directory
454 local PROJECT="$1"
458 if [ -f "$PROJECT/BROKEN_BUILD" ] ; then
459 if [ ! -s "$PROJECT/BROKEN_BUILD" ] ; then
462 echo "Skipping `basename $PROJECT`: (build)
    [all...]
  /ndk/
ndk-gdb 3 # Copyright (C) 2010 The Android Open Source Project
24 # need to launch ndk-gdb from your application project directory
120 $GNUMAKE --no-print-dir -f $ANDROID_NDK_ROOT/build/core/build-local.mk -C $PROJECT DUMP_$1 | tail -1
128 $GNUMAKE --no-print-dir -f $ANDROID_NDK_ROOT/build/core/build-local.mk -C $PROJECT DUMP_$1 APP_ABI=$2 | tail -1
134 $AWK_CMD -f $AWK_SCRIPTS/$1 $PROJECT/$MANIFEST
162 # ./ndk-gdb --project=/path/to/project
236 --project=*)
302 echo " --project=<path> Specify application project path
    [all...]
ndk-gdb.py 4 Copyright (C) 2010 The Android Open Source Project
26 need to launch ndk-gdb-py from your application project directory
65 PROJECT = None
114 global PROJECT, NDK
149 parser.add_argument( '-p', '--project',
150 help='Specify application project path',
151 dest='project')
240 if args.project != None:
241 PROJECT = args.project
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
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/wizards/newproject/
ImportedProject.java 2 * Copyright (C) 2012 The Android Open Source Project
31 import com.android.sdklib.internal.project.ProjectProperties;
32 import com.android.sdklib.internal.project.ProjectProperties.PropertyType;
51 /** An Android project to be imported */
94 // Compute the project name and the package name from the manifest
122 // Are we importing an Eclipse project? If so just use the existing project name
131 // try to glean the project name from there
136 IStatus nameStatus = workspace.validateName(activityName, IResource.PROJECT);
162 File projectFile = new File(mLocation, ".project"); //$NON-NLS-1
    [all...]
NewProjectWizardState.java 2 * Copyright (C) 2011 The Android Open Source Project
24 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
27 import com.android.sdklib.internal.project.ProjectProperties;
28 import com.android.sdklib.internal.project.ProjectProperties.PropertyType;
44 * to pass project information to the {@link NewProjectCreator}.
47 /** The mode to run the wizard in: creating test, or sample, or plain project */
51 * If true, the project should be created from an existing codebase (pointed
53 * {@link #chosenSample}. Otherwise, create a brand new project from scratch.
58 * Whether new projects should be created into the default project location
70 /** True if the project location name has been manually edited by the user *
    [all...]
ProjectNamePage.java 2 * Copyright (C) 2011 The Android Open Source Project
29 import com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper;
66 * Initial page shown when creating projects which asks for the project name,
67 * the the location of the project, working sets, etc.
87 * resources required by the New Project wizard are present -- we don't
103 setTitle("Create Android Project");
104 setDescription("Select project name and type of project");
123 nameLabel.setText("Project Name:");
132 mCreateNewButton.setText("Create new project in workspace")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 2 * Copyright (C) 2008 The Android Open Source Project
34 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
35 import com.android.ide.eclipse.adt.internal.project.LibraryClasspathContainerInitializer;
36 import com.android.ide.eclipse.adt.internal.project.ProjectHelper;
51 import com.android.sdklib.internal.project.ProjectProperties;
52 import com.android.sdklib.internal.project.ProjectProperties.PropertyType;
53 import com.android.sdklib.internal.project.ProjectPropertiesWorkingCopy;
164 * Sent when project has its target changed.
193 * if {@link #getProject()} and the {@link IAndroidTarget} associated with the project
208 IProject project = 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/
AddSupportJarAction.java 2 * Copyright (C) 2011 The Android Open Source Project
28 import com.android.sdklib.internal.project.ProjectProperties;
29 import com.android.sdklib.internal.project.ProjectProperties.PropertyType;
30 import com.android.sdklib.internal.project.ProjectPropertiesWorkingCopy;
72 * to the selected project.
107 IProject project = null; local
109 project = (IProject) element;
111 project = (IProject) ((IAdaptable) element)
114 if (project != null) {
115 install(project);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
ProjectSetupBuilder.java 2 * Copyright (C) 2013 The Android Open Source Project
22 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
48 * Class to setup the project and its modules.
102 // parent projects so that the full multi-project setup is correct.
104 // in the same multi-project anyway.
211 // add library project dependencies
222 "Project %1$s is missing. Needed by %2$s.\n" +
229 "Project %1$s is missing. Needed by %2$s.\n" +
236 // add java project dependencies
258 // add java project dependencie
417 IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(name); local
    [all...]
  /ndk/build/core/
definitions.mk 1 # Copyright (C) 2009 The Android Open Source Project
85 # to full-path, eg. C:/path/to/project/jni/
417 # native debugging). It is generally under $PROJECT/obj/local/
421 # this module will be stored. Usually $PROJECT/obj/local/<module>/obj
425 # of the module. Usually $PROJECT/libs/<abi>/<prefix><module><suffix>
509 # An installable module is one that will be copied to $PROJECT/libs/<abi>/
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ant.core_3.2.200.v20100427.jar 
org.eclipse.jdt.launching_3.5.100.v20100526.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BuildHelper.java 2 * Copyright (C) 2010 The Android Open Source Project
27 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
140 * @param project
147 public BuildHelper(@NonNull IProject project,
153 mProject = project;
198 * @param manifestFile the manifest of the project.
199 * @param libProjects the list of library projects that this project depends on.
237 // list of res folder (main project + maybe libraries)
691 * @param javaProject The java project
757 // output error message and mark the project
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchConfigurationTab.java 2 * Copyright (C) 2009 The Android Open Source Project
24 import com.android.ide.eclipse.adt.internal.project.BaseProjectHelper;
25 import com.android.ide.eclipse.adt.internal.project.ProjectChooserHelper;
104 // Project UI widgets
604 * Show a dialog that lets the user select a Android project. This in turn provides
606 * constraining the search for main types to the specified project.
609 IJavaProject project = mProjectChooserHelper.chooseJavaProject(getProjectName(), local
610 "Please select a project to launch");
611 if (project == null) {
615 String projectName = project.getElementName()
708 IProject project = getWorkspaceRoot().getProject(projectName); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewProjectPage.java 2 * Copyright (C) 2012 The Android Open Source Project
69 * First wizard page in the "New Project From Template" wizard
136 projectLabel.setText("Project Name:");
144 "The project name is only used by Eclipse, but must be unique within the " +
494 IStatus nameStatus = workspace.validateName(appName, IResource.PROJECT);
510 /** If the project should be created in the workspace, then update the project location
511 * based on the project name. */
    [all...]
  /prebuilts/devtools/tools/lib/
sdklib.jar 
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 

Completed in 2518 milliseconds