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

  /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.
57 IAbstractFile manifestFile,
61 if (manifestFile != null) {
63 if (manifestFile instanceof IFileWrapper) {
64 eclipseFile = ((IFileWrapper)manifestFile).getIFile();
71 return AndroidManifestParser.parse(manifestFile, gatherData, errorHandler);
76 manifestFile.getOsLocation(),
81 manifestFile.getOsLocation(),
88 manifestFile.getOsLocation(),
94 manifestFile.getOsLocation()
    [all...]
ProjectHelper.java 415 IFile manifestFile = getManifest(p);
416 if (manifestFile == null) {
421 ManifestData data = AndroidManifestHelper.parseForData(manifestFile);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/xml/
AndroidManifest.java 90 * @param manifestFile the manifest to parse.
95 public static String getPackage(IAbstractFile manifestFile)
102 new InputSource(manifestFile.getContents()));
107 * @param manifestFile the manifest file to read the attribute from.
112 public static int getVersionCode(IAbstractFile manifestFile)
120 new InputSource(manifestFile.getContents()));
131 * @param manifestFile the manifest to check
136 public static boolean hasVersionCode(IAbstractFile manifestFile)
144 new InputSource(manifestFile.getContents()),
160 * @param manifestFile the manifest file to read the attribute from
    [all...]
AndroidManifestParser.java 101 * @param manifestFile The manifest file being parsed. Can be null.
107 ManifestHandler(IAbstractFile manifestFile, ManifestData manifestData,
583 * @param manifestFile the {@link IAbstractFile} representing the manifest file.
594 IAbstractFile manifestFile,
598 if (manifestFile != null) {
606 ManifestHandler manifestHandler = new ManifestHandler(manifestFile,
608 parser.parse(new InputSource(manifestFile.getContents()), manifestHandler);
620 * This is the equivalent of calling <pre>parse(manifestFile, true, null)</pre>
622 * @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;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
CompiledResourcesMonitor.java 226 IFile manifestFile = ProjectHelper.getManifest(project);
227 if (manifestFile != null && manifestFile.isSynchronized(IResource.DEPTH_ZERO)) {
228 ManifestData data = AndroidManifestHelper.parseForData(manifestFile);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
PreCompilerDeltaVisitor.java 222 IFile manifestFile = (IFile)resource;
224 if (manifestFile.exists()) {
225 manifestFile.deleteMarkers(AndroidConstants.MARKER_XML, true,
227 manifestFile.deleteMarkers(AndroidConstants.MARKER_ANDROID, true,
233 new IFileWrapper(manifestFile), true /*gatherData*/, this);
PreCompilerBuilder.java 325 IFile manifestFile = ProjectHelper.getManifest(project);
327 if (manifestFile == null) {
344 ManifestData parser = AndroidManifestHelper.parse(new IFileWrapper(manifestFile),
376 removeMarkersFromFile(manifestFile, AndroidConstants.MARKER_ADT);
386 BaseProjectHelper.markResource(manifestFile, AndroidConstants.MARKER_ADT,
396 BaseProjectHelper.markResource(manifestFile, AndroidConstants.MARKER_ADT,
405 BaseProjectHelper.markResource(manifestFile, AndroidConstants.MARKER_ADT,
418 BaseProjectHelper.markResource(manifestFile, AndroidConstants.MARKER_ADT,
427 BaseProjectHelper.markResource(manifestFile, AndroidConstants.MARKER_ADT,
440 BaseProjectHelper.markResource(manifestFile, AndroidConstants.MARKER_ADT, msg
    [all...]
PostCompilerBuilder.java 397 IFile manifestFile = project.getFile(SdkConstants.FN_ANDROID_MANIFEST_XML);
399 if (manifestFile == null || manifestFile.exists() == false) {
432 if (helper.packageResources( manifestFile, libProjects, null /*resfilter*/,
472 new InputSource(manifestFile.getContents()));
PostCompilerHelper.java 90 * @param manifestFile the manifest of the project.
100 public boolean packageResources(IFile manifestFile, IProject[] libProjects, String resFilter,
116 IPath manifestLocation = manifestFile.getLocation();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestPkgAttrNode.java 243 IFile manifestFile = ProjectHelper.getManifest(project.getProject());
244 if (manifestFile == null) {
249 ManifestData manifestData = AndroidManifestHelper.parseForData(manifestFile);
264 new FileEditorInput(manifestFile),
271 manifestFile.getFullPath());
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/
ProjectCreator.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
MultiApkExportAction.java 269 IFile manifestFile = project.getFile(SdkConstants.FN_ANDROID_MANIFEST_XML);
275 if (helper.packageResources(manifestFile, libProjects,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java     [all...]
  /frameworks/base/tools/aapt/
Resource.cpp     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreationPage.java     [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 513 milliseconds