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

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidManifestHelper.java 49 * @param manifestFile the {@link IFile} representing the manifest file.
61 IAbstractFile manifestFile,
65 if (manifestFile != null) {
67 if (manifestFile instanceof IFileWrapper) {
68 eclipseFile = ((IFileWrapper)manifestFile).getIFile();
75 return AndroidManifestParser.parse(manifestFile, gatherData, errorHandler);
90 * @param manifestFile the {@link IFile} representing the manifest file.
98 IAbstractFile manifestFile,
102 return parseUnchecked(manifestFile, gatherData, errorListener);
106 manifestFile.getOsLocation()
    [all...]
ExportHelper.java 114 IFileWrapper manifestFile = new IFileWrapper((IFile) manifestResource);
115 boolean debugMode = AndroidManifest.getDebuggable(manifestFile);
ProjectHelper.java 482 IFile manifestFile = getManifest(p);
483 if (manifestFile == null) {
488 ManifestData data = AndroidManifestHelper.parseForData(manifestFile);
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/xml/
AndroidManifest.java 116 * @param manifestFile the manifest to parse.
121 public static String getPackage(IAbstractFile manifestFile)
128 new InputSource(manifestFile.getContents()));
137 * @param manifestFile the manifest to parse.
142 public static boolean getDebuggable(IAbstractFile manifestFile)
151 new InputSource(manifestFile.getContents()));
159 * @param manifestFile the manifest file to read the attribute from.
164 public static int getVersionCode(IAbstractFile manifestFile)
172 new InputSource(manifestFile.getContents()));
183 * @param manifestFile the manifest to chec
    [all...]
AndroidManifestParser.java 101 * @param manifestFile The manifest file being parsed. Can be null.
105 ManifestHandler(IAbstractFile manifestFile, ManifestData manifestData,
581 * @param manifestFile the {@link IAbstractFile} representing the manifest file.
593 IAbstractFile manifestFile,
597 if (manifestFile != null) {
605 ManifestHandler manifestHandler = new ManifestHandler(manifestFile,
607 parser.parse(new InputSource(manifestFile.getContents()), manifestHandler);
619 * This is the equivalent of calling <pre>parse(manifestFile, true, null)</pre>
621 * @param manifestFile the manifest file to parse.
628 public static ManifestData parse(IAbstractFile manifestFile)
    [all...]
  /sdk/anttasks/src/com/android/ant/
XPathTask.java 44 public void setInput(Path manifestFile) {
45 mManifestFile = manifestFile;
  /libcore/support/src/test/java/tests/util/
ClassLoaderBuilder.java 125 String manifestFile = "AndroidManifest.xml";
126 String suffix = "!/" + manifestFile;
128 URL manifest = classLoader.getResource(manifestFile);
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java 48 File manifestFile = null;
63 manifestFile = new File(getArg(args, ++i, "Missing value for manifest"));
81 if (manifestFile != null) {
83 .parse(manifestFile);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PreCompilerDeltaVisitor.java 203 IFile manifestFile = (IFile)resource;
205 if (manifestFile.exists()) {
206 manifestFile.deleteMarkers(AdtConstants.MARKER_XML, true,
208 manifestFile.deleteMarkers(AdtConstants.MARKER_ANDROID, true,
214 new IFileWrapper(manifestFile), true /*gatherData*/, this);
PreCompilerBuilder.java 353 IFile manifestFile = ProjectHelper.getManifest(project);
355 if (manifestFile == null) {
373 new IFileWrapper(manifestFile),
403 manifestFile.getFullPath(),
412 manifestFile.getFullPath(),
420 manifestFile.getFullPath(),
440 removeMarkersFromResource(manifestFile, AdtConstants.MARKER_ADT);
450 BaseProjectHelper.markResource(manifestFile, AdtConstants.MARKER_ADT,
460 BaseProjectHelper.markResource(manifestFile, AdtConstants.MARKER_ADT,
473 BaseProjectHelper.markResource(manifestFile, AdtConstants.MARKER_ADT
    [all...]
PostCompilerBuilder.java 446 IFile manifestFile = project.getFile(SdkConstants.FN_ANDROID_MANIFEST_XML);
447 String appPackage = AndroidManifest.getPackage(new IFileWrapper(manifestFile));
552 IFile manifestFile = project.getFile(SdkConstants.FN_ANDROID_MANIFEST_XML);
554 if (manifestFile == null || manifestFile.exists() == false) {
602 helper.packageResources(manifestFile, libProjects, null /*resfilter*/,
    [all...]
  /pdk/build/
prepare_pdk_tree.py 91 manifestFile = ".repo/manifest.xml"
103 manifestFile = argv[3]
126 subdirs = getPDKDirs(manifestFile, groups)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
CompiledResourcesMonitor.java 293 IFile manifestFile = ProjectHelper.getManifest(project);
294 if (manifestFile != null && manifestFile.isSynchronized(IResource.DEPTH_ZERO)) {
295 ManifestData data = AndroidManifestHelper.parseForData(manifestFile);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestPkgAttrNode.java 251 IFile manifestFile = ProjectHelper.getManifest(project.getProject());
252 if (manifestFile == null) {
257 ManifestData manifestData = AndroidManifestHelper.parseForData(manifestFile);
272 new FileEditorInput(manifestFile),
279 manifestFile.getFullPath());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
SdkSelectionPage.java 284 File manifestFile = new File(f, SdkConstants.FN_ANDROID_MANIFEST_XML);
285 if (manifestFile.isFile()) {
288 AndroidManifestParser.parse(new FileWrapper(manifestFile));
314 manifestFile.getAbsolutePath());
ProjectNamePage.java 563 File manifestFile = new File(osPath);
564 if (!manifestFile.isFile()) {
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/
ProjectCreator.java     [all...]
  /cts/tools/utils/
CollectAllTests.java 85 File manifestFile = new File(args[1]);
105 new FileInputStream(manifestFile));
107 System.err.println("cannot open manifest " + manifestFile);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 643 IAbstractFile manifestFile = AndroidManifest.getManifest(new IFolderWrapper(project));
644 if (manifestFile != null) {
646 Object value = AndroidManifest.getMinSdkVersion(manifestFile);
662 Integer i = AndroidManifest.getTargetSdkVersion(manifestFile);
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
Project.java 541 File manifestFile = new File(mDir, ANDROID_MANIFEST_XML);
542 if (manifestFile.exists()) {
543 return manifestFile;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-weblogic.jar 
  /frameworks/base/tools/aapt/
Resource.cpp     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java     [all...]
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
LintDriver.java 715 File manifestFile = project.getManifestFile();
716 if (manifestFile != null) {
717 XmlContext context = new XmlContext(this, project, main, manifestFile, null);
728 v.visitFile(context, manifestFile);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BuildHelper.java 178 * @param manifestFile the manifest of the project.
189 public void packageResources(IFile manifestFile, List<IProject> libProjects, String resFilter,
221 IPath manifestLocation = manifestFile.getLocation();
    [all...]

Completed in 1617 milliseconds

1 2